Nonlinear functions | Lesson (article) | Khan Academy (2024)

Google Classroom

A guide to nonlinear functions on the digital SAT

What are nonlinear functions problems?

What is a function?

Khan Academy video wrapper

What is a function?

See video transcript

A function takes an input and produces an output. In function notation, f(x), f is the name of the function, x is the input variable, and f(x) is the output.

For example, given f(x)=2x+1, the expression 2x+1 works as instructions on what to do with the input x. In this case, the input x is multiplied by 2, then 1 is added to the product.

The input of a function can be a

, an

, or even

. Functions can also be

.

In this lesson, we'll learn to:

  1. Evaluate functions algebraically
  2. Determine inputs and outputs using tables
  3. Evaluate

You can learn anything. Let's do this!

How do I evaluate functions?

Evaluate a function given its formula

Khan Academy video wrapper

Worked example: Evaluating functions from equation

See video transcript

Evaluating functions algebraically and using tables

When we encounter an algebraic function, we can find the value of the function at specific inputs. For example, for f(x)=2x+1, we can calculate f(2), the output of the function f when its input, x, is equal to 2.

f(x)=2x+1f(2)=2(2)+1=4+1=5

What are the steps?

To evaluate a function at a specific input value:

  1. Plug in the input value for the input variable wherever it appears.
  2. Perform the operations specified by the function to calculate the ouput.

Example: If f(x)=x39, what is the value of f(2) ?

We need to plug 2 into f for x to evaluate f(2):

f(x)=x39f(2)=(2)39=89=17

17 is the value of f(2).

With algebraic functions, we can evaluate the function using multiple inputs to create multiple input-output pairs. These input-output pairs can be put in a table, as shown below for f(x)=2x+1.

xf(x)
01
13
25
37

Sometimes, a table of input-output pairs is provided without an algebraic function. Consider the table below.

xg(x)
27
10
04
11

The table contains four input-output pairs. We can interpret the information in the table as:

  • g(2)=7
  • g(1)=0
  • g(0)=4
  • g(1)=1

To evaluate a function using a table:

  1. Find the input value you're looking for in the input column (typically the left column with a header of the input variable such as x).
  2. Find the corresponding output value in the output column.

Example:

xf(x)
03
12
35
43

Based on the table above, what is the value of f(3) ?

In the table, the inputs are in the x column, and the outputs are in the f(x) column. The value of f(3) is in the same row as the x-value of 3, so f(3)=5.

5 is the value of f(3).

Try it!

try: complete a table based on a function

f(x)=x23

Complete the table below.

xf(x)
0
12
2
4

How do I evaluate composite functions?

Intro to function composition

Khan Academy video wrapper

Intro to composing functions

See video transcript

Evaluating composite functions algebraically and using tables

A composite function uses the output of one function as the input of another. For example, for f(g(x)):

  • x is the input to function g.
  • g(x) is the input to function f.

As such, composite functions should be worked from the inside out. Order matters when evaluating composite functions: g(f(x)) is not the same as f(g(x))! For example, for f(x)=x2 and g(x)=x+1, f(g(1))=4, but g(f(1))=2.

For f(g(1)), we evaluate g(1) first:

g(x)=x+1g(1)=1+1=2

Next, we evaluate f(2):

f(x)=x2f(2)=22=4

Therefore, f(g(1))=4.

Now, let's evaluate g(f(1)). We start by evaluating f(1):

f(x)=x2f(1)=12=1

Next, we evaluate g(1):

g(x)=x+1g(1)=1+1=2

As such, g(f(1))=2.

To evaluate composite functions at a specific input value:

  1. Plug in the input value for the input variable wherever it appears in the .
  2. Perform the operations specified by the inner function to calculate the output. This output becomes the input of the .
  3. Plug in the result of Step 2 for the input variable wherever it appears in the outer function.
  4. Perform the operations specified by the outer function to calculate the final output.

Example: If f(x)=2x+1 and g(x)=x22x+1, what is the value of f(g(1)) ?

We need to input 1 into g, then use the output as the input for f.

First, let's evaluate g(1):

g(x)=x22x+1g(1)=(1)22(1)+1=1+2+1=4

Next, we need to input 4 into f to evaluate f(4):

f(x)=2x+1f(4)=2(4)+1=8+1=9

9 is the value of f(g(1)).

