Author: Ing. Robert Polak, https://robopol.sk
Calculator mainly uses the sympy and numpy libraries. web: https://docs.sympy.org/latest/index.html
If you want to obtain the result in decimal form, it is necessary to input numbers in decimal format.
Examples:
log(52.0)/log(10.0)
simplify((2*x+3*x**2)*(5*x-10))
expand((2*x+3*x**2)*(5*x-10))
pi.evalf(100)
binomial(n, k)
gamma(z)
limit(sin(x)/x, x, 0)
diff(x**3 + 2*x + 4, x)
Matrix([[1, 2], [3, 4]])+Matrix([[5, 4], [9, 11]])
integrate(x**2 + sin(x), x)
integrate(x**2 + sin(x), (x,0,10))
exp(x - 6).series(x, x0=6)
solve(x**2 - 4+x + 10, x)
dsolve(f(x).diff(x)*(1 - sin(f(x))) - 1, f(x))
Equations must be in the form f(x) = 0
.
The calculator uses various functions; it is necessary to check the documentation of the SymPy library.
This calculator leverages the power of Python to perform advanced mathematical computations, including working with large numbers, making it ideal for complex mathematical tasks.