Proving one function is greater than other?

2 ビュー (過去 30 日間)
Fatima Majeed
Fatima Majeed 2024 年 6 月 9 日
コメント済み: Matt J 2024 年 6 月 10 日
I want to see where is this inequality true
where x in (e^e,∞).
  6 件のコメント
Matt J
Matt J 2024 年 6 月 9 日
The notation is ambiguous. We must know whether is to be interpreted as or as .
Fatima Majeed
Fatima Majeed 2024 年 6 月 9 日
@Matt J It is as (log(x))^y

サインインしてコメントする。

採用された回答

Matt J
Matt J 2024 年 6 月 10 日
編集済み: Matt J 2024 年 6 月 10 日
Make the change of variables and rearrange the inequality as,
Since is a convex function on such that >0 and , it readily follows that for all . QED.
  10 件のコメント
Fatima Majeed
Fatima Majeed 2024 年 6 月 10 日
@Sam Chak that is stunning
Matt J
Matt J 2024 年 6 月 10 日
I want to thank both of you for your efforts.
You're welcome, but please Accept-click the answer if it has resolved your question.

サインインしてコメントする。

その他の回答 (1 件)

Torsten
Torsten 2024 年 6 月 9 日
編集済み: Torsten 2024 年 6 月 10 日
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)
xstart = 
5.8933180867157239497727768797558
log(log(xstart))/(21.233*log(xstart))
ans = 
0.01521725041175722892398806828762
1/(53.989*log(xstart)^(2/3)*log(log(xstart))^(1/3))
ans = 
0.01521725041175722892398806828762
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)
yend = 
13.085773977624348668463856655909
log(log(exp(exp(yend))))/(21.233*log(exp(exp(yend))))
ans = 
0.0000012785232351771168083804508742678
1/(53.989*log(exp(exp(yend)))^(2/3)*log(log(exp(exp(yend))))^(1/3))
ans = 
0.0000012785232351771168083804508742678
  3 件のコメント
Sam Chak
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
Fatima Majeed 2024 年 6 月 10 日
https://doi.org/10.48550/arXiv.2402.04272
In the end of page 13

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeCalculus についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by