¡De acuerdo! Así que... me alegré mucho cuando descubrí que polynom
me haría una división larga polinomial como si no fuera gran cosa. Pero... ¿existe una función para multiplicar polinomios? Parece que encontré algo llamado \polymul
en el manual, pero... no hay ningún detalle sobre cómo usarlo (y sigo recibiendo errores al intentar multiplicar polinomios simples):http://cs.brown.edu/about/system/managed/latex/doc/polynom.pdf
¡Cualquier sugerencia sería útil!
Respuesta1
Mirando el manual, podrías hacer algo como esto:
\documentclass{article}
\usepackage{polynom}
\begin{document}
% the next two lines are just to save the two polynoms we want to multiply to \PolynomA and \PolynomB
\polyadd\PolynomA{x-1}{0} % adding zero: trick mentioned in the manual
\polyadd\PolynomB{x^2+2}{0}%
% multiply A and B, save to \SomePolynom
\polymul\SomePolynom\PolynomA\PolynomB
\begin{equation}
(\polyprint\PolynomA)(\polyprint\PolynomB)=\polyprint\SomePolynom
\end{equation}
\end{document}
En general, lo haces \polymul\SomeMacronameYouDecideYourself{<first polynom>}{<second polynom>}
. Para obtener resultados útiles, debe utilizar \polyprint\SomeMacronameYouDecideYourself
.