# Nakafa Framework: LLM
URL: /en/subject/high-school/11/mathematics/function-modeling/square-root-function
Source: https://raw.githubusercontent.com/nakafaai/nakafa.com/refs/heads/main/packages/contents/subject/high-school/11/mathematics/function-modeling/square-root-function/en.mdx
Output docs content for large language models.
---
import { LineEquation } from "@repo/design-system/components/contents/line-equation";
import { getColor } from "@repo/design-system/lib/color";
export const metadata = {
  title: "Square Root Function",
  description: "Explore square root functions with interactive graphs, domain/range analysis, transformations, and equations. Master graphing techniques through rocket height problems.",
  authors: [{ name: "Nabil Akbarazzima Fatih" }],
  date: "05/18/2025",
  subject: "Functions and Their Modeling",
};
## Definition of Square Root Function
A square root function is a type of function that involves square root operations. This function has the general form  where  is the function inside the square root sign.
The simplest form of a square root function is . This function takes an input value  and produces the square root of that value.
### Characteristics of Square Root Functions
Square root functions have several special characteristics that distinguish them from other functions:
1. **Limited domain**: Since the square root of negative numbers is not defined in real numbers, the domain of square root functions is limited to values that make the expression inside the square root non-negative.
2. **Curved graph**: The graph of a square root function is a curve that starts from a certain point and continues to rise at an increasingly slower rate.
3. **Always non-negative values**: The result of a square root function is always non-negative (≥ 0).
## Domain and Range of Square Root Functions
To understand square root functions well, it's important to determine their domain and range.
### Determining Domain
The domain of a square root function  is all values of  that make .
**Steps to determine domain:**
| Step | Explanation                                             | Example:                   |
| ---- | ------------------------------------------------------- | ----------------------------------------------------------------- |
| 1    | Identify the expression inside the square root          |                                   |
| 2    | Create the inequality  |                                   |
| 3    | Solve the inequality                                    |                                     |
| 4    | Write the domain                                        |  |
### Determining Range
The range of a square root function is all possible output values that the function can produce.
For the function , since square roots always produce non-negative values, then:
## Graph of Basic Square Root Function
Let's visualize the basic square root function .
      Basic Square Root Function: 
    >
  }
  description="The graph of the basic square root function starts from point (0,0) and rises at an increasingly slower rate."
  data={[
    {
      points: Array.from({ length: 21 }, (_, i) => {
        const x = i * 0.5;
        return { x, y: Math.sqrt(x), z: 0 };
      }),
      color: getColor("PURPLE"),
      showPoints: false,
      labels: [{ text: "f(x) = √x", at: 5, offset: [0, 1, 0] }],
    },
  ]}
  showZAxis={false}
  cameraPosition={[10, 6, 10]}
/>
## Transformations of Square Root Functions
Square root functions can undergo various transformations that change the shape and position of their graphs.
### Horizontal Translation
The function  shifts the graph of the basic square root function by  units to the right (if ) or to the left (if ).
      Comparison of ,{" "}
      , and{" "}
      .
    >
  }
  data={[
    {
      points: Array.from({ length: 21 }, (_, i) => {
        const x = i * 0.5;
        return { x, y: Math.sqrt(x), z: 0 };
      }),
      color: getColor("PURPLE"),
      showPoints: false,
      labels: [{ text: "√x", at: 5, offset: [0, -0.5, 0] }],
    },
    {
      points: Array.from({ length: 21 }, (_, i) => {
        const x = 2 + i * 0.5;
        return { x, y: Math.sqrt(x - 2), z: 0 };
      }),
      color: getColor("ORANGE"),
      showPoints: false,
      labels: [{ text: "√(x-2)", at: 10, offset: [0, -0.5, 0] }],
    },
    {
      points: Array.from({ length: 21 }, (_, i) => {
        const x = -2 + i * 0.5;
        return { x, y: Math.sqrt(x + 2), z: 0 };
      }),
      color: getColor("CYAN"),
      showPoints: false,
      labels: [{ text: "√(x+2)", at: 10, offset: [0, 0.5, 0] }],
    },
  ]}
  showZAxis={false}
  cameraPosition={[10, 6, 10]}
