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!