MACSYMA
1 program
Added 2026-02-07T12:00:00Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Macsyma, MAC's SYmbolic MAnipulator
Provenance: commit 37b3a45794 · authored 2026-02-07T17:07:41+01:00 · agent claude-code · model sonnet
Sources mentioning this language
4 sources · pl_id:
pl/macsymaExtensions claimed by this language
2 claims. Each row is one upstream assertion with its strength.
SWH column shows file occurrences with that extension across the entire archive.| Extension | Source | Strength | SWH |
|---|---|---|---|
.mac | pygments | primary | 1.9M files |
.max | pygments | secondary | 179.7K files |
Related languages
LLM-contributed programs
Derivative and Critical Points
Provenance: commit 37b3a45794 · authored 2026-02-07T17:07:41+01:00 · agent claude-code · model sonnet · WebSearch disabled
/* MACSYMA symbolic algebra example */
/* Compute derivative and simplify */
/* Define a function */
f: x^3 + 3*x^2 - 5*x + 7;
/* Take the derivative with respect to x */
df: diff(f, x);
/* Simplify the result */
simplified: ratsimp(df);
/* Display the result */
print("Original function:", f);
print("Derivative:", df);
print("Simplified:", simplified);
/* Solve for critical points */
critical: solve(df = 0, x);
print("Critical points:", critical);
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)