diff --git a/docs/src/division.md b/docs/src/division.md index f4fb24e..a20a6b1 100644 --- a/docs/src/division.md +++ b/docs/src/division.md @@ -8,9 +8,6 @@ Given a polynomial ``p`` and divisors ``d_1, \ldots, d_n``, one can find ``r`` a You can obtain the vector ``[q_1, \ldots, q_n]`` using `div(p, d)` where ``d = [d_1, \ldots, d_n]`` and ``r`` using the `rem` function with the same arguments. The `divrem` function returns ``(q, r)``. ```@docs -divrem -div -rem divides div_multiple ```