A C implementation for computing Dixon resultants and solving polynomial systems over finite fields and the rationals ℚ, based on the FLINT and PML libraries.
Website: https://drsolve.github.io
- Dixon resultant computation for variable elimination
- Polynomial system solver
- Finite fields:
- Prime fields F_p (any size): Implemented with FLINT modular arithmetic, optionally accelerated by PML.
- Extension fields F_{p^k}: Further optimized for binary fields F_{2^n} with n in {8, 16, 32, 64, 128}.
- Rational field ℚ: Rational reconstruction via multi-prime CRT. Set field_size = 0 to enable.
- Complexity analysis — estimates Dixon matrix size, Bezout degree bound, and operation count before computing
- FLINT (recommended version: 3.5.0)
https://github.com/flintlib/flint
git clone https://github.com/flintlib/flint.git && cd flint
./bootstrap.sh
./configure
make
make install- PML (built in)
https://github.com/vneiger/pml
git clone https://github.com/drsolve/drsolve.git && cd drsolve
./configure
make
make check # optional
make install # optionalFor more options, run ./configure --help or make help.
We also provide a Windows GUI at drsolve-win or drsolve-cross.
./drsolve "polynomials" "eliminate_vars" field_sizeExample:
./drsolve "x+y+z, x*y+y*z+z*x, x*y*z+1" "x,y" 257- Default output file:
out/solution_YYYYMMDD_HHMMSS.dr
./drsolve "polynomials" field_sizeExample:
./drsolve "x^2+y^2+z^2-6, x+y+z-4, x*y*z-x-1" 0- Writes all solutions to
out/solution_YYYYMMDD_HHMMSS.dr
./drsolve input_file
./drsolve -f input_file -o output_fileLine 1 : variables to ELIMINATE (comma-separated)
Line 2 : field size (prime or p^k; use 0 for Q; generator defaults to 't')
Line 3+: polynomials (comma-separated, may span multiple lines, #eliminate = #equations - 1)
Example:
# example.dr
x0,x1
257
x0^3+x1^3+x2^3, x0*x1+x1*x2+x2*x1, x1*x2*x0+1Run:
./drsolve example.dr
./drsolve -f example.dr -o my_result.dr- If line 1 lists
nvariables fornequations, compatibility mode uses the firstn-1variables
Line 1 : field size
Line 2+: polynomials (comma-separated, may span multiple lines)
Example:
# example_solve.dr
0
x^2+y^2+z^2-6, x+y+z-4, x*y*z-x-1Run:
./drsolve example_solve.dr
./drsolve -f example_solve.dr -o my_solutions.dr./drsolve "x + y^2 + t, x*y + t*y + 1" "y" 2^8The default settings use t as the extension field generator and FLINT's built-in field polynomial.
./drsolve "x^2 + t*y, x*y + t^2" "2^8: t^8 + t^4 + t^3 + t + 1"- Example: AES polynomial for
GF(2^8) - In
Qand prime fields,tis treated as an ordinary variable; only extension fields reserve it as the generator
Estimates the difficulty of a Dixon resultant computation without performing it. Reports equation count, variable count, degree sequence, Dixon matrix size, Bezout degree bound, and complexity in bits.
./drsolve -c "polynomials" "eliminate_vars" field_size
./drsolve -c -f input.dr- Prints complexity information
- Default output file:
out/comp_YYYYMMDD_HHMMSS.dr - Add
--omega <value>or-w <value>to set the matrix-multiplication exponent
Example:
./drsolve -c "x^3+y^3+z^3, x^2*y+y^2*z+z^2*x, x+y+z-1" "x,y" 257Generate random polynomial systems for testing and benchmarking.
./drsolve -r "[d1,d2,...,dn]" field_size
./drsolve -r "[d]*n" field_size
./drsolve -r -n 4 --density 0.5 "[d]*3" field_size
./drsolve -r -s "[d1,...,dn]" field_size
./drsolve -r -c "[d]*n" field_size- Add
-n <num_vars>to set the variable count - Add
--density <ratio>with0 <= ratio <= 1 - Add
--seed <num>for reproducible random systems - Mixed degree specifications such as
"[2]*5+[3]*6"are supported
Examples:
./drsolve -r "[3,3,2]" 257
./drsolve -r "[3]*3" 0
./drsolve -r -n 4 --density 0.5 "[3]*3" 257
./drsolve -r --seed 12345 "[3]*3" 257
./drsolve -r "[2]*4+[3]*2" 257
./drsolve -r -s "[2]*3" 257
./drsolve -r --comp --omega 2.373 "[4]*4" 257./drsolve --ideal "ideal_generators" "polynomials" "eliminate_vars" field_size
./drsolve --ideal -f input.dr -o output.drideal_generatorsis a comma-separated list of relations with=- In file mode, lines after the first two lines containing
=are treated as ideal generators
Example:
./drsolve --ideal "a2^3=2*a1+1, a3^3=a1*a2+3" "a1^2+a2^2+a3^2-10, a3^3-a1*a2-3" "a3" 257After each multiplication, reduces x^q -> x for every variable.
./drsolve --field-equation "polynomials" "eliminate_vars" field_size
./drsolve --field-equation -r "[d1,d2,...,dn]" field_sizeExample:
./drsolve --field-equation "x0 + x0*x2, 1 + x1, x1 + x0*x1" "x0,x1" 2
./drsolve --field-equation -r "[3]*5" 3 --density 0.5./drsolve --method <num> <args>
./drsolve --step1 <num> --step4 <num> <args>- Available methods:
0.Recursive,1.Kronecker+HNF,2.Interpolation,3.Sparse interpolation,4.Bareiss,5.Recursive Dixon construction --methodsets both Step 1 and Step 4 for backward compatibility
./drsolve --dixon <args>
./drsolve --macaulay <args>
./drsolve --subres <args>--dixon,--macaulay, and--subresare direct method selectors--subresis for exactly 2 polynomials and 1 elimination variable
./drsolve -v 0 <arguments>
./drsolve -v 1 <arguments>
./drsolve -v 2 <arguments>
./drsolve -v 3 <arguments>-v 0 prints nothing but still writes the output file. -v 1 is the default. -v 2 restores the debug-level console output and timing. -v 3 additionally dumps small intermediate matrices.
Example:
./drsolve -v 2 -f in.dr -o out.dr./drsolve --time <args>
./drsolve -v 2 <args>--timeprints per-step timing- Compatibility flags
--silent,--debug,--solve-verbose, and--solveare still accepted
./drsolve --threads <num> <args>- Sets the number of threads for parallel computation
drsolve_sage_interface.sage lets you call DRsolve directly from SageMath with Sage polynomial objects.
- Load the interface with
load("drsolve_sage_interface.sage"), then set the binary path once withset_dixon_path("./drsolve"). - Main entry points:
DixonRes(F, elim_vars, ...)/DixonResultant(...)DixonSolve(F, ...)DixonComplexity(F, elim_vars, ...)DixonIdeal(F, ideal_gens, elim_vars, ...)
- Common options include
field_size,verbosity,time,threads,debug,live_output, andtimeout. field_sizemay be an integer prime, a string such as"2^8"or"2^8: t^8+t^4+t^3+t+1", a SageGF(...)object, or0for ℚ. If omitted, it is inferred from the Sage polynomial ring when possible.- Resultants are returned as strings, so iterative elimination works naturally by feeding one
DixonRes(...)output into the next call. - For a fuller Sage reference with examples and options, see the top docstring in
drsolve_sage_interface.sage.
| Feature | F_p (p<2^63) | F_p (p>2^63) | F_{p^k} (p<2^63) | Q |
|---|---|---|---|---|
| Dixon resultant | ✅ | ✅ | ✅ | ✅ |
Complexity analysis (--comp) |
✅ | ✅ | ✅ | ✅ |
Random mode (-r) |
✅ | ✅ | ✅ | ✅ |
Polynomial solver (-s / --solve) |
✅ | ✅ | ✅ | ✅ |
Ideal reduction (--ideal) |
✅ | ❌ | ✅ | ❌ |
| Field-equation reduction | ✅ | ❌ | ✅ | ❌ |
| PML acceleration | ✅ | ✅ | ❌ | ✅ |
DRSolve is distributed under the GNU General Public License version 2.0 (GPL-2.0-or-later). See the file COPYING.
