Subscribe | Login
-> Examples
Solving a simple differential equation.
Solve \[ y' = \frac{1}{1+x^2}, \quad y(0) = 1 \]
Integrate both sides
\[ \begin{align} y &= \int \frac{1}{1+x^2} dx \\ &= \tan^{-1} x + c \end{align} \ \]
Use the initial condition to find the value of c.
\[ \begin{align} 1 &= \tan^{-1}(0) + c \\ 1 &= c \\ \end{align} \ \] so c = 1 and \[ \begin{align} y &= \tan^{-1}x + 1 \end{align} \ \]
You will gain most benefit if you work through each problem first and then come back and check your work against the solution.
y
Now You Try:
Solve \[ y' = e^x + x, \quad y(0) = 10 \]