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

1 visualización (últimos 30 días)
amran Hossain
amran Hossain el 31 de Jul. de 2015
Respondida: Star Strider el 31 de Jul. de 2015
Exponential Equations: logb^300=30, find b)

Respuestas (2)

Azzi Abdelmalek
Azzi Abdelmalek el 31 de Jul. de 2015
syms b
sol=solve(log(b^300)==30)

Star Strider
Star Strider el 31 de Jul. de 2015
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

Categorías

Más información sobre Surface and Mesh Plots en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by