log and Exponential Equations: logb^300=30, find b)

조회 수: 1 (최근 30일)
amran Hossain
amran Hossain 2015년 7월 31일
답변: Star Strider 2015년 7월 31일
Exponential Equations: logb^300=30, find b)

답변 (2개)

Azzi Abdelmalek
Azzi Abdelmalek 2015년 7월 31일
syms b
sol=solve(log(b^300)==30)

Star Strider
Star Strider 2015년 7월 31일
This is fairly straightforward.
log(b^300) = 300*log(b)
log(b) = 30/300
exp(log(b)) = b = exp(0.1)
Use MATLAB to get the numbers:
b = exp(30/300);
check = 300*log(b)
b =
1.1052
check =
30.0000e+000

카테고리

Help CenterFile Exchange에서 Surface and Mesh Plots에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by