OK! Então... fiquei muito satisfeito quando descobri que isso polynom
só faria divisão polinomial longa para mim, como se não fosse grande coisa. Mas...existe uma função para multiplicar polinômios? Parece que encontrei algo chamado \polymul
no manual, mas... não há detalhes sobre como usá-lo (e continuo recebendo erros ao tentar multiplicar polinômios simples):http://cs.brown.edu/about/system/administrado/latex/doc/polynom.pdf
Quaisquer sugestões seriam úteis!
Responder1
Olhando o manual, você poderia fazer algo assim:
\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}
Em geral, você faz \polymul\SomeMacronameYouDecideYourself{<first polynom>}{<second polynom>}
. Para obter resultados úteis, você precisa usar \polyprint\SomeMacronameYouDecideYourself
.