Subjects

Knowunity AI

Creator Program

Open the App

Subjects

Pre-CalculusPre-Calculus67 views·Updated Aug 1, 2026·6 pages

Understanding the Twelve Basic Functions

J
Jasper Ngokwere@jasperngokwere_eenm

Ready to master the twelve basic functions that are essential...

1
of 6
Twelve basic functions  – page 1

The Twelve Basic Functions

Ever wondered why some functions are considered "basic" in math? These twelve functions form the foundation of more complex mathematics. Let's explore their essential characteristics!

Each function has specific properties that make it unique. For the identity function f(x)=xf(x) = x, the input equals the output, creating a straight line through the origin with domain and range of all real numbers. The squaring function f(x)=x2f(x) = x² creates that familiar U-shaped parabola, while the exponential function f(x)=exf(x) = eˣ grows increasingly rapidly.

Some functions have interesting behaviors at their edges. The natural logarithm function (lnxx) has a vertical asymptote at x = 0, meaning it approaches negative infinity as x approaches zero. The reciprocal function 1/x1/x has both horizontal and vertical asymptotes, creating a hyperbola.

Functions like sine and cosine oscillate between -1 and 1, creating those wave patterns you see everywhere from sound waves to electricity. The greatest integer function creates a staircase pattern because it rounds down to the nearest integer.

💡 Quick Tip: Pay attention to each function's domain, range, and symmetry. These properties will help you recognize the functions and sketch them quickly on tests!

2
of 6
Twelve basic functions  – page 2

Greatest Integer Function & Building Functions

The Greatest Integer Function is a bit tricky but super useful! It rounds numbers down to the nearest integer. Your textbook notation is intxx, but you might also see it as [x] in other materials.

Think of the Greatest Integer Function as always rounding down, no matter how close a number is to the next integer. For example, int(3.999) = 3, and int(4.001) = 4. With negative numbers, you still round down, so int2.1-2.1 = -3 not2not -2. When graphed, this function creates a staircase pattern with open circles at one end of each "step."

Building composite functions means plugging one function into another. If fxx = 2x-3 and you're asked to find f(2), simply replace x with 2: f(2) = 2(2)-3 = 4-3 = 1. For something like f3x13x-1, substitute 3x-1 wherever you see x: f3x13x-1 = 23x13x-1-3 = 6x-2-3 = 6x-5.

When working with two different functions like fzz = -z + 4 and hzz = 2z, finding f(h(3)) means you first calculate h(3) = 2(3) = 6, then find f(6) = -6 + 4 = -2. We write this as (f∘h)(3) = -2, which is read as "f composed with h of 3."

🔑 Remember: Always work from inside the parentheses outward! The innermost function gets evaluated first, then its result becomes the input for the outer function.

3
of 6
Twelve basic functions  – page 3

Composition of Functions

Composition functions might look intimidating, but they're actually just functions working together! When we write (f∘g)xx, we're simply saying "apply function g first, then apply function f to that result."

Let's see how this works. If fxx = x + 1 and gxx = x², then f(gxx) means f(x²) = x² + 1. We've just created a new function by composition! Similarly, if fxx = 3x + 5 and gxx = x - 2, then (f∘g)xx = f(gxx) = fx2x-2 = 3x2x-2 + 5 = 3x - 6 + 5 = 3x - 1.

Notice that (f∘g)xx and (g∘f)xx usually give different results. For example, with hxx = x² - 1 and pxx = 2x, we get (h∘p)xx = h(pxx) = h(2x) = (2x)² - 1 = 4x² - 1, while (p∘h)xx = p(hxx) = px21x² - 1 = 2x21x² - 1 = 2x² - 2. The order matters!

When finding domains of composite functions, you need to consider two things: the domain of the inner function AND what values from that domain will work in the outer function. This gets especially important with fractions (where denominators can't be zero) and square roots (where expressions under the radical can't be negative).

🧠 Pro Tip: To find the domain of f(gxx), first identify what values of x work in gxx, then check which of those outputs from g will work as inputs for fxx. The final domain is the intersection of these constraints.

4
of 6
Twelve basic functions  – page 4

Domains and Decomposing Functions

Finding domains of composite functions requires careful attention to restrictions. Different types of functions have different domain limitations that you need to watch for.

Polynomial functions likex2+3x+1like x² + 3x + 1 have domains of all real numbers, but fractions require that denominators never equal zero. Square roots need whatever is inside the radical to be non-negative. When functions are combined, you need to check all restrictions from both functions.

