| Author |
Comment/Response |
Andrew DuBuisson
|
10/21/04 5:14pm
Two problems that I see regarding the lack of solution.
First, I dont think that the equation
2*Log[a,x]-Log[a,(x-1)]==Log[a,(x-2)]
has a solution.
Second, your kinda right about the solve function being inable. Solve works best for polynomial and algebraic equations. It can work with logs and exponents if they can be solved in an algebraic fashion.
For instance
Solve[1 Log[a,x]-Log[a,(x-1)]==Log[a,(x-2)]
Returns the answer
x -> 2+(2)^(1/2)
While
Solve[1. Log[a,x]-Log[a,(x-1)]==Log[a,(x-2)]
Returns a message
"The equations appear to involve the variables to be solved for in an essentially non-algebraic way."
Regarding the second part. Mathematica likes to put things into their basic elements. Input Log[a,x] and it will return Log[x]/Log[a]. Where Log is the natural log of course.
Good luck,
Andrew
URL: , |
|