Examples
SumWise Examples
These examples are a small starter set for the public SumWise 2.2 Windows release.
Related use-case guides
- Offline Calculus Software for Windows
- Unit Conversion Calculator for Windows
- Derivative and Integral Calculator for Windows
Symbolic Math
expand((x+2)(x+3))
simplify(2*x + 3*x)
factor(x^2 + 5*x + 6)
roots(x^2 + 5*x + 6)
solve(x^2 = 4, x)
derivative(sin(x^2))
integrate(x^2)
Graphing And Visual Calculus
graph sin(x), derivative(sin(x)) from -6.28 to 6.28
graph_tangent(x^2, 3) from -2 to 6
graph_area(sin(x), 0, pi) from -1 to 4
graph_roots(x^2 - 1) from -3 to 3
graph_extrema(x^3 - 3*x) from -3 to 3
tangent_line(x^2, x, 2)
definite_integral(x^2, x, 0, 3)
critical_points(x^2 - 4*x + 4, x)
extrema(x^2 - 4*x + 4, x)
Statistics And Regression
mean(vector(1,2,3,4))
linear_regression(vector(1,2,3), vector(2,4,6))
graph_scatter(vector(1,2,3,4), vector(2,4,5,4))
graph_regression(vector(1,2,3,4,5), vector(2,4,5,4,5))
Units, Constants, Matrices, And Vectors
100km/h to mph
convert(100, C, F)
convert(1, mile, km)
c
G
vector(1,2,3,4)
matrix(2, 2, 1, 2, 3, 4)
Exact, Mixed, And Approximate Fractions
fraction(1000/60)
mixed(1000/60)
approx_fraction(0.3333333333)
approx_mixed(16.6666667)