For example, if fxx = x² + 1 and gxx = √x, then the domain of gxx is [0,∞) because you can't take the square root of a negative number. When finding f(gxx) = (√x)² + 1 = x + 1, the domain is still [0,∞) because that's what gxx requires as input.

Decomposing functions means working backward from a composite function to find its components. When given f(gxx), you need to identify what the "mother function" fxx is, and then determine what was plugged into it (gxx). For example, if f(gxx) = √x - 1, the mother function might be fxx = √x, and gxx = x - 1.

There's often more than one correct way to decompose a function. For f(gxx) = 2/3x+13x+1, you might identify fxx = 2/x as the mother function, making gxx = 3x+1. This is like detective work - you're looking for clues about what operations were performed in what order.

💡 Quick Check: To verify your decomposition, plug gxx into fxx and make sure you get the original composite function. If fxx = 2/x and gxx = 3x+1, then f(gxx) = 2/3x+13x+1, which matches!

5
of 6
Twelve basic functions  – page 5

Inverse Functions

Inverse functions essentially "undo" what the original function does. If a function takes x to y, its inverse takes y back to x. But not all functions have inverses!

How can you tell if a function has an inverse? Use the horizontal line test. If any horizontal line intersects your function's graph more than once, the function doesn't have an inverse. This makes sense because an inverse function needs to "know" exactly which x-value to return to, with no ambiguity.

A one-to-one function passes both the vertical line test (making it a function) and the horizontal line test (meaning it has an inverse). Functions that fail the horizontal line test, like y = x², don't have inverses because multiple inputs give the same output (like both 2 and -2 give 4).

To find an inverse algebraically, follow these steps: Replace fxx with y, swap x and y, solve for y, and then replace y with f⁻¹xx. For example, to find the inverse of fxx = x+2x+2/x:

  1. Write y = x+2x+2/x
  2. Multiply both sides by x: xy = x+2
  3. Rearrange: xy - x = 2
  4. Factor out x: xy1y-1 = 2
  5. Solve for x: x = 2/y1y-1
  6. Replace y with x: f⁻¹xx = 2/x1x-1

Power Move: When graphing a function and its inverse, they're always reflections of each other across the line y = x. This is a great way to check if you've found the correct inverse!

6
of 6
Twelve basic functions  – page 6

Practice with Composite Functions

Now it's time to put your skills to work with some practice problems! Working through these examples will help cement your understanding of composite functions.

When computing composite functions like fg(3)g(-3), always work from the inside out. First calculate g3-3 = 33-3 = -9, then find f9-9 = 29-9 - 1 = -18 - 1 = -19. For more complex compositions like f(g(h(2))), work step by step: h(2) = 2² + 1 = 5, then g(5) = 3(5) = 15, and finally f(15) = 2(15) - 1 = 30 - 1 = 29.

Composite functions can also involve expressions rather than specific values. For fx+1x + 1, substitute x + 1 wherever you see x in the original function: fx+1x + 1 = 2x+1x + 1 - 1 = 2x + 2 - 1 = 2x + 1. Similarly, hx2x - 2 = x2x - 2² + 1 = x² - 4x + 4 + 1 = x² - 4x + 5.

When finding composite functions with algebraic expressions like f(gxx), substitute the entire gxx expression wherever x appears in fxx. If fxx = -3x + 7 and gxx = 2x² - 8, then f(gxx) = -32x282x² - 8 + 7 = -6x² + 24 + 7 = -6x² + 31.

🏆 Challenge Yourself: Try making up your own composite function problems and solving them. The more practice you get, the more confident you'll feel on tests!

We thought you’d never ask...

Our AI companion is specifically built for the needs of students. Based on the millions of content pieces we have on the platform we can provide truly meaningful and relevant answers to students. But its not only about answers, the companion is even more about guiding students through their daily learning challenges, with personalised study plans, quizzes or content pieces in the chat and 100% personalisation based on the students skills and developments.

You can download the app in the Google Play Store and in the Apple App Store.

That's right! Enjoy free access to study content, connect with fellow students, and get instant help – all at your fingertips.

Most popular content in Pre-Calculus

9

Most popular content

9
I
SAT®SAT®

Introduction to SAT Error Pattern Analysis

Practice identifying common reasoning traps and misinterpretations in SAT reading and math stimuli to understand why distractors are plausible.

9th2,2050
C
BiologyBiology

Cell Organelles

This Quiz Is To Test Your Knowledge Of Cell Organelles And Their Functions Inside The Cell. It Can Also Be A Study Guide To Remember Them Better.

6th6950
F
AP PsychologyAP Psychology

