#get the roots of a function with substitution

14 messages · Page 1 of 1 (latest)

silent kite
#

we have f(x)=-0.25 x^(4)+2.25 x^(2)+x-3
and i need to get the root of it
and i want to do it with substitution

i did x^2 = z

and then substituted it which meant -0.25z^2+2.25z then we had x-3 and i didnt really know how to do it there but my idea would be that x= squareroot(x^2) so for x we would substitute with squaroot(z) myb? im really confused on how to do it here

manic copperBOT
unique owl
silent kite
unique owl
silent kite
unique owl
#

I don't see why you are so focused on substitution, which I think is unnecessary in this case. You just factor the polynomial as the linear factors are visible at once.

silent kite
#

like its guaranteed that it will come

slim imp
#

Substitution of z = x^2 is a good idea if all the powers of x are even... it is more of a problem when we have the odd power x^1.

#

You have $f(x) = -\frac{1}{4}x^4 + \frac{9}{4}x^2 + x - 3 = 0$

$-\frac{x^2}{4}\left(x^2 - 9\right) + x - 3 = 0$

$-\frac{x^2}{4}(x + 3)(x - 3) + x - 3 = 0$

$-x^2(x + 3)(x - 3) + 4(x - 3) = 0$

$(x - 3)\left(4 - x^2(x+3)\right] = 0$

$(x - 3)\left(4 - 3x^2 - x^3\right) = 0$

$(x - 3)\left(4 - 4x^2 + x^2 - x^3\right) = 0$

$(x - 3)\left[4\left(1 - x^2\right) + x^2\left(1 - x\right)\right] = 0$

$(x - 3)\left[4(1 - x)(1 + x) + x^2(1 - x)\right] = 0$

$(x - 3)(1 - x)\left[4(1 + x) + x^2\right] = 0$

$(x - 3)(1 - x)\left(4 + 4x + x^2\right) = 0$

$(x - 3)(1 - x)(x + 2)^2 = 0$

fathom flameBOT
silent kite
#

.solved