좋아요! 그래서... polynom
별거 아닌 것처럼 다항식 장나눗셈을 수행할 수 있다는 것을 알았을 때 정말 기뻤습니다 . 그런데... 다항식을 곱하는 함수가 있나요? 매뉴얼에서 뭔가를 발견한 것 같은데 \polymul
...사용 방법에 대한 자세한 내용이 없습니다. (간단한 다항식을 곱하려고 하면 계속 오류가 발생합니다.)http://cs.brown.edu/about/system/managed/latex/doc/polynom.pdf
어떤 제안이라도 도움이 될 것입니다!
답변1
매뉴얼을 보면 다음과 같이 할 수 있습니다.
\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}
일반적으로 당신은 \polymul\SomeMacronameYouDecideYourself{<first polynom>}{<second polynom>}
. 유용한 출력을 얻으려면 를 사용해야 합니다 \polyprint\SomeMacronameYouDecideYourself
.