hey guys, does anyone know how to solve this: to isolate n
cos^n(0.18)=sqrt(2)
thanks

6 个评论

Hint: Take log on both sides.
I know the simplified solution, is there anyway to do log of base cos(x) in matlab?
What is the "simplified solution" ?
You can take logs to any basis on both sides and get the correct solution:
n * log10(cos(0.18)) = log10(sqrt(2))
n * log(cos(0.18)) = log(sqrt(2))
n * log2(cos(0.18)) = log2(sqrt(2))
and so on.
n=real((1/2*log10(2))/(log10(cos(n))));
This is the answer by simplifying the equation
Can't you solve these equations for n ?
n * log10(cos(0.18)) = log10(sqrt(2))
n * log(cos(0.18)) = log(sqrt(2))
n * log2(cos(0.18)) = log2(sqrt(2))

请先登录,再进行评论。

 采纳的回答

syms n
eqn = cos(0.8)^n == sqrt(2) ;
s = solve(eqn,n)
s = 
vpa(s)
ans = 

更多回答(0 个)

类别

帮助中心File Exchange 中查找有关 Symbolic Math Toolbox 的更多信息

产品

版本

R2021b

标签

Community Treasure Hunt

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

Start Hunting!

Translated by