ans = 
Proving one function is greater than other?
古いコメントを表示
I want to see where is this inequality true

where x in (e^e,∞).
6 件のコメント
Torsten
2024 年 6 月 9 日
Prove that
f(x) = 53.989/21.233 * (log(log(x)))^(4/3)/(log(x))^(1/3)
is monotonically increasing (i.e. by showing that its derivative is > 0) and f(e^e) > 1.
Sam Chak
2024 年 6 月 9 日
You want to prove it rigorously by using the Symbolic Math Toolbox, or by graphical approach?
Fatima Majeed
2024 年 6 月 9 日
編集済み: Fatima Majeed
2024 年 6 月 9 日
Fatima Majeed
2024 年 6 月 9 日
Matt J
2024 年 6 月 9 日
The notation is ambiguous. We must know whether
is to be interpreted as
or as
.
Fatima Majeed
2024 年 6 月 9 日
採用された回答
その他の回答 (1 件)
syms x y
f = 53.989/21.233 * (log(log(x))).^(4/3)./(log(x)).^(1/3);
%x is solution where f starts getting greater than 1
xstart = vpasolve(f==1,x,5)
log(log(xstart))/(21.233*log(xstart))
1/(53.989*log(xstart)^(2/3)*log(log(xstart))^(1/3))
ftrans = subs(f,x,exp(exp(y)));
%exp(exp(y)) is solution where f ends being greater than 1
yend = vpasolve(ftrans==1,y,13)
log(log(exp(exp(yend))))/(21.233*log(exp(exp(yend))))
1/(53.989*log(exp(exp(yend)))^(2/3)*log(log(exp(exp(yend))))^(1/3))
3 件のコメント
Fatima Majeed
2024 年 6 月 10 日
Sam Chak
2024 年 6 月 10 日
Hi Fatima, can you provide the paper or link, or a cropped section for study purposes? Sounds like an interesting problem.
While I know what a log function is, I never use log(log(x)) or exp(exp(x)) in this approach.
Fatima Majeed
2024 年 6 月 10 日
カテゴリ
ヘルプ センター および File Exchange で MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!





