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/mathematica
LLM (this repo) · 1PldbPygmentsWikipediaHyperpolyglotWikidata · Q15241057

Wikipedia infobox

Pulled from the wikimedia/structured-wikipedia snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and pl_fact.csv for the long-table provenance.

Paradigmsmulti-paradigm: term-rewriting · functional · procedural · array
Typingdynamic, strong
Designed byWolfram Research · Stephen Wolfram
First appeared1988
Influenced byAPL · C · C++ · FORTRAN · Lisp · Pascal · Prolog · Schoonschip · Simula · Smalltalk · SMP
LicenseProprietary
Homepagehttps://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.
ExtensionSourceStrengthSWH
.nbpygmentsprimary388.2K files
.cdfpygmentssecondary77.5K files
.mapygmentssecondary159.7K files
.nbppygmentssecondary671 files

Related languages

Wolfram (0.55)Wolfram Language (0.51)Matita (0.21)MPL (0.20)MATH-MATIC (0.19)

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
code.m · added: 2026-02-11T11:24:48Z
(* 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.)

Contribute — propose a file extension

Tell us where to find evidence about Mathematica (mapped to pl/mathematica). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/Mathematica/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← mathcad mathematica-editor →