Composite functions can also be evaluated using a table. The table can have an additional column for a total of three: one column for input and two columns for the outputs of two functions. Consider the table for f(x)=x2 and g(x)=x+1:

xf(x)g(x)
112
243
394
4165

From the table, we can tell that g(1)=2, and f(2)=4. Therefore, f(g(1))=4.

To evaluate composite functions at a specific input value given a table:

  1. Find the output value for the inner function corresponding to the specific input value. This is also the input value of the outer function.
  2. Find the output value for the outer function corresponding to the input of the result of Step 1.

Example:

xf(x)g(x)
130
251
374
499
51116

The table above provides the values of functions f and g at several values of x. What is the value of g(f(2)) ?

We need to identify the value of f for x=2, then use that value as the value of x to identify the value of g.

According to the table, when x=2, f(x)=5. When x=5, g(x)=16:

g(f(2))=g(5)=16

16 is the value of g(f(2)).

Try it!

try: evaluate composite functions using a table

xp(x)
01
12
23
35

The table above shows the value of function p at several values of x. Since p(2)=

and p(3)=

, the value of p(p(2)) is

.

How do I compose functions?

Finding composite functions

Khan Academy video wrapper

Finding composite functions

See video transcript

Inputting expressions instead of values into functions

In addition to inputting a specific value, we can also input one function into another function, which creates a composite function defined by a single expression.

For example, for f(x)=x2 and g(x)=x+1, f(g(x)) replaces each instance of x in f with g(x), which is equal to x+1: f(g(x))=(x+1)2. Inputting an expression into a function, e.g., f(x+1), works similarly.

A function can also be defined in terms of another function. For example, for f(x)=x2 and g(x)=f(x)+1, we can replace the f(x) in function g with x2: g(x)=x2+1.

If you find yourself struggling to rewrite complex functions, you might want to brush up on the Operations with polynomials and Operations with rational expressions skills, which have their own lessons.

To compose two functions:

  1. Plug in the expression that defines the inner function wherever the input variable appears in the outer function.
  2. Perform the operations specified by the outer function. Combine like terms as needed.

Let's look at some examples!

If f(x)=x1 and g(x)=x2+1, what is f(g(x)) ?

We need to replace each instance of x in f with g(x), or x2+1.

f(g(x))=(x2+1)1=x2

If g(x)=x2+1, what is g(x1) ?

We need to replace each instance of x in g with x1, then multiply and combine like terms. Using FOIL:

g(x1)=(x1)2+1=(x)(x)+(x)(1)+(1)(x)+(1)(1)+1=x2xx+1+1=x22x+2

Try it!

try: identify equivalent function composition

f(x)=x2+3x+7g(x)=x3

The functions f and g are shown above. Which of the following expressions is equivalent to g(f(x)) ?

Choose 1 answer:

Choose 1 answer:

  • (x2)3+3x+7

  • (x2+3x+7)3

  • (x3)2+3x3+7

  • (x3)(x2+3x+7)

try: Draw conclusions about the features of two related functions

f(x)=x2+10g(x)=f(x)7

The functions f and g are shown above. For the same value of x, the value of g(x) is always

the value of f(x).

Therefore, if the maximum value of the function f is 10, then the maximum value of function g is

.

Your turn!

TRY: evaluate a function at integer values

p(x)=2x

The function p is defined above. What is the value of p(2)+p(5) ?

TRY: evaluate a composite function

If f(x)=3x+5 and g(x)=x24, what is the value of g(f(1)) ?

TRY: evaluate a composite function using table of values

xh(x)
37
24
10
33
43

The table above shows the value of the function h at certain values of x. What is the value of h(h(3)) ?

Choose 1 answer:

Choose 1 answer:

  • 3

  • 2

  • 4

  • 7

TRY: compose two functions

If f(x)=x22x5, which of the following is equivalent to f(x+3) ?

Choose 1 answer:

Choose 1 answer:

  • x22x2

  • x2+4x2

  • x2+4x+4

  • x2+6x+9

Want to join the conversation?

