Enter Your Function and Variables
How the Calculation Works
Main evaluation model:
f(x, y, z, t) = your entered expression
Graph sampling step:
h = (range end - range start) / (steps - 1)
Generated graph points:
v(i) = range start + i × h and f(i) = f(v(i)), where the selected graph variable changes while the remaining variables stay fixed.
Supported constants and operators:
Constants include pi and e. Core operators include +, -, *, /, and ^.
Steps for Accurate Results
x, y, z, and t. Example: sin(x) + y^2 - z/2 + log(t).
Sample Function and Outputs
Example function: x^2 + 2*y - z + sqrt(t)
| Example | X | Y | Z | T | Output |
|---|---|---|---|---|---|
| Row 1 | 2 | 3 | 1 | 16 | 13 |
| Row 2 | 1.5 | 4 | 2 | 25 | 13.25 |
| Row 3 | -3 | 2 | 5 | 9 | 11 |
Frequently Asked Questions
1. Which variables can I use in the expression?
You can use x, y, z, and t. Each variable accepts a current value, and one selected variable can sweep across a range for graphing and table generation.
2. Which mathematical functions are supported?
The calculator supports trigonometric, inverse trigonometric, logarithmic, exponential, rounding, minimum, maximum, and power-related functions. Examples include sin, sqrt, log, exp, pow, min, and round.
3. Are trigonometric inputs in degrees or radians?
Trigonometric functions use radians. If you have degree values, convert them before entering the function or value. For example, 90 degrees equals pi/2.
4. Why are some graph points missing?
Missing points usually appear when the expression becomes undefined. Common causes include division by zero, square roots of negative values, or logarithms of nonpositive values.
5. Can I graph by changing y, z, or t instead of x?
Yes. Select any one of the four variables as the graph variable. The chosen variable will change across the range, while the remaining three stay fixed at their current values.
6. What is included in the CSV export?
The CSV export includes point number, active graph variable value, all current variable values, and the computed result for each valid sampled point. It is suitable for spreadsheet review.
7. What is included in the PDF export?
The PDF export includes the expression, graph settings, current result, and a tabular summary of generated sample data. It is useful for assignment records and quick sharing.
8. Does the calculator support implicit multiplication?
No. Write multiplication explicitly. Use 2*x instead of 2x, and write x*y instead of placing variables directly beside each other.