Study Guide1,215 words

Areas Between Curves: Calculus Study Guide

Areas between Curves

Areas Between Curves: Calculus Study Guide

Learning Objectives

By the end of this study guide, you should be able to:

  • Determine the area of a region between two curves by integrating with respect to the independent variable ($x).
  • Find the area of a compound region by breaking it into separate integrals where the bounding curves intersect and switch positions.
  • Determine the area of a region between two curves by integrating with respect to the dependent variable (y) using horizontal slicing.

Key Terms & Glossary

  • Compound Region: A complex area where the bounding functions intersect within the interval, requiring the area to be split into multiple integrals. Example: Finding the area between the crossing paths of a jet plane and a drone to determine potential collision zones.
  • Representative Rectangle: A geometric tool used to approximate an infinitesimally thin slice of area between curves. Example: Thinking of a curved plot of land as being divided by perfectly straight, thin fences stacked next to each other.
  • Limits of Integration: The geometric boundaries (x=atotox=b,or, or y=ctotoy=d) that define the start and end of the calculated area. Example: The exact start and end times (bounds) when analyzing the accumulated difference between energy produced and energy consumed in a solar grid.

The "Big Idea"

In early calculus, you learned to find the area under a single curve (between the curve and the x-axis). The "Big Idea" here is that we can expand this concept to find the exact area trapped between any two curves.

Instead of integrating just f(x), you integrate the difference between the two functions: (Top - Bottom)oror(Right - Left). This fundamental principle allows engineers, physicists, and economists to calculate bounded regions—such as the exact physical material needed to fill a mold, or the total profit margin between revenue and cost curves over time.


Formula / Concept Box

[!IMPORTANT] Always remember that Area must be positive. If you get a negative result, you likely subtracted the larger function from the smaller one!

ConceptMathematical FormulaUsage Notes
Vertical Slices (w.r.t x$)A=ab[f(x)g(x)]dxA = \int_{a}^{b} [f(x) - g(x)] \,dxUse when f(x)g(x)f(x) \ge g(x) on $[a, b]. Represents Top Curve minus Bottom Curve.
Horizontal Slices (w.r.t y$)A=cd[u(y)v(y)]dyA = \int_{c}^{d} [u(y) - v(y)] \,dyUse when u(y)v(y)u(y) \ge v(y) on [c,d][c, d]. Represents Right Curve minus Left Curve.
Compound RegionsA=ac[f(x)g(x)]dx+cb[g(x)f(x)]dxA = \int_{a}^{c} [f(x) - g(x)] \,dx + \int_{c}^{b} [g(x) - f(x)] \,dxUse when curves intersect at $x=c and swap top/bottom positions.

Hierarchical Outline

  1. Introduction to Areas Between Curves
    • Expanding definite integrals beyond the x-axis.
    • Approximating with Representative Rectangles.
  2. Regions Defined with Respect to x (Vertical Slicing)
    • Identifying the top curve f(x)andbottomcurveand bottom curveg(x).
    • Setting the upper and lower Limits of Integration (aandandb).
  3. Compound Regions and Intersecting Graphs
    • Finding intersection points algebraically.
    • Splitting the primary integral into multiple distinct integrals.
  4. Regions Defined with Respect to y (Horizontal Slicing)
    • Re-expressing functions as x = u(y)andandx = v(y)$.
    • Simplifying integrals when functions cross multiple times vertically but not horizontally.

Visual Anchors

1. Decision Matrix Flowchart

Loading Diagram...

2. Geometric Representation of Area between Curves

Compiling TikZ diagram…
Running TeX engine…
This may take a few seconds

