From bd44ac90b93ae463ef6de084e43f64a39210ad60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Legat?= Date: Thu, 2 May 2024 17:57:47 +0200 Subject: [PATCH] Fix --- docs/src/division.md | 3 --- 1 file changed, 3 deletions(-) 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 ```