Calculations
|
1st Order Differential Equation Solution
Solution of first-order differential equations in the form of $\displaystyle {\frac{dy}{dx}}=f(x,y)$ or $\displaystyle {y'}=f(x,y)$ is made.
Use the $x$ and $y$ variables. You can use the +, -, *, / math operators and the following functions. Use the pow function to take the exponent. For example, type pow (x, 2) for $x^2$.
|
|
Functions to be used in the equation: $\begin{array}{rllr} \textbf{pow(x,a)} & : & x^a \\\textbf{sin(x)} & : & sin\, x &\textbf{cos(x)} & : & cos\,x \\\textbf{tan(x)} & : & tan\,x &\textbf{log(x)} & : & ln\,x \\\textbf{exp(x)} & : & e^x &\textbf{abs(x)} & : & \left|x\right| \\\textbf{asin(x)} & : & arcsin\,x &\textbf{acos(x)} & : & arccos\,x \\\textbf{atan(x)} & : & arctan\,x &\textbf{sqrt(x)} & : & \sqrt{x} \\\textbf{pi} & : & \pi &\textbf{esay} & : & e \textrm{ number} \\\textbf{LN2} & : & ln\,2 & \textbf{LN10} & : & ln\,10 \\\textbf{Log2e} & : & log_{2}\,e & \textbf{Log10e} & : & log_{10}\,e \end{array}$
|
|