(Casio Micropython/Numworks Python): Calculus
|
05-25-2020, 02:08 AM
Post: #1
|
|||
|
|||
(Casio Micropython/Numworks Python): Calculus
The following scripts creates the user functions for calculus:
f(x): define your function in terms of x here. This needs to be loaded into the script before running it. Each of the functions that follow will use f(x). You can call f(x) to evaluate the function at any value. deriv(x): The approximate derivative at point x. The Five Stencil approximation is used. sigma(a,b): Calculate the sum (Σ f(x)) from x = a to x = b. integral(a,b,n): Calculates the definite integral ( ∫ f(x) dx) from x = a to x = b. The Simpson's rule is used with n divisions (n needs to be even) solve(x0): Uses Newton's Rule to find roots for f(x). Example f(x) = -2x*^2 + 3x + 5 In Python: -2*x**2+3*x+5 f(0): 5 f(10): -165 f(-10): -225 deriv(10): -37.00004450971999 Σ f(x): x = 1 to 25: sigma(1,25): -8780 ∫ f(x) dx: x = -3 to 1, n = 20: integral(-3,1,20): -10.666666666667 Solve f(x)=0, initial condition x0 = 2.5: solve(5): 2.5 Python Script: calculus.py from math import * Code: # 2020-04-15 EWS |
|||
« Next Oldest | Next Newest »
|
User(s) browsing this thread: 1 Guest(s)