how to solve logarithm equation
이전 댓글 표시
i want to solve an logarithm equation and find the value of x
log10(x^4)-log10(x^3) == log10(5*x) -log10(2*x)
댓글 수: 4
I believe that reduces to
and therefore there's no real solution to it
log10(4/3) == log10(5/2)
MANANJAYA NAYAK
2022년 10월 11일
Ghazwan
2022년 10월 11일
syms a b c x
eqn = a*x^2 + b*x + c == 0
S = solve(eqn)
David Hill
2022년 10월 11일
Use fzero to solve a non-linear equation numerically. fzero
채택된 답변
추가 답변 (2개)
if you plot, it never crosses zero.
f=@(x)log10(4*x)-log10(3*x) -log10(5*x) +log10(2*x)
fzero(f,1)
log10(4*x)-log10(3*x) = log10((4*x)/(3*x)) = log10(4/3)
log10(5*x)-log10(2*x) = log10((5*x)/(2*x)) = log10(5/2)
So you try to "solve"
log10(4/3) = log10(5/2)
You can imagine that this makes no sense.
카테고리
도움말 센터 및 File Exchange에서 Programming에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
