Reversing an polynomial equation y = f(x) to x = f(y)
91 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I'm trying to reverse a 3rd order equation using matlab, ie: y = x^3 + x^2 + x^1 + 5 to x = f(y) I just don't know if there's an already built it function in matlab for such a task.
Thank you...
2 Kommentare
John D'Errico
am 19 Feb. 2023
Bearbeitet: John D'Errico
am 19 Feb. 2023
@Khalid Alshumayri - did you understand the answers? This is mathematically impossible in general, certainly for polynomials of higher degree than 4. Even for lower polynomials, at best you would need to use a root finder, something like solve. There will be no single valued function you can formulate as the inverse function for most polynomials. And even if the inverse does technically exist if the polynomial is monotonic, the solution is still rather a messy one, even for 3rd or degree polynomials, involving radicals and complex numbers. Note that even degree polynomials will NEVER be monontonic functions.
Antworten (2)
Walter Roberson
am 13 Mai 2012
polynomials of degree 2 or higher cannot be inverted to give a polynomial.
The inverse of the particular polynomial you indicate is the union of three expressions.
If you have the symbolic toolbox, you can use solve()
0 Kommentare
Marcin Konowalczyk
am 1 Nov. 2017
@Walter is right, but what you can do is approximate them using, for example, this function. This works only in a small domain where your polynomial is well conditioned (monotonically increasing) and fails horribly otherwise, but for certain cases (see the docstring of the linked function) it is useful.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Polynomials finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!