Problem with simplify(x^(1/log(x)).
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
John Billingham
am 12 Sep. 2014
Kommentiert: jin yong
am 8 Feb. 2023
>> sym x;
>> assume(x>0)
>> simplify(x^(1/log(x)),'IgnoreAnalyticConstraints',true)
>> ans = x^(1/log(x))
Note that x^(1/log(x))=e. Why won't this expression simplify?
1 Kommentar
jin yong
am 8 Feb. 2023
syms x a;
assume(x>0)
x=exp(a)
simplify(x^(1/log(x)),'IgnoreAnalyticConstraints',true)
Akzeptierte Antwort
Friedrich
am 12 Sep. 2014
Hi,
have you tried increasing the number of simplification steps?
>> simplify(x^(1/log(x)),'steps',10)
ans =
exp(1)
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Calculus finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!