struct MyBigInt
::Symbol
sign::Int
base::Vector{Int64}
digitsend
= MyBigInt(:+, 1000, Vector([1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 0])) p1
Computer Algebra Concepts and Techniques
Computer Algebra Concepts and Techniques
Inspired by Chris Rackauckas’ call to action at the 2023 JuliaCon (and the use of Symbolics.jl logic in Catalyst, ModelingToolkit etc), I started reading this book August 15th.
Things I’m curious about:
- What is a Groebner base, and why is it important?
Currently on: Chapter 3
Chapter 3
I started coding along a toy implementation in julia. First up, a handrolled arbitrary precision integer type: