CoCoA-5
1 program
Added 2026-03-17T05:51:07Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: CoCoA5, CoCoA
Provenance: commit 2b05a644b8 · authored 2026-03-17T06:51:44+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Polynomial GCD and Groebner Basis
Provenance: commit 2b05a644b8 · authored 2026-03-17T06:51:44+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
-- CoCoA-5: Basic polynomial computations
Use R ::= QQ[x, y];
F := x^3 - y^3;
G := x^2 - y^2;
PrintLn "GCD(F, G) = ", GCD(F, G);
PrintLn "Factorize(F) = ", Factorize(F);
I := Ideal(F, G);
PrintLn "GBasis(I) = ", GBasis(I);