Many real-world applications require the solution of IVPs and BVPs for nonlinear ODEs. For example, consider the logistic equation, which occurs in population dynamics. This ...
Introduction to Differential Equation Solving with DSolve Classification of Differential Equations Ordinary Differential Equations (ODEs)
The differential equations that arise in modern applications often have discontinuous coefficients. DSolve can handle a wide variety of such ODEs with piecewise coefficients. ...
A plot of the solution given by DSolve can give useful information about the nature of the solution, for instance, whether it is oscillatory in nature. It can also serve as a ...
The solution given by DSolve can be verified using various methods. The easiest method involves substituting the solution back into the equation. If the result is True, the ...
A common operation in analyzing various kinds of data is to find the discrete Fourier transform (or spectrum) of a list of values. The idea is typically to pick out ...
Functions that are specified by simple algebraic formulas tend to be such that when their input is changed only slightly, their output also changes only slightly. But ...
One-dimensional Laplace transforms. The Laplace transform of a function f(t) is given by ∫_0^∞f(t)e^-stt. The inverse Laplace transform of F(s) is given for suitable γ by ( ...
Minimization and maximization. Minimize and Maximize yield lists giving the value attained at the minimum or maximum, together with rules specifying where the minimum or ...
Supporting a large number of numerical integration methods for differential equations is a lot of work. In order to cut down on maintenance and duplication of code, common ...