# Nakafa Framework: LLM URL: /en/subject/high-school/10/mathematics/quadratic-function/quadratic-function-characteristics Source: https://raw.githubusercontent.com/nakafaai/nakafa.com/refs/heads/main/packages/contents/subject/high-school/10/mathematics/quadratic-function/quadratic-function-characteristics/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: "Characteristics of Quadratic Functions", description: "Learn the key characteristics of quadratic functions, including vertex, axis of symmetry, and intercepts, with clear explanations and illustrative examples.", authors: [{ name: "Nabil Akbarazzima Fatih" }], date: "04/19/2025", subject: "Quadratic Functions", }; ## Shape of Quadratic Function Graphs The graph of a quadratic function always forms a parabola. This parabola can open upward or downward, depending on the value of the coefficient . ## Influence of Coefficient a on Graph Shape ### When a > 0 If , the graph of the quadratic function will open upward. This means the graph has a minimum point. Examples of functions with : - (the simplest function with ) - (example with )
Quadratic Function Graph with } description="Graph opens upward and has a minimum point." cameraPosition={[5, 5, 12]} data={[ { points: Array.from({ length: 7 }, (_, i) => { const x = i - 3; // x values from -3 to 3 return { x, y: x * x, z: 0 }; }), color: getColor("INDIGO"), labels: [ { text: "f(x) = x²", at: 5, offset: [1, -1, 0], }, ], }, ]} />
### When a < 0 If , the graph of the quadratic function will open downward. This means the graph has a maximum point. Examples of functions with : - with - with
Quadratic Function Graph with } description="Graph opens downward and has a maximum point." cameraPosition={[2, 2, 12]} data={[ { points: Array.from({ length: 7 }, (_, i) => { const x = i - 3; // x values from -3 to 3 return { x, y: -x * x, z: 0 }; }), color: getColor("ROSE"), labels: [ { text: "f(x) = -x²", at: 4, offset: [2, 0, 0], }, ], }, ]} />
### Why Can't a = 0? When , the function form becomes . This is no longer a quadratic function, but a linear function. A quadratic function must have so that the highest power of the variable is 2. ## Important Characteristics of Quadratic Functions ### Vertex The vertex is the highest point (if ) or the lowest point (if ) on the graph. The coordinates of the vertex are expressed as . ### Axis of Symmetry The axis of symmetry is a vertical line that divides the parabola into two symmetrical parts. The equation of the axis of symmetry is . ### Y-Intercept The y-intercept is obtained when . Its value is . ### X-Intercepts The x-intercepts are obtained when , i.e., when . The solutions can be found using the formula: ## Steps to Graph a Quadratic Function 1. Determine whether the parabola opens upward () or downward (). 2. Calculate the coordinates of the vertex . 3. Calculate the y-intercept: . 4. Calculate the x-intercepts (if any). 5. Choose several other x-values and calculate their corresponding y-values. 6. Plot all points in the coordinate system. 7. Connect the points with a parabolic curve. ## Drawing Quadratic Function Graphs ### f(x) = x² - 2x - 3 Let's graph the function : 1. Coefficient , so the parabola opens upward. 2. Vertex:
So the vertex is at (1, -4). 3. Y-intercept: So the y-intercept is at (0, -3). 4. X-intercepts: or Using the quadratic formula:
So the x-intercepts are at (-1, 0) and (3, 0). 5. Let's calculate some additional points:
Graph of } description={ <> Parabola opens upward with vertex at and x-intercepts at and{" "} . } cameraPosition={[2, 1, 15]} data={[ { points: Array.from({ length: 7 }, (_, i) => { const x = i - 2; // x values from -2 to 4 return { x, y: x * x - 2 * x - 3, z: 0 }; }), color: getColor("TEAL"), labels: [ { text: "f(x) = x² - 2x - 3", at: 5, offset: [3, 2, 0], }, { text: "Vertex (1, -4)", at: 3, offset: [0, -0.5, 0], }, ], }, ]} />
### f(x) = -x² Let's graph the function : 1. Coefficient , so the parabola opens downward. 2. Vertex:
So the vertex is at (0, 0). 3. Y-intercept: So the y-intercept is at (0, 0). 4. X-intercepts: or
So the x-intercept is at (0, 0). 5. Let's calculate some additional points:
Graph of } description={ <> Parabola opens downward with vertex at . } cameraPosition={[2, 2, 12]} data={[ { points: Array.from({ length: 7 }, (_, i) => { const x = i - 3; // x values from -3 to 3 return { x, y: -x * x, z: 0 }; }), color: getColor("ORANGE"), labels: [ { text: "f(x) = -x²", at: 4, offset: [2, 0, 0], }, { text: "Vertex (0, 0)", at: 3, offset: [0, 0.5, 0], }, ], }, ]} />
## Table of Quadratic Function Graph Shapes | Quadratic Function | Graph Shape | | --------------------------- | -------------------------------------------- | | | Parabola opens upward, has a minimum point | | | Parabola opens downward, has a maximum point |