If you're seeing this message, it means we're having trouble loading external resources on our website.

If you're behind a web filter, please make sure that the domains *.kastatic.org and *.kasandbox.org are unblocked.

Main content

Multidimensional graphs

Examples and limitations of graphing multivariable functions.

What we're building to

  • Graphing a function with a two-dimensional input and a one-dimensional output requires plotting points in three-dimensional space.
  • This ends up looking like a surface in three-dimensions, where the height of the surface above the xy-plane indicates the value of the function at each point.

Reviewing graphs of single-variable functions

Graphs are, by far, the most familiar way to visualize functions for most students. Before generalizing to multivariable functions, let's quickly review how graphs work for single-variable functions.
Suppose our function looks like this:
f(x)=x2+3x+2
To plot a single input, like x=1, we first compute f(1):
f(1)=x2+3x+2=(1)2+3(1)+2=4
Then we mark the point (1,f(1)) on the xy-plane. In this case, that means marking (1,4).
When we do this for all possible inputs x, not just 1, we see what all the points of the form (x,f(x)) look like.
Unless f(x) is some exotic or sporadic function that gives wildly different values as x changes slightly, the result will be a smooth-looking curve.

Adding one more dimension

So what can we do for functions with a two-dimensional input and a one-dimensional output? Perhaps something like this:
f(x,y)=(x2)2+(y2)2+2
Associating inputs with outputs requires three numbers—two for the inputs and one for the output.
Inputs (x,y)Output f(x,y)
(0,0)10
(1,0)7
(1,2)3
To represent these associations using a graph, we plot points in three dimensions.
  • The association (0,0)10 is plotted with the point (0,0,10).
  • The association (1,0)7 is plotted with the point (1,0,7).
  • In general, the goal is to represent all points of the form (x,y,f(x,y)) for some pair of numbers x and y.
The resulting graph is shown below. The video shows this graph rotating, which hopefully will help you get a feel for the three-dimensional nature of it. You can also see the xy-plane—which is now the input space—below the graph.
Khan Academy video wrapper
This means for any given point (x,y) on the plane, the vertical distance between that point and the graph indicates the value of f(x,y). That vertical direction is usually referred to as the z-direction, and the third axis which is perpendicular to the xy-plane is called the z-axis.
As long as the value of f(x,y) changes continuously as x and y change values, which is almost always the case in functions we deal with in practice, the graph ends up looking like some sort of​ surface.

Example 1: The bell curve

Function: f(x,y)=e(x2+y2)
Graph:
Gaussian bell curve
Let's analyze what's going on with this function. First, let's look inside the exponent of e(x2+y2) and think about the value x2+y2.
Question: How can you interpret the value x2+y2?
Choose 1 answer:

When the point (x,y) is far from the origin, the function e(x2+y2) will look like e(some big negative number), which is nearly zero. This means the distance between the graph and the xy-plane at those points will be tiny. When x=0 and y=0, on the other hand, e(x2+y2)=e0=1, which is what gives us the bulge in the middle.
Reflection Question: The graph above has rotational symmetry, in the sense that it will look the same if we rotate it in any way about the z-axis. Why is this?

Example 2: Waves

Function: f(x,y)=cos(x)sin(y)
Graph:
One way to get an intuition for the function f(x,y)=cos(x)sin(y)—and multivariable functions in general—is to see what happens when one of the inputs is held constant.
For example, what happens when we fix the value of x to be 2? Usually, we are plotting all the points that look like this:
(x,y,cos(x)sin(y))x and y range freely.
By holding x constant at 2, we are limiting our view to points that look like this:
(2,y,cos(2)sin(y))Only y ranges freely.
There is a very nice way to interpret this geometrically:
The points in space where x=2, which is to say all the points of the form (2,y,z), make up a plane. Why? Imagine slicing the graph with this plane. The points where the plane and the graph intersect—drawn in red above—are the points on our graph where x=2.
So why would this be helpful for understanding the graph?
We have basically turned the multivariable function f(x,y)=cos(x)sin(y) into a single variable function:
g(y)=cos(2)sin(y)0.42sin(y)
In fact, the curve we get from slicing the three-dimensional graph at x=2 has the same shape as the two-dimensional graph of g(y).
In this way, you can understand the three-dimensional graph of a multivariable function one slice at a time by holding one variable constant and looking at the resulting two-dimensional graph.

Example 3: One input, two outputs

You can also graph a function with a one-dimensional input and a two-dimensional output—although, for whatever reason, this is not commonly done.
Function: f(x)=(x2,sin(x))
Points plotted: (x,x2,sin(x))
Graph:
Graph of f(x)=(x2,sin(x))
In this case, only x runs freely, while the y and z values on the graph are both dependent on x.
If we rotate the image so we can look squarely at the xy-plane, the graph looks like f(x)=x2. Another way to say this is that when we project the graph onto the xy-plane, it gives the graph of f(x)=x2.
Projection of f(x)=(x2,sin(x)) onto the xy plane
Similarly, rotating the image so that we're looking squarely at the xz-plane makes the image look like the graph of f(x)=sin(x).
Projection of the f(x)=(x2,sin(x)) onto the xz-plane
In other words, this function f(x)=(x2,sin(x)) is a way to combine the two functions f(x)=x2 and f(x)=sin(x) into one, and its graph captures the information of both in one image.

Limitations

As soon as you try to apply this process to functions with higher-dimensional inputs or outputs, you'll run out of dimensions which you can comfortably visualize.
For instance, consider the function f(x,y)=(x2,y2) with a two-dimensional input and a two-dimensional output. Graphing it would require four dimensions of space! This is because we would need to plot all points of the form (x,y,x2,y2).
In practice, when people think about graphs of higher dimensional functions, like f(x,y,z)=x2+y2+z2, they usually start by considering graphs of some simpler function with a two-dimensional input and one-dimensional output like f(x,y)=x2+y2. This is a sort of conceptual prototype.
Such a prototype can help make sense out of certain operations, and can give you a feel for what starts to happen as your input space becomes multidimensional. At the end of the day, the actual computations are performed purely symbolically for the higher dimensional function.

Want to join the conversation?