How to find the polynomial equation when factors is provided?

13 visualizaciones (últimos 30 días)
Ara Guz
Ara Guz el 7 de Jun. de 2021
Comentada: Matt J el 7 de Jun. de 2021
I have f(x) = (x+7)*(x-19)*(x-18)*(x+17) as the given, how to find its polynomial expression given its factors?
i only know how to solve the root of the functions but not the other way around. sorry for asking again. thank you!

Respuestas (1)

Matt J
Matt J el 7 de Jun. de 2021
Editada: Matt J el 7 de Jun. de 2021
p = poly([-7,19,18,-17])
p = 1×5
1 -13 -427 3805 40698
  2 comentarios
Ara Guz
Ara Guz el 7 de Jun. de 2021
is it possible that this could be shown in an equation form?
Matt J
Matt J el 7 de Jun. de 2021
You mean symbolic form?
syms f(x)
f(x)=poly2sym( poly([-7,19,18,-17]) )
f(x) = 

Iniciar sesión para comentar.

Categorías

Más información sobre Polynomials en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by