OpenAxiom
1 program
Added 2026-02-10T14:58:11Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 375fc52666 · authored 2026-02-10T15:58:34+01:00 · agent claude-code · model sonnet
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Factorial and Symbolic Math
Provenance: commit 375fc52666 · authored 2026-02-10T15:58:34+01:00 · agent claude-code · model sonnet · WebSearch disabled
-- Factorial function
factorial(n: Integer): Integer ==
n <= 1 => 1
n * factorial(n - 1)
-- Compute factorial of 10
factorial(10)
-- Symbolic differentiation
D(x^3 + 2*x^2 + x + 1, x)
-- Integration
integrate(x^2, x)