# Nakafa Framework: LLM
URL: https://nakafa.com/en/subject/high-school/12/mathematics/integral/area-of-a-flat-surface
Source: https://raw.githubusercontent.com/nakafaai/nakafa.com/refs/heads/main/packages/contents/subject/high-school/12/mathematics/integral/area-of-a-flat-surface/en.mdx
Output docs content for large language models.
---
export const metadata = {
  title: "Area of a Flat Surface",
  description: "Calculate flat surface areas using definite integrals with step-by-step solutions. Master quadratic and irrational functions through practical examples.",
  authors: [{ name: "Nabil Akbarazzima Fatih" }],
  date: "05/26/2025",
  subject: "Integrals",
};
import { LineEquation } from "@repo/design-system/components/contents/line-equation";
import { getColor } from "@repo/design-system/lib/color";
## 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  and want to find the area of the region under the curve from  to . We can divide the interval  into  small parts with width .
## 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  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 -axis, then the area of the region is .
### Evaluate the Integral
After determining the limits and function, we can evaluate the integral using the fundamental theorem of calculus:
where  is the antiderivative of .
## 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  and the -axis between  and .
Graph of Function >}
  description="Visualization of the region whose area will be calculated with the help of boundary lines and shaded area."
  showZAxis={false}
  cameraPosition={[0, 0, 12]}
  data={[
    {
      points: Array.from({ length: 31 }, (_, i) => {
        const x = 0 + (i * 4) / 30;
        const y = x * x - 4 * x;
        return { x, y, z: 0 };
      }),
      color: getColor("PURPLE"),
      smooth: true,
      showPoints: false,
      labels: [
        { text: "f(x) = x² - 4x", at: 25, offset: [0, 3, 0] }
      ]
    },
    {
      points: [
        { x: 1, y: 0, z: 0 },
        { x: 1, y: -3, z: 0 }
      ],
      color: getColor("ORANGE"),
      showPoints: false,
      labels: [
        { text: "x = 1", at: 0, offset: [0.3, -1.5, 0] }
      ]
    },
    {
      points: [
        { x: 3, y: 0, z: 0 },
        { x: 3, y: -3, z: 0 }
      ],
      color: getColor("ORANGE"),
      showPoints: false,
      labels: [
        { text: "x = 3", at: 0, offset: [0.3, -1.5, 0] }
      ]
    },
    {
      points: [
        { x: 1, y: -3, z: 0 },
        { x: 3, y: -3, z: 0 }
      ],
      color: getColor("AMBER"),
      showPoints: false,
      lineWidth: 1,
      labels: [
        { text: "Area Region", at: 0, offset: [0, -1.5, 0] }
      ]
    }
  ]}
/>
Now, try to observe the graph above. The function  turns out to have negative values in the interval . We can easily check: when , we get . Similarly, when , we get .
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:
Let's solve it step by step:
Therefore, the area of that region is  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  from  to .
Graph of Function >}
  description="Region under the curve whose area will be calculated with interval helper lines."
  showZAxis={false}
  data={[
    {
      points: Array.from({ length: 31 }, (_, i) => {
        const x = 0 + (i * 2) / 30;
        const y = x * Math.sqrt(x * x + 5);
        return { x, y, z: 0 };
      }),
      color: getColor("EMERALD"),
      smooth: true,
      showPoints: false,
      labels: [
        { text: "f(x) = x√(x² + 5)", at: 25, offset: [-1, -2, 0] }
      ]
    },
    {
      points: [
        { x: 0, y: 0, z: 0 },
        { x: 0, y: 0, z: 0 }
      ],
      color: getColor("VIOLET"),
      showPoints: true,
      labels: [
        { text: "x = 0", at: 0, offset: [-0.5, -0.5, 0] }
      ]
    },
    {
      points: [
        { x: 2, y: 0, z: 0 },
        { x: 2, y: 6, z: 0 }
      ],
      color: getColor("VIOLET"),
      showPoints: false,
      labels: [
        { text: "x = 2", at: 0, offset: [0.3, -0.5, 0] }
      ]
    },
    {
      points: [
        { x: 2, y: 6, z: 0 },
        { x: 2, y: 6, z: 0 }
      ],
      color: getColor("VIOLET"),
      showPoints: true,
      labels: [
        { text: "f(2) = 6", at: 0, offset: [1.5, -1, 0] }
      ]
    }
  ]}
/>
For this integral, we need to use the **substitution technique**. Why? Because there's the form  which is quite complex if we solve it directly.
Let's perform substitution with . From here, we get the differential , which means .
Don't forget to change the integration limits too! When , we get . When , we get .
Now our integral becomes:
Note that  and .
> 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 , the -axis, and the lines  and !
2. Determine the area of the region under the curve  from  to !
3. Calculate the area of the region bounded by the curve  and the -axis!
### Answer Key
1. **First problem with function **
   Since this function is always positive, we can directly set up the integral:
   
   
   After we integrate and evaluate, we obtain:
   
   
   
   
   
   Therefore, the area of that region is  square units.
2. **Second problem with rational function**
   For this integral, we need to remember that the antiderivative of  is .
   
   
   
   
   
   The area of that region is  square units.
3. **Third problem with parabola**
   First, let's find where the curve intersects the -axis:
   
   
   So the intersection points are at  and . Since this function is positive between these two points, we can directly integrate:
   
   
   
   
   
   
   The area of that region is  square units.