How do I find x for this equation? I think I should get e^(something).

Thanks in advance!

3x^2+4lnx+4=0

2 answers

There's no algebraic way to do it. A numeric method or a graphical analysis will be required. See

http://www.wolframalpha.com/input/?i=solve+3x^2%2B4lnx%2B4%3D0
For a complicated equation such as yours, the most powerful method is probably Newton's Method.

let y = 3x^2+4lnx+4
dy/dx = 6x + 4/x

newx = x - y/(dy/dx)

= x - (3x^2+4lnx+4)/(6x + 4/x)
which simplifies to

newx = (3x^2 - 4lnx)/(6x + 4/x)

now use an iteration process, I started with x = 1

x | newx
1 -- .3
.3 -- .336072..
.336072 -- .337716
.337716 -- .337719143
.337719143 -- .337719143
since the last x used returned the same value of x, we cannot improve on that answer.

Amazing that after only 4 interations, I got
x =.337719143 correct to 9 decimal places
Similar Questions
  1. N 5 22x2 1 76x 1 430Use the equation to find N for each year in the table. (b) Discuss how well this equation approximates the
    1. answers icon 1 answer
    1. answers icon 1 answer
  2. 1. Find the equation of the asymptotic of the hyperbolex^2/9 - y^2/ 4 = 1. 2. Given the equation of a function 2x^2 + 5y^2 - 16x
    1. answers icon 1 answer
    1. answers icon 1 answer
more similar questions