Foundations of Ethical Guidelines in Research

Practice the core principles of the APA ethical code including informed consent, debriefing, and the role of Institutional Review Boards.

9th1,3370
B
BiologyBiology

biology cell organelles and functions

Do you know the cell organelles and their functions?

9th4800
I
SAT®SAT®

Introduction to SAT Scoring and Scaled Results

Practice interpreting how raw scores are converted to the 1600-point scale and identifying the composition of section scores.

9th8610
F
AP PsychologyAP Psychology

Foundations of Research Design and Methodology

Practice distinguishing between different research methods including experiments, correlations, and case studies while identifying key variables.

9th6670
M
MathematicsMathematics

Math Made Easy: Essential Concepts for Grade 7

Master key math concepts with this comprehensive flashcard set designed specifically for 7th graders. Boost your understanding and ace your exams!

7th7561
M
BiologyBiology

Mitosis and Cell Division Flashcards

These flashcards cover the basics of mitosis and why cell division occurs in the first place.

9th3470
H
AP PsychologyAP Psychology

Historical Foundations of Psychology

Practice distinguishing between structuralism, functionalism, and the early philosophical roots of psychological science.

9th1,0940

Students love us — and so will you.

4.6/5App Store
4.7/5Google Play

The app is very easy to use and well designed. I have found everything I was looking for so far and have been able to learn a lot from the presentations! I will definitely use the app for a class assignment! And of course it also helps a lot as an inspiration.

Stefan SiOS user

This app is really great. There are so many study notes and help [...]. My problem subject is French, for example, and the app has so many options for help. Thanks to this app, I have improved my French. I would recommend it to anyone.

Samantha KlichAndroid user

Wow, I am really amazed. I just tried the app because I've seen it advertised many times and was absolutely stunned. This app is THE HELP you want for school and above all, it offers so many things, such as workouts and fact sheets, which have been VERY helpful to me personally.

AnnaiOS user

Pre-CalculusPre-Calculus67 views·Updated Aug 1, 2026·6 pages

Understanding the Twelve Basic Functions

J
Jasper Ngokwere@jasperngokwere_eenm

Ready to master the twelve basic functions that are essential for Pre-Calculus? This guide breaks down each function's key characteristics, shows you how to work with composite functions, and explains how to find inverse functions. These concepts are crucial for...

1
of 6
Twelve basic functions  – page 1

Sign up to see the content. It's free!

  • Access to all documents
  • Improve your grades
  • Join milions of students

The Twelve Basic Functions

Ever wondered why some functions are considered "basic" in math? These twelve functions form the foundation of more complex mathematics. Let's explore their essential characteristics!

Each function has specific properties that make it unique. For the identity function f(x)=xf(x) = x, the input equals the output, creating a straight line through the origin with domain and range of all real numbers. The squaring function f(x)=x2f(x) = x² creates that familiar U-shaped parabola, while the exponential function f(x)=exf(x) = eˣ grows increasingly rapidly.

Some functions have interesting behaviors at their edges. The natural logarithm function (lnxx) has a vertical asymptote at x = 0, meaning it approaches negative infinity as x approaches zero. The reciprocal function 1/x1/x has both horizontal and vertical asymptotes, creating a hyperbola.

Functions like sine and cosine oscillate between -1 and 1, creating those wave patterns you see everywhere from sound waves to electricity. The greatest integer function creates a staircase pattern because it rounds down to the nearest integer.

💡 Quick Tip: Pay attention to each function's domain, range, and symmetry. These properties will help you recognize the functions and sketch them quickly on tests!

2
of 6
Twelve basic functions  – page 2

Sign up to see the content. It's free!

  • Access to all documents
  • Improve your grades
  • Join milions of students

Greatest Integer Function & Building Functions

The Greatest Integer Function is a bit tricky but super useful! It rounds numbers down to the nearest integer. Your textbook notation is intxx, but you might also see it as [x] in other materials.

Think of the Greatest Integer Function as always rounding down, no matter how close a number is to the next integer. For example, int(3.999) = 3, and int(4.001) = 4. With negative numbers, you still round down, so int2.1-2.1 = -3 not2not -2. When graphed, this function creates a staircase pattern with open circles at one end of each "step."

Building composite functions means plugging one function into another. If fxx = 2x-3 and you're asked to find f(2), simply replace x with 2: f(2) = 2(2)-3 = 4-3 = 1. For something like f3x13x-1, substitute 3x-1 wherever you see x: f3x13x-1 = 23x13x-1-3 = 6x-2-3 = 6x-5.

