Equation Solving
Equations
solve a linear equation
4x+3=19
solve a polynomial equation
solve x^2 + 4x + 6 = 0
solve over a spcified domain
solve x^3 - 4x^2 + 6x - 24 = 0 over the reals
solve an equation with parameters
solve a x^2 + b x + c = 0 for x
solve a trigonometric equation
sin x + cos x = 1
Systems of Equations
solve a system of linear equations
x+y=10, x-y=4
solve a system of polynomial equations
x^2+y^2=1, (x-2)^2+(y-1)^2=4
find roots of an equation using Newton's method
using Newton's method solve x cos x = 0
find roots of an equation using the secant method
using secant method solve x^3-2 at x1=-3 and x2=3
compute the nth root of a number using the bisection method
