+0  
 
0
677
4
avatar

x3+2x=90 has a solution between 4 and 5 give your correct answer to 1decimal place

 Apr 11, 2016

Best Answer 

 #2
avatar
+5

x^3+2x=90

x=~4.3327

 Apr 11, 2016
 #1
avatar+2752 
0

Is that x to the power of three?

 Apr 11, 2016
 #2
avatar
+5
Best Answer

x^3+2x=90

x=~4.3327

Guest Apr 11, 2016
 #3
avatar
0

its 15

 Apr 11, 2016
 #4
avatar
+5

What method have you been taught ?

Bisection, False Position, Fixed Point Iteration, Newton-Raphson ?

 

Here's a fast converging fixed point iteration, (though it's really Newton-Raphson).

 

x^3 + 2x = 90,

add 2x^3 to both sides,

3x^3 + 2x = 2x^3 + 90,

remove x as a factor on the lhs,

x(3x^2 + 2) = 2x^3 + 90,

divide,

x = (2x^3 + 90)/(3x^2 + 2).

 

Now, choose a starting value for x, substitute that into the rhs to calculate an updated value for x,

substitute that back into the rhs to update further, repeat as many times as you wish.

 

With a starting value of 4.5, the sequence is

4.5,

4.33865.

4.332706,

4.332698 etc.

 

(So it's 4.3 to 1dp.).

 Apr 12, 2016

0 Online Users