I want to use the polynom package for synthetic division. However, while it works well for integer roots it does not take non-integer inputs. For example this works well:
\documentclass[12pt,letterpaper,oneside]{article}
\usepackage{polynom}
\begin{document}
\polyhornerscheme[x=4]{2x^5-3x^4-23x^3-3x^2+51x+36}
\end{document}
But I don't know how to use a non-integer such as \sqrt{3} as a root:
\polyhornerscheme[x=\sqrt{3}]{2x^5-3x^4-23x^3-3x^2+51x+36}
Are there any workarounds to this problem, or am I just better off writting out the division manually in a table.
My apologies if this is a silly question, I'm new to both LaTeX and the polynom package.
\documentclass{...}, the required\usepackage's,\begin{document}, and\end{document}. That may seem tedious to you, but think of the extra work it represents for TeX.SX users willing to give you a hand. Help them help you: remove that one hurdle between you and a solution to your problem. – Adam Liter Apr 20 '15 at 19:30\polylongdivwith customized layout. – Symbol 1 Apr 24 '15 at 16:00\polylongdivin your suggestion will have the same value at the chosen number as the original polynomial, that still leaves the problem of finding what that value is. I don't know if that's the OP's goal, so this may or may not answer the original question. – LSpice Apr 24 '15 at 18:43