/>
### Vertical Translation
The function  shifts the graph of the basic square root function by  units upward (if ) or downward (if ).
| Function                                  | Transformation         | Domain                         | Range                           |
| ----------------------------------------- | ---------------------- | ------------------------------ | ------------------------------- |
|      | Basic function         |  |   |
|  | Shift 2 units upward   |  |   |
|  | Shift 3 units downward |  |  |
### Dilation
The function  with  causes vertical dilation on the graph of the square root function.
      Comparison of ,{" "}
      , and{" "}
      .
    >
  }
  data={[
    {
      points: Array.from({ length: 21 }, (_, i) => {
        const x = i * 0.5;
        return { x, y: Math.sqrt(x), z: 0 };
      }),
      color: getColor("PURPLE"),
      showPoints: false,
      labels: [{ text: "√x", at: 5, offset: [0, -0.5, 0] }],
    },
    {
      points: Array.from({ length: 21 }, (_, i) => {
        const x = i * 0.5;
        return { x, y: 2 * Math.sqrt(x), z: 0 };
      }),
      color: getColor("EMERALD"),
      showPoints: false,
      labels: [{ text: "2√x", at: 10, offset: [0, -0.5, 0] }],
    },
    {
      points: Array.from({ length: 21 }, (_, i) => {
        const x = i * 0.5;
        return { x, y: 0.5 * Math.sqrt(x), z: 0 };
      }),
      color: getColor("AMBER"),
      showPoints: false,
      labels: [{ text: "½√x", at: 10, offset: [0, 0.5, 0] }],
    },
  ]}
  showZAxis={false}
  cameraPosition={[10, 6, 10]}
/>
## General Form of Square Root Functions
The general form of a square root function that undergoes transformations is:
Where:
-  determines vertical dilation and reflection (if 
  )
-  determines horizontal dilation
-  determines horizontal translation
-  determines vertical translation
**Steps to draw the graph:**
| Step | Action                    | Example:                                           |
| ---- | ------------------------- | ---------------------------------------------------------------------------------------------- |
| 1    | Determine starting point  | , , Point: (1, 3) |
| 2    | Determine domain          |                                           |
| 3    | Create value table        | Choose several values                                            |
| 4    | Calculate function values | For :                 |
| 5    | Plot points               | Plot (1,3), (2,5), (5,7), etc.                                                                 |
| 6    | Connect points            | Create a smooth curve through the points                                                       |
## Square Root Function Equations
To solve equations involving square root functions, follow these steps:
| Step | Explanation             | Example:          |
| ---- | ----------------------- | ------------------------------------------------------ |
| 1    | Isolate the square root | Already isolated                                       |
| 2    | Square both sides       |             |
| 3    | Simplify                |                         |
| 4    | Solve                   |        |
| 5    | Verify                  |  ✓ |
## Square Root Function Inequalities
To solve square root function inequalities, pay attention to the domain and properties of square root functions.
**Example:** Solve 
  
  
  
  
Combining with the domain condition: 
## Practice Problems
1. Determine the domain and range of the function 
2. Draw the graph of the function 
3. Solve the equation 
4. A rocket is launched vertically. Its height after  seconds is given by  meters. What is the height of the rocket after 9 seconds?
5. Determine the value of  that satisfies 
### Answer Key
1. Domain: 
   Range: 
2. **Drawing the graph** 
   **Steps to draw:**
   | Step | Explanation              | Details for                                                                                                    |
   | ---- | ------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------- |
   | 1    | Identify transformations |  (reflection across x-axis),  (shift 4 units left),  (shift 2 units up) |
   | 2    | Determine starting point | , , Starting point: (-4, 2)                                         |
   | 3    | Determine domain         |                                                                                                      |
   | 4    | Determine range          | Since , the graph decreases from the starting point, so                                      |
   | 5    | Create value table       | Choose values                                                                                                               |
   **Value table:**
   |  |  |  |  |  |
   | ----------------------- | ------------------------- | -------------------------------- | --------------------------------- | -------------------------------------------- |
   | -4                      | 0                         | 0                                | 0                                 | 2                                            |
   | -3                      | 1                         | 1                                | -1                                | 1                                            |
   | 0                       | 4                         | 2                                | -2                                | 0                                            |
   | 5                       | 9                         | 3                                | -3                                | -1                                           |
   | 12                      | 16                        | 4                                | -4                                | -2                                           |
   
         Graph of 
       >
     }
     description="Graph of a square root function that undergoes reflection across the x-axis and translation."
     data={[
       {
         points: Array.from({ length: 21 }, (_, i) => {
           const x = -4 + i * 0.8;
           const y = -Math.sqrt(x + 4) + 2;
           return { x, y, z: 0 };
         }),
         color: getColor("VIOLET"),
         showPoints: false,
         labels: [
           { text: "g(x) = -√(x+4) + 2", at: 8, offset: [0, -1, 0] },
           { text: "(-4, 2)", at: 0, offset: [0.5, 0.5, 0] },
         ],
       },
     ]}
     showZAxis={false}
     cameraPosition={[10, 6, 10]}
   />
3.  (Let  and 
   )
4.  meters
5.  (from  and
   condition )