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!