Mathematica
1 program
Added 2026-02-11T11:24:48Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Wolfram Mathematica
Provenance: commit f1fe4fb6d7 · authored 2026-02-11T12:25:50+01:00 · agent claude-code · model sonnet
Sources mentioning this language
6 sources · pl_id:
pl/mathematicaWikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| Paradigms | multi-paradigm: term-rewriting · functional · procedural · array |
|---|---|
| Typing | dynamic, strong |
| Designed by | Wolfram Research · Stephen Wolfram |
| First appeared | 1988 |
| Influenced by | APL · C · C++ · FORTRAN · Lisp · Pascal · Prolog · Schoonschip · Simula · Smalltalk · SMP |
| License | Proprietary |
| Homepage | https://www.wolfram.com/language/ |
Extensions claimed by this language
4 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 |
|---|---|---|---|
.nb | pygments | primary | 388.2K files |
.cdf | pygments | secondary | 77.5K files |
.ma | pygments | secondary | 159.7K files |
.nbp | pygments | secondary | 671 files |
Related languages
LLM-contributed programs
Fibonacci Sequence with Memoization
Provenance: commit f1fe4fb6d7 · authored 2026-02-11T12:25:50+01:00 · agent claude-code · model sonnet · WebSearch disabled
(* Compute first 20 Fibonacci numbers *)
Fibonacci[n_] := Fibonacci[n] = If[n < 2, n, Fibonacci[n-1] + Fibonacci[n-2]]
(* Generate list *)
fibList = Table[Fibonacci[i], {i, 0, 19}]
(* Display results *)
Print["First 20 Fibonacci numbers:"]
Print[fibList]
(* Find sum of even Fibonacci numbers *)
evenSum = Total[Select[fibList, EvenQ]]
Print["Sum of even Fibonacci numbers: ", evenSum]
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.)