how to solve logarithm equation
6 次查看(过去 30 天)
显示 更早的评论
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 个评论
采纳的回答
David Hill
2022-10-11
f=@(x)log10(x.^4)-log10(x.^3)-log10(5*x) +log10(2*x);
fzero(f,2)
x=.1:.1:10;
plot(x,f(x));
0 个评论
更多回答(2 个)
David Hill
2022-10-11
if you plot, it never crosses zero.
f=@(x)log10(4*x)-log10(3*x) -log10(5*x) +log10(2*x)
fzero(f,1)
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Calculus 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!