Andromeda
Note

Functions of Several Variables

Definition

A function of several variables assigns a single real output ww to an nn-tuple of independent real input variables: w=f(x1,x2,,xn)w = f(x_1, x_2, \dots, x_n).

  • How to read: “The value w equals f of x one, x two, and so on, through x n.”
  • Meaning: One output depends on multiple inputs simultaneously — the multivariable generalization of y=f(x)y = f(x).

Why It Matters

The real world rarely depends on a single factor; multivariable functions are the essential tools for modeling high-dimensional systems, from the global economy to the flight of a rocket, where many variables must be balanced simultaneously to achieve a specific outcome.

Core Concepts

  • Domain: The set of points in nn-dimensional space where the function is defined.
  • Level Curve: For f(x,y)f(x, y), the set of points where f(x,y)=cf(x, y) = c.
    • How to read: “The function f of x y equals the constant c.”
    • Meaning: A contour line in the xyxy-plane where the function holds the same value — like elevation lines on a topographic map.
  • Graph: The surface z=f(x,y)z = f(x, y) in R3\mathbb{R}^3.
    • How to read: “The value z equals f of x y in three-dimensional real space.”
    • Meaning: The graph is a 2D surface sitting above the xyxy-plane; height zz encodes the function value.
  • Level Surface: For f(x,y,z)f(x, y, z), the set of points in R3\mathbb{R}^3 where f(x,y,z)=cf(x, y, z) = c.
    • How to read: “The function f of x y z equals c.”
    • Meaning: A 2D surface in 3D space where the scalar field is constant — the 3D analogue of a level curve.

Connected Concepts