Log in

  • huzaifaasif0310

    a year agoPosted a year ago. Direct link to huzaifaasif0310's post “MASTERED Alhamdullilah”

    MASTERED Alhamdullilah

    (154 votes)

    • leenbamualim

      3 months agoPosted 3 months ago. Direct link to leenbamualim's post “yes AlhamduleAllah”

      yes AlhamduleAllah

      (9 votes)

  • rahim5ullah5

    a year agoPosted a year ago. Direct link to rahim5ullah5's post “MASTERED Alhamdullilah. N...”

    MASTERED Alhamdullilah. Nice videos❤❤❤❤👍👍👍👍👍

    (46 votes)

  • Raeefah Ahmed

    a year agoPosted a year ago. Direct link to Raeefah Ahmed's post “none of that explain the ...”

    none of that explain the questions involving graphs in the topic test

    (34 votes)

    • Koichi

      a year agoPosted a year ago. Direct link to Koichi's post “fr man, I can't figure ou...”

      fr man, I can't figure out

      (5 votes)

  • Paul Jimoh

    a year agoPosted a year ago. Direct link to Paul Jimoh's post “There's no lessons on the...”

    There's no lessons on the function graphs

    (27 votes)

    • Andy

      2 months agoPosted 2 months ago. Direct link to Andy's post “there is in the next unit”

      there is in the next unit

      (3 votes)

  • kevin.young8932

    a year agoPosted a year ago. Direct link to kevin.young8932's post “This is just Higher-Order...”

    This is just Higher-Order Function in programming...
    After studied college courses and years of experience in Programming, I still have to take SAT as College Entry Exam, what a none-sense...

    (16 votes)

    • KumarP

      a year agoPosted a year ago. Direct link to KumarP's post “In India, you have to lea...”

      In India, you have to learn Integrals. As we usually take SAT in the last year, I don't think anybody can do badly on SAT.
      I also did college courses from MIT at https://ocw.mit.edu/.

      (6 votes)

  • Вероника Акбашева

    9 months agoPosted 9 months ago. Direct link to Вероника Акбашева's post “I'm just curious, guys. A...”

    I'm just curious, guys. Are here mostly international students, or Americans as well?

    (15 votes)

    • arisha.ahmed

      3 months agoPosted 3 months ago. Direct link to arisha.ahmed's post “I am from Dhaka, Banglade...”

      I am from Dhaka, Bangladesh! : ) I love Bangladesh.

      (7 votes)

  • husanovshahobiddin21

    9 months agoPosted 9 months ago. Direct link to husanovshahobiddin21's post “it was so easy . At first...”

    it was so easy . At first understoond nothing

    (14 votes)

  • Nivritt Khetarpal

    a year agoPosted a year ago. Direct link to Nivritt Khetarpal's post “how do i solve function g...”

    how do i solve function graphs? there isnt any lesson on the function graphs?

    (10 votes)

  • Sh Sa

    a year agoPosted a year ago. Direct link to Sh Sa's post “Does anybody know that if...”

    Does anybody know that if we will be provided with digital testing devices in the centre or not in India..??

    (4 votes)

    • sejalrathi126

      a year agoPosted a year ago. Direct link to sejalrathi126's post “no you have to bring your...”

      no you have to bring your own testing device and if you don't have one then you need to inform college board one month prior to your exam date so that they can arrange it for you

      (6 votes)

  • manal.shahryar

    8 months agoPosted 8 months ago. Direct link to manal.shahryar's post “Hey, while doing the adva...”

    Hey, while doing the advanced practice for this section, I came across graphs with different sorts of shifts, however, this specific topic doesn't cover them in the videos. Are shifts part of this or will I learn them later on in the future lessons? Would really appreciate a quick response as im really struggling

    (5 votes)

    • myaluth_303

      8 months agoPosted 8 months ago. Direct link to myaluth_303's post “you might find the notes ...”

      you might find the notes regarding shifts of graphs in unit 4 - exponential graphs theory .

      (3 votes)

Nonlinear functions | Lesson (article) | Khan Academy (2024)

References

Top Articles
Latest Posts
Article information

Author: Van Hayes

Last Updated:

Views: 6237

Rating: 4.6 / 5 (66 voted)

Reviews: 89% of readers found this page helpful

Author information

Name: Van Hayes

Birthday: 1994-06-07

Address: 2004 Kling Rapid, New Destiny, MT 64658-2367

Phone: +512425013758

Job: National Farming Director

Hobby: Reading, Polo, Genealogy, amateur radio, Scouting, Stand-up comedy, Cryptography

Introduction: My name is Van Hayes, I am a thankful, friendly, smiling, calm, powerful, fine, enthusiastic person who loves writing and wants to share my knowledge and understanding with you.