When working with two different functions like fzz = -z + 4 and hzz = 2z, finding f(h(3)) means you first calculate h(3) = 2(3) = 6, then find f(6) = -6 + 4 = -2. We write this as (f∘h)(3) = -2, which is read as "f composed with h of 3."

🔑 Remember: Always work from inside the parentheses outward! The innermost function gets evaluated first, then its result becomes the input for the outer function.

3
of 6
Twelve basic functions  – page 3

Sign up to see the content. It's free!

  • Access to all documents
  • Improve your grades
  • Join milions of students

Composition of Functions

Composition functions might look intimidating, but they're actually just functions working together! When we write (f∘g)xx, we're simply saying "apply function g first, then apply function f to that result."

Let's see how this works. If fxx = x + 1 and gxx = x², then f(gxx) means f(x²) = x² + 1. We've just created a new function by composition! Similarly, if fxx = 3x + 5 and gxx = x - 2, then (f∘g)xx = f(gxx) = fx2x-2 = 3x2x-2 + 5 = 3x - 6 + 5 = 3x - 1.

Notice that (f∘g)xx and (g∘f)xx usually give different results. For example, with hxx = x² - 1 and pxx = 2x, we get (h∘p)xx = h(pxx) = h(2x) = (2x)² - 1 = 4x² - 1, while (p∘h)xx = p(hxx) = px21x² - 1 = 2x21x² - 1 = 2x² - 2. The order matters!

When finding domains of composite functions, you need to consider two things: the domain of the inner function AND what values from that domain will work in the outer function. This gets especially important with fractions (where denominators can't be zero) and square roots (where expressions under the radical can't be negative).

🧠 Pro Tip: To find the domain of f(gxx), first identify what values of x work in gxx, then check which of those outputs from g will work as inputs for fxx. The final domain is the intersection of these constraints.

4
of 6
Twelve basic functions  – page 4

Sign up to see the content. It's free!

  • Access to all documents
  • Improve your grades
  • Join milions of students

Domains and Decomposing Functions

Finding domains of composite functions requires careful attention to restrictions. Different types of functions have different domain limitations that you need to watch for.

Polynomial functions likex2+3x+1like x² + 3x + 1 have domains of all real numbers, but fractions require that denominators never equal zero. Square roots need whatever is inside the radical to be non-negative. When functions are combined, you need to check all restrictions from both functions.

For example, if fxx = x² + 1 and gxx = √x, then the domain of gxx is [0,∞) because you can't take the square root of a negative number. When finding f(gxx) = (√x)² + 1 = x + 1, the domain is still [0,∞) because that's what gxx requires as input.

Decomposing functions means working backward from a composite function to find its components. When given f(gxx), you need to identify what the "mother function" fxx is, and then determine what was plugged into it (gxx). For example, if f(gxx) = √x - 1, the mother function might be fxx = √x, and gxx = x - 1.

There's often more than one correct way to decompose a function. For f(gxx) = 2/3x+13x+1, you might identify fxx = 2/x as the mother function, making gxx = 3x+1. This is like detective work - you're looking for clues about what operations were performed in what order.

💡 Quick Check: To verify your decomposition, plug gxx into fxx and make sure you get the original composite function. If fxx = 2/x and gxx = 3x+1, then f(gxx) = 2/3x+13x+1, which matches!

5
of 6
Twelve basic functions  – page 5

Sign up to see the content. It's free!

  • Access to all documents
  • Improve your grades
  • Join milions of students

Inverse Functions

Inverse functions essentially "undo" what the original function does. If a function takes x to y, its inverse takes y back to x. But not all functions have inverses!

How can you tell if a function has an inverse? Use the horizontal line test. If any horizontal line intersects your function's graph more than once, the function doesn't have an inverse. This makes sense because an inverse function needs to "know" exactly which x-value to return to, with no ambiguity.

A one-to-one function passes both the vertical line test (making it a function) and the horizontal line test (meaning it has an inverse). Functions that fail the horizontal line test, like y = x², don't have inverses because multiple inputs give the same output (like both 2 and -2 give 4).

To find an inverse algebraically, follow these steps: Replace fxx with y, swap x and y, solve for y, and then replace y with f⁻¹xx. For example, to find the inverse of fxx = x+2x+2/x:

  1. Write y = x+2x+2/x
  2. Multiply both sides by x: xy = x+2
  3. Rearrange: xy - x = 2
  4. Factor out x: xy1y-1 = 2
  5. Solve for x: x = 2/y1y-1
  6. Replace y with x: f⁻¹xx = 2/x1x-1

