Ask Your Question
1

Solve log equations problem

asked 2012-03-09 12:36:53 +0200

Ticksy gravatar image

Input

var('x')
solve((log((x**2 - x), 6) - log((6*x - 10), 6) == 0), x)

Output

[log(x^2 - x) == log(6*x - 10)]

But real roots are 5 and 2. What I doing wrong?

edit retag flag offensive close merge delete

2 Answers

Sort by ยป oldest newest most voted
1

answered 2012-03-09 13:42:48 +0200

achrzesz gravatar image

updated 2012-03-09 14:18:45 +0200

kcrisman gravatar image

I have no problems with 5:

sage: solve((log((x**2 - x), 6) - log((6*x - 10), 6) == 0), x,to_poly_solve=True)             

[x == 2, x == 5]
edit flag offensive delete link more
1

answered 2012-03-09 12:45:31 +0200

achrzesz gravatar image

solve((log((x*2 - x), 6) - log((6x - 10), 6) == 0), x,to_poly_solve=True)

edit flag offensive delete link more

Comments

Thank you. It works. But what with root 5? He seemed to be a solution of the original equation ...

Ticksy gravatar imageTicksy ( 2012-03-09 13:21:37 +0200 )edit

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 2012-03-09 12:36:53 +0200

Seen: 983 times

Last updated: Mar 09 '12