Polynomial long division: Difference between revisions

Content added Content deleted
No edit summary
Line 1,861: Line 1,861:
(o at: 1) display. ' with rest: ' display. (o at: 2) displayNl
(o at: 1) display. ' with rest: ' display. (o at: 2) displayNl
]</lang>
]</lang>

=={{header|SPAD}}==
{{works with|FriCAS}}
{{works with|OpenAxiom}}
{{works with|Axiom}}
<lang SPAD>(1) -> monicDivide(x^3-12*x^2-42,x-3,'x)

2
(1) [quotient = x - 9x - 27,remainder = - 123]

Type: Record(quotient: Polynomial(Integer),remainder: Polynomial(Integer))</lang>

Domain:[http://fricas.github.io/api/PolynomialCategory.html#l-polynomial-category-monic-divide]



=={{header|Tcl}}==
=={{header|Tcl}}==