Solving 3log(x)=6-2x: A Beginner's Guide

  • Context: High School 
  • Thread starter Thread starter crazylum
  • Start date Start date
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
5 replies · 3K views
crazylum
Messages
8
Reaction score
0
Where does one begin to solve the equation 3log(x)=6-2x?
 
Mathematics news on Phys.org
The solution to that equation is not expressible in terms of elementary functions.
 
you could use a numerical approach like Newton's method to find a solution. if I am not mistaken you can say that x>0 since ln(x) is undefined otherwise and then rewrite your equation as [itex]x^{3}e^{2x}-e^{6}=0[/itex]
 
an approximate solution is possible through pt of intersection of the 2 graphs...but i don't think there's any way to find an exact solution save hit n trial
 
MATLAB's solver gave:

[tex]\frac{\mathrm{e}^{2}}{\mathrm{e}^{\omega\!\left(\ln\!\left(\frac{2}{3}\right) + 2\right)}}[/tex]

Where [tex]\omega[/tex] is given by: http://en.wikipedia.org/wiki/Wright_Omega_function.

Good call by whoever said it needed the Lambert W-function ^_^

But for practical purposes, just use bisection+Newton.