Command Palette

Search for a command to run...

Integrals

Area of a Flat Surface

Basic Concepts of Flat Surface Area

In everyday life, we often need to calculate the area of various flat shapes. For shapes with simple forms like squares or triangles, we can use familiar formulas. But what if we want to calculate the area of a region bounded by irregular curves?

Definite integrals provide an elegant solution to this problem. The basic concept of definite integrals stems from Riemann's approach, where we divide a region into small rectangles and then sum their areas.

Imagine we have a function f(x)f(x) and want to find the area of the region under the curve from x=ax = a to x=bx = b. We can divide the interval [a,b][a, b] into nn small parts with width Δx\Delta x.

A=limni=1nf(xi)ΔxA = \lim_{n \to \infty} \sum_{i=1}^{n} f(x_i) \cdot \Delta x
A=abf(x)dxA = \int_{a}^{b} f(x) \, dx

Determining Area Using Definite Integrals

To calculate the area of a flat surface using definite integrals, we need to understand several systematic steps:

Identify Integration Limits

The first step is to determine the lower and upper limits of integration. These limits indicate the range of xx values that bound the region whose area we want to calculate.

Determine the Integrand Function

The function to be integrated is the function that bounds the region. If the region is above the xx-axis, then the area of the region is abf(x)dx\int_{a}^{b} f(x) \, dx.

Evaluate the Integral

After determining the limits and function, we can evaluate the integral using the fundamental theorem of calculus:

abf(x)dx=F(b)F(a)\int_{a}^{b} f(x) \, dx = F(b) - F(a)

where F(x)F(x) is the antiderivative of f(x)f(x).

Application to Quadratic Functions

Let's apply this concept to a concrete example. Suppose we want to calculate the area of the region bounded by the curve f(x)=x24xf(x) = x^2 - 4x and the xx-axis between x=1x = 1 and x=3x = 3.

Graph of Function f(x)=x24xf(x) = x^2 - 4x
Visualization of the region whose area will be calculated with the help of boundary lines and shaded area.

Now, try to observe the graph above. The function f(x)=x24xf(x) = x^2 - 4x turns out to have negative values in the interval [1,3][1, 3]. We can easily check: when x=1x = 1, we get f(1)=14=3f(1) = 1 - 4 = -3. Similarly, when x=3x = 3, we get f(3)=912=3f(3) = 9 - 12 = -3.

Well, here's where the uniqueness lies! Since we're looking for area which is always positive, we need to use the absolute value of that function. So our integral becomes:

A=13x24xdxA = \int_{1}^{3} |x^2 - 4x| \, dx
A=13(x24x)dxA = \int_{1}^{3} -(x^2 - 4x) \, dx
A=13(x2+4x)dxA = \int_{1}^{3} (-x^2 + 4x) \, dx

Let's solve it step by step:

A=[x33+2x2]13A = \left[-\frac{x^3}{3} + 2x^2\right]_{1}^{3}
A=(273+18)(13+2)A = \left(-\frac{27}{3} + 18\right) - \left(-\frac{1}{3} + 2\right)
A=953=223A = 9 - \frac{5}{3} = \frac{22}{3}

Therefore, the area of that region is 223\frac{22}{3} square units.

Application to Irrational Functions

Now let's try a slightly more challenging example with an irrational function. We will calculate the area of the region under the curve f(x)=xx2+5f(x) = x\sqrt{x^2 + 5} from x=0x = 0 to x=2x = 2.

Graph of Function f(x)=xx2+5f(x) = x\sqrt{x^2 + 5}
Region under the curve whose area will be calculated with interval helper lines.

For this integral, we need to use the substitution technique. Why? Because there's the form xx2+5x\sqrt{x^2 + 5} which is quite complex if we solve it directly.

Let's perform substitution with u=x2+5u = x^2 + 5. From here, we get the differential du=2xdxdu = 2x \, dx, which means xdx=12dux \, dx = \frac{1}{2} du.

Don't forget to change the integration limits too! When x=0x = 0, we get u=5u = 5. When x=2x = 2, we get u=9u = 9.

Now our integral becomes:

A=02xx2+5dxA = \int_{0}^{2} x\sqrt{x^2 + 5} \, dx
A=5912uduA = \int_{5}^{9} \frac{1}{2}\sqrt{u} \, du
A=1259u1/2duA = \frac{1}{2} \int_{5}^{9} u^{1/2} \, du
A=12[23u3/2]59A = \frac{1}{2} \left[\frac{2}{3}u^{3/2}\right]_{5}^{9}
A=13[u3/2]59A = \frac{1}{3}\left[u^{3/2}\right]_{5}^{9}
A=13(2755)A = \frac{1}{3}\left(27 - 5\sqrt{5}\right)

Note that 93/2=(32)3/2=33=279^{3/2} = (3^2)^{3/2} = 3^3 = 27 and 53/2=555^{3/2} = 5 \cdot \sqrt{5}.

When using substitution in definite integrals, don't forget to change the integration limits according to the new substitution variable.

Exercises

  1. Calculate the area of the region bounded by the curve y=x2+1y = x^2 + 1, the xx-axis, and the lines x=0x = 0 and x=2x = 2!

  2. Determine the area of the region under the curve y=1x2+1y = \frac{1}{x^2 + 1} from x=0x = 0 to x=1x = 1!

  3. Calculate the area of the region bounded by the curve y=2xx2y = 2x - x^2 and the xx-axis!

Answer Key

  1. First problem with function y=x2+1y = x^2 + 1

    Since this function is always positive, we can directly set up the integral:

    A=02(x2+1)dxA = \int_{0}^{2} (x^2 + 1) \, dx

    After we integrate and evaluate, we obtain:

    A=[x33+x]02A = \left[\frac{x^3}{3} + x\right]_{0}^{2}
    A=(83+2)0=143A = \left(\frac{8}{3} + 2\right) - 0 = \frac{14}{3}

    Therefore, the area of that region is 143\frac{14}{3} square units.

  2. Second problem with rational function

    For this integral, we need to remember that the antiderivative of 1x2+1\frac{1}{x^2 + 1} is arctan(x)\arctan(x).

    A=011x2+1dxA = \int_{0}^{1} \frac{1}{x^2 + 1} \, dx
    A=[arctan(x)]01A = [\arctan(x)]_{0}^{1}
    A=arctan(1)arctan(0)=π4A = \arctan(1) - \arctan(0) = \frac{\pi}{4}

    The area of that region is π4\frac{\pi}{4} square units.

  3. Third problem with parabola

    First, let's find where the curve intersects the xx-axis:

    2xx2=0x(2x)=02x - x^2 = 0 \Rightarrow x(2 - x) = 0

    So the intersection points are at x=0x = 0 and x=2x = 2. Since this function is positive between these two points, we can directly integrate:

    A=02(2xx2)dxA = \int_{0}^{2} (2x - x^2) \, dx
    A=[x2x33]02A = \left[x^2 - \frac{x^3}{3}\right]_{0}^{2}
    A=483=43A = 4 - \frac{8}{3} = \frac{4}{3}

    The area of that region is 43\frac{4}{3} square units.