Solution - Approximation
Step by Step Solution
Reformatting the input :
Changes made to your input should not affect the solution:
(1): "x3" was replaced by "x^3". 1 more similar replacement(s).
Rearrange:
Rearrange the equation by subtracting what is to the right of the equal sign from both sides of the equation :
-2*1-x^2+2*x^3-(1)=0
Step by step solution :
Step 1 :
Equation at the end of step 1 :
((-2 - (x2)) + 2x3) - 1 = 0
Step 2 :
Polynomial Roots Calculator :
2.1 Find roots (zeroes) of : F(x) = 2x3-x2-3
Polynomial Roots Calculator is a set of methods aimed at finding values of x for which F(x)=0
Rational Roots Test is one of the above mentioned tools. It would only find Rational Roots that is numbers x which can be expressed as the quotient of two integers
The Rational Root Theorem states that if a polynomial zeroes for a rational number P/Q then P is a factor of the Trailing Constant and Q is a factor of the Leading Coefficient
In this case, the Leading Coefficient is 2 and the Trailing Constant is -3.
The factor(s) are:
of the Leading Coefficient : 1,2
of the Trailing Constant : 1 ,3
Let us test ....
P | Q | P/Q | F(P/Q) | Divisor | |||||
---|---|---|---|---|---|---|---|---|---|
-1 | 1 | -1.00 | -6.00 | ||||||
-1 | 2 | -0.50 | -3.50 | ||||||
-3 | 1 | -3.00 | -66.00 | ||||||
-3 | 2 | -1.50 | -12.00 | ||||||
1 | 1 | 1.00 | -2.00 | ||||||
1 | 2 | 0.50 | -3.00 | ||||||
3 | 1 | 3.00 | 42.00 | ||||||
3 | 2 | 1.50 | 1.50 |
Polynomial Roots Calculator found no rational roots
Equation at the end of step 2 :
2x3 - x2 - 3 = 0
Step 3 :
Cubic Equations :
3.1 Solve 2x3-x2-3 = 0
Future releases of Tiger-Algebra will solve equations of the third degree directly.
Meanwhile we will use the Bisection method to approximate one real solution.
Approximating a root using the Bisection Method :
We now use the Bisection Method to approximate one of the solutions. The Bisection Method is an iterative procedure to approximate a root (Root is another name for a solution of an equation).
The function is F(x) = 2x3 - x2 - 3
At x= 1.00 F(x) is equal to -2.00
At x= 2.00 F(x) is equal to 9.00
Intuitively we feel, and justly so, that since F(x) is negative on one side of the interval, and positive on the other side then, somewhere inside this interval, F(x) is zero
Procedure :
(1) Find a point "Left" where F(Left) < 0
(2) Find a point 'Right' where F(Right) > 0
(3) Compute 'Middle' the middle point of the interval [Left,Right]
(4) Calculate Value = F(Middle)
(5) If Value is close enough to zero goto Step (7)
Else :
If Value < 0 then : Left <- Middle
If Value > 0 then : Right <- Middle
(6) Loop back to Step (3)
(7) Done!! The approximation found is Middle
Follow Middle movements to understand how it works :
Left Value(Left) Right Value(Right) 1.000000000 -2.000000000 2.000000000 9.000000000 0.000000000 -3.000000000 2.000000000 9.000000000 1.000000000 -2.000000000 2.000000000 9.000000000 1.000000000 -2.000000000 1.500000000 1.500000000 1.250000000 -0.656250000 1.500000000 1.500000000 1.250000000 -0.656250000 1.375000000 0.308593750 1.312500000 -0.200683594 1.375000000 0.308593750 1.312500000 -0.200683594 1.343750000 0.047058105 1.328125000 -0.078514099 1.343750000 0.047058105 1.335937500 -0.016156197 1.343750000 0.047058105 1.335937500 -0.016156197 1.339843750 0.015343547 1.337890625 -0.000433132 1.339843750 0.015343547 1.337890625 -0.000433132 1.338867188 0.007448500 1.337890625 -0.000433132 1.338378906 0.003506008 1.337890625 -0.000433132 1.338134766 0.001536019 1.337890625 -0.000433132 1.338012695 0.000551339 1.337890625 -0.000433132 1.337951660 0.000059077 1.337921143 -0.000187034 1.337951660 0.000059077 1.337936401 -0.000063980 1.337951660 0.000059077 1.337944031 -0.000002452 1.337951660 0.000059077 1.337944031 -0.000002452 1.337947845 0.000028313 1.337944031 -0.000002452 1.337945938 0.000012930 1.337944031 -0.000002452 1.337944984 0.000005239
Next Middle will get us close enough to zero:
F( 1.337944269 ) is -0.000000529
The desired approximation of the solution is:
x ≓ 1.337944269
Note, ≓ is the approximation symbol
One solution was found :
x ≓ 1.337944269How did we do?
Please leave us feedback.