Unable to find functional inverse of power function

2 Ansichten (letzte 30 Tage)
Jun Liang
Jun Liang am 8 Mär. 2022
Kommentiert: Jun Liang am 10 Mär. 2022
for example, I have a function , and the inverse function of x is : or it can be written to
But when I use MATLAB, it throws a warning: Unable to find functional inverse.
code:
syms x theta
f = x^theta;
g = finverse(f, x);

Akzeptierte Antwort

David Hill
David Hill am 8 Mär. 2022
There is an inverse for some theta's but most theta's will produce imaginary results for negative values of x.
syms x
f=x.^3;
g = finverse(f);%this works but other values of theta will not previde a pure inverse function
  1 Kommentar
Jun Liang
Jun Liang am 10 Mär. 2022
thanks, Does this mean that finverse is invalid when imaginary values may appear in the function?

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Formula Manipulation and Simplification finden Sie in Help Center und File Exchange

Produkte


Version

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by