Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision | |||
playground:playground [2021/10/01 09:08] jojo1973 removed |
playground:playground [2021/10/11 13:50] (current) jojo1973 created |
||
---|---|---|---|
Line 1: | Line 1: | ||
- | ===== Numerical integration ===== | + | Have fun! |
- | + | ||
- | Numeric integration of symbolic expressions is performed in **newRPL** via the '' | + | |
- | + | ||
- | '' | + | |
- | + | ||
- | * the mono-variate function to integrate, either in __symbolic__ or __program__ form; | + | |
- | * the lower integration limit; | + | |
- | * the upper integration limit; | + | |
- | * the error tolerance. | + | |
- | + | ||
- | If the **function** to integrate is expressed in symbolic form it must respect a precise syntax: | + | |
- | + | ||
- | * it must be written as an equation; | + | |
- | * the left side must be in the form ''// | + | |
- | * the right side is a function, expressed in terms of ''// | + | |
- | + | ||
- | For example valid expressions are: | + | |
- | + | ||
- | < | + | |
- | ' | + | |
- | ' | + | |
- | ' | + | |
- | </ | + | |
- | + | ||
- | As shown above, the functions may refer to global or local variables; the function' | + | |
- | + | ||
- | Alternatively, | + | |
- | < | + | |
- | « DUP LN * » | + | |
- | « DUP SQ SWAP COS 2 * - » | + | |
- | « ' | + | |
- | </ | + | |
- | + | ||
- | The **integration limits** can be either real or complex __finite__ numbers; symbolic constants are accepted and silently converted to numerical values. | + | |
- | + | ||
- | The **error tolerance** is a real number used to specify the required precision of the calculation: | + | |
- | + | ||
- | ---- | + | |
- | + | ||
- | ==== Angles and trigonometric expressions ==== | + | |
- | + | ||
- | When a real number is input to a trigonometric function **newRPL** assumes that it is an angle expressed in the current angular mode; however the trigonometric functions are meant to process quantities expressed in radians. In other words the following transformations are implicitly applied: | + | |
- | + | ||
- | * in '' | + | |
- | * in '' | + | |
- | * in '' | + | |
- | + | ||
- | where $θ_{r}\,$, $θ_{°}$ and $θ_{g}$ are the quantities entered by the user and $θ$ is what is actually fed to the trigonometric functions. | + | |
- | + | ||
- | From this, two important consequences derive: | + | |
- | + | ||
- | - the antiderivative changes according to the angular mode. Let's consider e.g. the function $ f(θ)=\sin{θ} $ and apply the transformations above:\\ \\ | + | |
- | * in '' | + | |
- | * in '' | + | |
- | * in '' | + | |
- | - no inverse transformation is applied to the resulting output: this is mathematically correct, but can be disconcerting if one is not immediately aware of the implicit variable substitution. | + | |
- | \\ | + | |
- | In conclusion, unless the user knows exactly what he/she is doing it's advisable **to perform numeric integration of trigonometric expressions in '' | + | |
- | + | ||
- | ---- | + | |
- | + | ||
- | ==== Example 1: Bound function on closed interval ==== | + | |
- | + | ||
- | | pic | $$ \int^{2}_{0} x^{10}e^{\left(4x^{3}-3x^{4}\right)} \,dx $$ | **Input: | + | |
- | ' | + | |
- | 0 | + | |
- | 2 | + | |
- | tol | + | |
- | NUMINT</ | + | |
- | | ::: | tol=10< | + | |
- | | ::: | tol=10< | + | |
- | | ::: | tol=10< | + | |
- | | ::: | Exact at the precision shown | **[[https:// | + | |
- | + | ||
- | ---- | + | |
- | + | ||
- | ==== Example 2: XXX ==== | + | |
- | + | ||
- | ---- | + | |
- | + | ||
- | ==== Example 3: XXX ==== | + | |
- | + | ||
- | ---- | + | |
- | + | ||
- | ==== Example 4: XXX ==== | + |