Power Move: When graphing a function and its inverse, they're always reflections of each other across the line y = x. This is a great way to check if you've found the correct inverse!

6
of 6
Twelve basic functions  – page 6

Sign up to see the content. It's free!

  • Access to all documents
  • Improve your grades
  • Join milions of students

Practice with Composite Functions

Now it's time to put your skills to work with some practice problems! Working through these examples will help cement your understanding of composite functions.

When computing composite functions like fg(3)g(-3), always work from the inside out. First calculate g3-3 = 33-3 = -9, then find f9-9 = 29-9 - 1 = -18 - 1 = -19. For more complex compositions like f(g(h(2))), work step by step: h(2) = 2² + 1 = 5, then g(5) = 3(5) = 15, and finally f(15) = 2(15) - 1 = 30 - 1 = 29.

Composite functions can also involve expressions rather than specific values. For fx+1x + 1, substitute x + 1 wherever you see x in the original function: fx+1x + 1 = 2x+1x + 1 - 1 = 2x + 2 - 1 = 2x + 1. Similarly, hx2x - 2 = x2x - 2² + 1 = x² - 4x + 4 + 1 = x² - 4x + 5.

When finding composite functions with algebraic expressions like f(gxx), substitute the entire gxx expression wherever x appears in fxx. If fxx = -3x + 7 and gxx = 2x² - 8, then f(gxx) = -32x282x² - 8 + 7 = -6x² + 24 + 7 = -6x² + 31.

🏆 Challenge Yourself: Try making up your own composite function problems and solving them. The more practice you get, the more confident you'll feel on tests!

We thought you’d never ask...

Our AI companion is specifically built for the needs of students. Based on the millions of content pieces we have on the platform we can provide truly meaningful and relevant answers to students. But its not only about answers, the companion is even more about guiding students through their daily learning challenges, with personalised study plans, quizzes or content pieces in the chat and 100% personalisation based on the students skills and developments.

You can download the app in the Google Play Store and in the Apple App Store.

That's right! Enjoy free access to study content, connect with fellow students, and get instant help – all at your fingertips.

Most popular content in Pre-Calculus

9

Most popular content

9
I
SAT®SAT®

Introduction to SAT Error Pattern Analysis

Practice identifying common reasoning traps and misinterpretations in SAT reading and math stimuli to understand why distractors are plausible.

9th2,2050
C
BiologyBiology

Cell Organelles

This Quiz Is To Test Your Knowledge Of Cell Organelles And Their Functions Inside The Cell. It Can Also Be A Study Guide To Remember Them Better.

6th6950
F
AP PsychologyAP Psychology

Foundations of Ethical Guidelines in Research

Practice the core principles of the APA ethical code including informed consent, debriefing, and the role of Institutional Review Boards.

9th1,3370
B
BiologyBiology

biology cell organelles and functions

Do you know the cell organelles and their functions?

9th4800
I
SAT®SAT®

Introduction to SAT Scoring and Scaled Results

Practice interpreting how raw scores are converted to the 1600-point scale and identifying the composition of section scores.

9th8610
F
AP PsychologyAP Psychology

Foundations of Research Design and Methodology

Practice distinguishing between different research methods including experiments, correlations, and case studies while identifying key variables.

9th6670
M
MathematicsMathematics

Math Made Easy: Essential Concepts for Grade 7

Master key math concepts with this comprehensive flashcard set designed specifically for 7th graders. Boost your understanding and ace your exams!

7th7561
M
BiologyBiology

Mitosis and Cell Division Flashcards

These flashcards cover the basics of mitosis and why cell division occurs in the first place.

9th3470
H
AP PsychologyAP Psychology

Historical Foundations of Psychology

Practice distinguishing between structuralism, functionalism, and the early philosophical roots of psychological science.

9th1,0940

Students love us — and so will you.

4.6/5App Store
4.7/5Google Play

The app is very easy to use and well designed. I have found everything I was looking for so far and have been able to learn a lot from the presentations! I will definitely use the app for a class assignment! And of course it also helps a lot as an inspiration.

Stefan SiOS user

This app is really great. There are so many study notes and help [...]. My problem subject is French, for example, and the app has so many options for help. Thanks to this app, I have improved my French. I would recommend it to anyone.

Samantha KlichAndroid user

Wow, I am really amazed. I just tried the app because I've seen it advertised many times and was absolutely stunned. This app is THE HELP you want for school and above all, it offers so many things, such as workouts and fact sheets, which have been VERY helpful to me personally.

AnnaiOS user