Wolfram Language is a general-purpose programming language developed by Wolfram Research. It is particularly well-suited for symbolic computation and data analysis. Here is an overview of some of its basic syntax and features.
2 + 2
3 * 4
5 / 2
x = 42
y = 3.14
z = "hello"
list = {1, 2, 3, 4, 5}
list[[3]]
f[x_] := x^2
f[3]
data = Import["filename.csv"]
Mean[data]
Median[data]
StandardDeviation[data]
ListPlot[data]
Histogram[data]
Expand[(x + y)^3]
Factor[x^3 - y^3]
Solve[x^2 + y^2 == 1, y]
D[x^2, x]
Integrate[x^2, x]
DSolve[y'[x] == y[x], y[x], x]