Definition-Example Pairs

  • Integrating with respect to xx ($dx)

    • Definition: Slicing the area vertically into infinite rectangles of width dx, where the height is the y-value difference.
    • Example: Calculating the 2D cross-sectional area of an airplane wing by measuring the difference between the upper contour and lower contour at various points along its length.
  • Integrating with respect to y( (dy)

    • Definition: Slicing the area horizontally into infinite rectangles of height dy, where the width is the x-value difference.
    • Example: Determining the fluid capacity of an irregular vase by summing thin horizontal discs of water from the base to the lip.

Comparison Tables

FeatureVertical Slicing (dx)Horizontal Slicing (dy)
Function Formaty = f(x)$$x = g(y)
Geometry RuleArea = Top Curve - Bottom CurveArea = Right Curve - Left Curve
Bounds of IntegrationLeftmost xtoRightmostto Rightmostx( (atotob$)Lowest yy to Highest yy (cc to $d)
Best Used When...Curves pass the vertical line test cleanly.A single curve curves back on itself vertically (fails vertical line test) but passes the horizontal line test.

Worked Examples

Example 1: Finding Area with Vertical Slices (Compound Region)

Problem: Find the area bounded by y = x^3andandy = xontheintervalon the interval[-1, 1]$.

Step 1: Find points of intersection. Set the equations equal to each other: x3=xx^3 = x x3x=0x^3 - x = 0 x(x21)=0    x=1,0,1x(x^2 - 1) = 0 \implies x = -1, 0, 1

Step 2: Determine Top and Bottom curves for each interval.

  • On [1,0][-1, 0]: Test x=0.5x = -0.5. y1=(0.5)3=0.125y_1 = (-0.5)^3 = -0.125, and y2=0.5y_2 = -0.5. Since 0.125>0.5-0.125 > -0.5, $x^3 is the Top curve.
  • On [0, 1]:Test: Test x = 0.5.. y_1 = (0.5)^3 = 0.125,and, and y_2 = 0.5.Since$0.5>0.125. Since $0.5 > 0.125, xx is the Top curve.

Step 3: Set up and evaluate the compound integral. A=10(x3x)dx+01(xx3)dxA = \int_{-1}^{0} (x^3 - x) \,dx + \int_{0}^{1} (x - x^3) \,dx

Find the antiderivatives: A=[x44x22]10+[x22x44]01A = \left[ \frac{x^4}{4} - \frac{x^2}{2} \right]_{-1}^{0} + \left[ \frac{x^2}{2} - \frac{x^4}{4} \right]_{0}^{1}

Evaluate at the bounds: A=(0[1412])+([1214]0)A = \left( 0 - \left[\frac{1}{4} - \frac{1}{2}\right] \right) + \left( \left[\frac{1}{2} - \frac{1}{4}\right] - 0 \right) A=(0[14])+(14)=14+14=12 units2A = \left( 0 - \left[-\frac{1}{4}\right] \right) + \left( \frac{1}{4} \right) = \frac{1}{4} + \frac{1}{4} = \frac{1}{2} \text{ units}^2

Example 2: Finding Area with Horizontal Slices (Integrating w.r.t $y)

Problem: Find the area bounded by x = y^2andandx = 2 - y^2.

[!TIP] Because the equations are already given in terms of y(e.g.,(e.g.,x = f(y)), it is highly efficient to integrate with respect to y using horizontal slices!

Step 1: Find points of intersection. Set the equations equal to each other to find y$-bounds: y2=2y2y^2 = 2 - y^2 2y2=2    y2=1    y=1,y=12y^2 = 2 \implies y^2 = 1 \implies y = -1, y = 1

Step 2: Determine Right and Left curves. Test a yy-value between 1-1 and 1, such as y=0y=0.

  • Left curve: x=(0)2=0x = (0)^2 = 0
  • Right curve: x=2(0)2=2Therightcurveisx=2y2x = 2 - (0)^2 = 2 The right curve is x = 2 - y^2.

Step 3: Set up and evaluate the integral. A=11[(2y2)(y2)]dyA = \int_{-1}^{1} [(2 - y^2) - (y^2)] \,dy A=11(22y2)dyA = \int_{-1}^{1} (2 - 2y^2) \,dy

Find the antiderivative: A=[2y2y33]11A = \left[ 2y - \frac{2y^3}{3} \right]_{-1}^{1}

Evaluate at the bounds: A=(2(1)2(1)33)(2(1)2(1)33)A = \left( 2(1) - \frac{2(1)^3}{3} \right) - \left( 2(-1) - \frac{2(-1)^3}{3} \right) A=(223)(2+23)A = \left( 2 - \frac{2}{3} \right) - \left( -2 + \frac{2}{3} \right) A=(43)(43)=83 units2A = \left( \frac{4}{3} \right) - \left( -\frac{4}{3} \right) = \frac{8}{3} \text{ units}^2


Checkpoint Questions

  1. What geometric shape is fundamentally used to approximate the exact area between two curves before taking the limit? Answer: The rectangle. We use infinitely many, infinitesimally thin "representative rectangles" to sum up the total area.

  2. If f(x)f(x) and $g(x) cross each other twice inside the boundary interval [a, b], how many definite integrals will you need to write to calculate the total bounded area? Answer: Three. The interval must be split at both intersection points, creating three distinct zones where the "Top" and "Bottom" curves swap.

  3. You are looking at a graph bounded by y = \sqrt{x}andandy = x - 2, but finding the area with vertical slices (dx) requires splitting the region because the bottom boundary changes partway through. What is the alternative strategy? Answer: Integrate with respect to y (horizontal slicing). By rearranging the functions to x = y^2andandx = y + 2, the "Right" and "Left" bounds remain perfectly consistent over the whole region, requiring only one integral.


Muddy Points & Cross-Refs

  • Confusing Bounds: A common mistake is using x-values for the bounds when integrating with respect to y. If your integrand has a dy, your limits of integration must be y-values.
  • Absolute Value connection: Conceptually, you are integrating \int |f(x) - g(x)| dx$. Setting up "Top minus Bottom" is the geometric way of evaluating that absolute value.
  • Further Study: This concept directly bridges into "Volumes by Slicing" (the Disk/Washer methods). Mastery of determining Top vs Bottom / Right vs Left curves is crucial for determining radiuses in volume calculations.

Ready to study Calculus II: Integral Calculus - Integration, Series, and Parametric Equations?

Practice tests, flashcards, and all study notes — free, no sign-up needed.

Start Studying — Free