Evaluating Functions - Basic Introduction | Algebra

The Organic Chemistry Tutor
4 May 201711:48

Summary

TLDRThis educational video script offers a comprehensive guide to evaluating functions and solving equations involving them. It begins with a simple example of evaluating a function f(x) = x^2 + 5x - 7 at x = 3, demonstrating the process of substitution and calculation. The script then progresses to more complex functions involving multiple variables, like f(x, y) = 2x^2 - 3xy + 4y^2, and illustrates how to find function values given certain inputs. It also tackles the challenge of finding variable values when the function's output is known, using algebraic manipulation and factoring. The video concludes with a problem-solving approach to quadratic equations, either through factoring or utilizing the quadratic formula, providing viewers with a robust understanding of function evaluation and equation solving.

Takeaways

  • ๐Ÿ“˜ To evaluate a function, substitute the given value for the variable in the function's expression.
  • ๐Ÿ”ข For functions like f(x) = x^2 + 5x - 7, replace x with the specified value and perform the arithmetic to find f(x).
  • ๐Ÿ“ When dealing with functions of two variables, such as f(x, y) = 2x^2 - 3xy + 4y^2, substitute both variables with their given values to evaluate the function.
  • ๐Ÿ” To find the value of a variable when the function's output is known, set the function equal to the output and solve the resulting equation.
  • ๐Ÿ“‰ For quadratic equations, factoring can be used to find the variable's value, especially when the equation is in the form ax^2 + bx + c = d.
  • ๐Ÿ”‘ Factoring involves finding two numbers that multiply to the product of the leading coefficient and the constant term and add up to the middle coefficient.
  • โœ… Verification of solutions is crucial; substitute the found values back into the original function to ensure they yield the expected output.
  • ๐Ÿ”„ When factoring is challenging, the quadratic formula y = (-b ยฑ โˆš(b^2 - 4ac)) / (2a) can be used as an alternative method to find the variable's value.
  • ๐Ÿ“ In functions with multiple variables, identify which variable's value is being sought and isolate it by substituting known values and solving the resulting equation.
  • ๐Ÿงฎ Algebraic manipulation, including expanding, factoring, and simplifying expressions, is key to solving for variables in functions.

Q & A

  • What is the value of f(x) = x^2 + 5x - 7 when x is 3?

    -To find the value of f(x) when x is 3, substitute x with 3 in the function: f(3) = 3^2 + 5*3 - 7. This evaluates to 9 + 15 - 7, which equals 17.

  • How do you evaluate the function f(x, y) = 2x^2 - 3xy + 4y^2 for x = 2 and y = 3?

    -Substitute x with 2 and y with 3 in the function: f(2, 3) = 2*(2^2) - 3*(2*3) + 4*(3^2). This simplifies to 2*4 - 18 + 4*9, which equals 8 - 18 + 36, resulting in 26.

  • If f(x) = x^2 - 4x + 9 and f(x) is 5, what is the value of x?

    -Set f(x) equal to 5: 5 = x^2 - 4x + 9. Rearrange to form a quadratic equation: x^2 - 4x + 4 = 0. Factor the quadratic to get (x - 2)^2 = 0, which gives x = 2.

  • What is the process to find the value of y in the function f(x, y) = 3x^2 - 4xy + 5y^2 when f(4, y) = 100?

    -Replace x with 4 and set f(4, y) to 100: 100 = 3*(4^2) - 4*(4*y) + 5*y^2. Simplify and rearrange to form a quadratic in y: 5y^2 - 16y - 52 = 0. Factor or use the quadratic formula to find y = -2 or y = 26/5.

  • How do you factor a trinomial with a leading coefficient other than one, as seen in the function f(x, y) = 3x^2 - 4xy + 5y^2?

    -For the trinomial 5y^2 - 16y - 52, find two numbers that multiply to 260 (5*52) and add to -16. These numbers are -26 and 10. Rewrite the middle term and factor by grouping to get (y + 2)(5y - 26).

  • What is the alternative method to factoring for solving a quadratic equation like 5y^2 - 16y - 52 = 0?

    -Use the quadratic formula y = [-b ยฑ sqrt(b^2 - 4ac)] / (2a). For the equation 5y^2 - 16y - 52 = 0, substitute a = 5, b = -16, and c = -52 to find the values of y.

  • How does the quadratic formula help in solving for y in the equation 5y^2 - 16y - 52 = 0?

    -Apply the quadratic formula: y = [16 ยฑ sqrt((-16)^2 - 4*5*(-52))] / (2*5). This results in y = [16 ยฑ sqrt(256 + 2080)] / 10, which simplifies to y = [16 ยฑ sqrt(2336)] / 10, giving y = 26/5 or y = -2.

  • What is the significance of setting each factor in a factored equation to zero when solving for variables?

    -Setting each factor to zero allows you to solve for the variable values that satisfy the equation. In the factored form (y + 2)(5y - 26) = 0, setting y + 2 = 0 and 5y - 26 = 0 gives the solutions y = -2 and y = 26/5.

  • Why is it important to check your work after solving an equation, as demonstrated in the script?

    -Checking your work by substituting the found values back into the original equation ensures the solution is correct. For x = 2 in x^2 - 4x + 9 = 5, substituting shows 2^2 - 4*2 + 9 = 5, confirming the solution is accurate.

  • How does understanding the process of evaluating functions and solving equations help in grasping algebraic concepts?

    -Evaluating functions and solving equations provide practical applications of algebraic concepts like substitution, factoring, and using the quadratic formula, which are essential for a strong foundation in algebra.

Outlines

00:00

๐Ÿ“˜ Function Evaluation Basics

This paragraph introduces the concept of function evaluation. It uses the example of a function f(x) = x^2 + 5x - 7 and demonstrates how to find the value of the function when x is 3. The process involves substituting x with 3 in the function, performing the arithmetic, and concluding that f(3) equals 17. The paragraph also presents another function involving two variables, f(x, y) = 2x^2 - 3xy + 4y^2, and shows how to evaluate it when x is 2 and y is 3, resulting in f(2, 3) = 26. The explanation emphasizes the substitution of variable values into the function to find the output.

05:01

๐Ÿ” Solving for Variable in a Function

The second paragraph focuses on solving for a variable within a function. It presents a function f(x) = x^2 - 4x + 9 and asks for the value of x when f(x) equals 5. The process involves setting f(x) to 5 and solving the resulting quadratic equation. The paragraph explains how to factor the quadratic equation by finding two numbers that multiply to the constant term and add up to the coefficient of the linear term. The solution is found to be x = 2, which is verified by substituting back into the original function to confirm that f(2) equals 5.

10:01

๐Ÿงฎ Advanced Function Evaluation and Factoring

The third paragraph delves into more complex function evaluation with a function f(x, y) = 3x^2 - 4xy + 5y^2. Given that f(4, y) = 100, the paragraph outlines the steps to solve for y. It involves substituting x with 4 and setting up a new equation in terms of y. The resulting quadratic equation in y is factored by grouping, leading to two possible solutions for y. The paragraph also discusses the use of the quadratic formula as an alternative method for solving such equations, providing the formula and applying it to find the two potential values for y. The correct answer is identified based on the context of the problem.

Mindmap

Keywords

๐Ÿ’กFunction

In the context of the video, a 'function' is a mathematical concept that relates each element from one set to one element of another set. The video focuses on evaluating functions, which means finding the output of the function for a given input. For instance, when the function is defined as 'f(x) = x^2 + 5x - 7', the process of finding 'f(3)' involves substituting 'x' with '3' and performing the calculations to get the output.

๐Ÿ’กEvaluate

To 'evaluate' in mathematics means to calculate the value of an expression or function. The video provides examples of evaluating functions by substituting values for the variables within the function's formula. For example, evaluating 'f(3)' for the function 'f(x) = x^2 + 5x - 7' involves substituting '3' for 'x' and then performing the arithmetic operations to find the value of the function at that point.

๐Ÿ’กVariable

A 'variable' in mathematics is a symbol that represents a value that can change. In the video, variables like 'x' and 'y' are used in function definitions, and their values are substituted to evaluate the function. For example, in the function 'f(x, y) = 2x^2 - 3xy + 4y^2', 'x' and 'y' are variables that can be assigned specific values to determine the function's output.

๐Ÿ’กAlgebra

Algebra is a branch of mathematics that uses symbols and rules to solve equations. The video discusses using algebraic methods to solve for variables within functions. For example, when given 'f(x) = 5' and 'f(x) = x^2 - 4x + 9', the video demonstrates how to use algebra to solve for 'x' by setting up and solving a quadratic equation.

๐Ÿ’กQuadratic Equation

A 'quadratic equation' is a polynomial equation of the second degree, typically in the form 'ax^2 + bx + c = 0'. The video explains how to solve such equations, either by factoring or using the quadratic formula, to find the values of variables within functions. An example from the script is solving 'x^2 - 4x + 9 = 5' by rearranging and factoring to find 'x'.

๐Ÿ’กFactoring

To 'factor' in mathematics is to express a polynomial as the product of its factors. The video shows how to factor a quadratic equation to find its roots. For instance, when solving 'x^2 - 4x + 9 = 5', the video demonstrates factoring the quadratic expression to '(x - 2)^2' to find the value of 'x'.

๐Ÿ’กQuadratic Formula

The 'quadratic formula' is a method for finding the solutions of a quadratic equation. It is given by 'x = [-b ยฑ sqrt(b^2 - 4ac)] / (2a)'. The video provides an example of using the quadratic formula to solve for 'y' in the equation '5y^2 - 16y + 52 = 0', showcasing an alternative method to factoring.

๐Ÿ’กSubstitute

In the context of the video, 'substitute' refers to the process of replacing variables in a function with specific values to evaluate the function. This is a key step in finding the output of functions for given inputs. For example, substituting 'x' with '3' in 'f(x) = x^2 + 5x - 7' to find 'f(3)'.

๐Ÿ’กTrinomial

A 'trinomial' is a polynomial with three terms. The video discusses how to factor trinomials, particularly when the leading coefficient is not one. An example is factoring '5y^2 - 16y + 52' by finding two numbers that multiply to the product of the leading coefficient and the constant term and add up to the middle coefficient.

๐Ÿ’กGreatest Common Factor (GCF)

The 'GCF' is the largest number that divides two or more numbers without leaving a remainder. In the video, the GCF is used in the process of factoring by grouping. For instance, when factoring '5y^2 + 10y - 26y - 52', the GCF of the first two terms is '5y', and for the last two terms, it is '-26', which helps in factoring the expression.

Highlights

Introduction to evaluating functions by substituting values.

Example of evaluating a function f(x) = x^2 + 5x - 7 at x = 3.

Calculation of f(3) resulting in the value 17.

Explanation of how to evaluate functions with multiple variables, f(x, y) = 2x^2 - 3xy + 4y^2.

Evaluation of f(2, 3) leading to the value 26.

Method for finding the value of x when f(x) is given, using the function f(x) = x^2 - 4x + 9.

Solving the equation 5 = x^2 - 4x + 9 to find x = 2.

Verification of the solution x = 2 by substituting back into the original function.

Introduction to solving for y in a function with two variables, f(x, y) = 3x^2 - 4xy + 5y^2.

Setting up the equation 100 = 3*4^2 - 4*4*y + 5*y^2 to find y.

Transforming the equation into a standard quadratic form to solve for y.

Factoring the quadratic equation to find possible values of y.

Explanation of how to use the quadratic formula as an alternative to factoring.

Application of the quadratic formula to find the values of y.

Identification of the correct answer choice based on the calculated values of y.

Emphasis on the importance of checking work to ensure accuracy in function evaluation.

Transcripts

play00:01

in this video we're going to focus on

play00:03

functions evaluating

play00:06

functions so let's start with this

play00:08

example if f ofx is x^2 + 5x - 7 then

play00:13

what is the value of f of

play00:15

3 so we can see that X is equal to 3 x

play00:19

is basically the number inside of the

play00:22

function and we're looking for the value

play00:24

of the function so what is the value of

play00:27

f when X is string so all we got to do

play00:30

is replace x with 3 so instead of

play00:33

writing X2 we're going to write 3^ 2

play00:36

instead of writing 5 * X we're going to

play00:38

write 5 *

play00:41

3 and we just got to do the math 3 S

play00:44

that's 3 * 3 which is 9 5 * 3 is

play00:49

15 and 15 - 7 is 8 and 9 + 8 is 17 so

play00:56

when X is three F has a value of 17 so D

play01:00

is the right answer for this

play01:03

example here's another one if f of x

play01:07

comma Y is 2x^2 - 3x y + 4

play01:11

y^2 what is the value of F2 comma

play01:16

3 so we need to realize that X is

play01:21

2 and Y is three because they

play01:25

match so when X is 2 and when Y is 3

play01:29

what is is the value of the

play01:32

function so all we got to do is simply

play01:35

plug in the values so let's go ahead and

play01:37

evaluate F2 comma 3 so everywhere we see

play01:41

an X let's replace it with

play01:43

two and wherever we see a y replace it

play01:47

with

play01:50

three so using this

play01:52

equation this is what we now

play01:55

have 2^ 2 that's 2 * 2 that's 4 3 * 2 is

play02:01

6 and 3^ 2 is 9 2 * 4 is 8 6 * 3 is 18 4

play02:09

* 9 is

play02:10

36 8 - 18 that's -10 and -10 + 36 is 26

play02:18

so therefore e is the right

play02:22

answer here's another problem if f ofx

play02:26

is = to x^2 - 4x + 9 what is the value

play02:30

of x when f ofx is

play02:35

five

play02:38

so we have the function f f is five and

play02:42

our goal is to find the value of x how

play02:44

can we do so so what we need to do is

play02:47

replace f ofx with

play02:49

5 so 5 is equal to x^2 - 4x + 9 so at

play02:56

this point we just have to do some

play02:58

algebra in order to find the value of x

play02:59

X so how can we go ahead and uh how can

play03:03

we solve

play03:05

this the first thing we should do is

play03:07

subtract both sides by five we want the

play03:10

left side to be equal to zero this is a

play03:13

quadratic equation and we could find the

play03:15

answer by factoring the trinomial that

play03:18

we have on the

play03:19

right so what two numbers multiply to

play03:22

four but add to the middle coefficient

play03:26

ne4 the two numbers are going to be -2

play03:28

and -2 so to factor it it's x - 2 * x -

play03:34

2 which you can write as x - 2^

play03:38

2 so to solve this equation you need to

play03:41

set each factor equal to zero but

play03:43

because they're the same we just got to

play03:45

do it once so therefore we can see that

play03:47

X is equal to

play03:50

2 now let's go ahead and check the work

play03:53

that we have

play04:05

so if we plug in two will it give us

play04:09

five so it's going to be 2^ 2 - 4 * 2 +

play04:13

9 2^ 2 is 4 4 * 2 is 8 and 4 - 8 is -4

play04:22

-4 + 9 is five so clearly we can see

play04:26

that X is indeed equal to two which

play04:28

means B is the right

play04:31

answer here's another example if F ofx

play04:35

comma Y is 3x^2 - 4x y + 5 y^ 2 and F of

play04:42

4 comma Y is 100 what is the value of y

play04:47

so let's make a list of what we have and

play04:49

what we need to

play04:50

find so we can see that the first letter

play04:53

X matches with four so therefore X is

play04:57

equal to 4

play05:01

F the entire function is 100 so f is 100

play05:06

and our goal is to find the value of

play05:09

y so what we're going to do is we're

play05:11

going to replace f with 100 replace x

play05:15

with 4 and find the value of y so let's

play05:17

go ahead and begin so 100 is equal to

play05:21

3x^2 but X is 4 so that's 3 * 4^ 2 - 4xy

play05:27

or 4 * 4 * * y + 5

play05:34

y^2 so now let's do some Algebra 4^ 2 is

play05:39

16 4 * 4 is equal to

play05:46

that 3 * 16 that's

play05:51

48 and what we have is another quadratic

play05:55

function so let's subtract both sides by

play05:58

100

play06:02

48 minus 100 is - 52 so this is what we

play06:07

now

play06:09

have let's get rid of a few

play06:14

things now what I'm going to do is

play06:16

rewrite it I'm going to put it in

play06:18

standard form so this is 5 y^2 - 16 Yus

play06:25

52 let's see if we can Factor this

play06:28

expression

play06:30

so how can we factor a trinomial where

play06:32

the leading coefficient is not one in

play06:34

this case it's five what we need to do

play06:37

is multiply the first number by the last

play06:40

number so what is 5 *

play06:44

52 5 * 50 is 250 and 5 * 2 is 10 250 +

play06:50

10 that's

play06:51

260 so what two numbers multiply to 260

play06:56

but add up to -16

play07:00

260 is basically 26 and

play07:04

10 now let's put the negative sign here

play07:06

because we had it here one of these

play07:08

numbers have to be negative it's either

play07:10

the 26 or the 10 26 + -10 adds up to POS

play07:17

16 but - 26 + 10 that's -6 so these are

play07:21

the two numbers that we need so to

play07:23

factor this particular trinomial we need

play07:26

to replace the middle term -16 y

play07:30

with -26 Y and 10 y now I'm going to

play07:33

write the 10 y first because five goes

play07:36

into

play07:37

10 and 26 goes into

play07:41

52 now once you replace the middle term

play07:44

with these two terms your next step is

play07:47

to factor by

play07:51

grouping so what we need to do is take

play07:53

out the GCF or the greatest common

play07:55

factor in the first two terms and that's

play07:59

going to be 5

play08:00

y 5 y^2 / 5 y That's equal to y 10 y / 5

play08:07

Y is

play08:09

positive2 now in the last two terms we

play08:12

need to take out the GCF which is

play08:16

-26 -26 y / -26 is simply y- 52 /

play08:23

-26 is

play08:25

pos2 so notice that we have a common

play08:28

factor which is y +

play08:30

2 so if we factor out y + 2 from this

play08:36

term we're going to get 5

play08:40

Y and if we take out y + 2 from that

play08:44

term we're going to get

play08:49

-26 so now that we have it in factored

play08:52

form we need to set both factors equal

play08:55

to zero

play09:01

so let's set y + 2 = 0 and 5 y - 26 =

play09:07

0 if we subtract both sides by two we

play09:10

can see that Y is equal to -2 in this

play09:13

example or in this equation we got to

play09:15

add 26 to both sides and then divide by

play09:18

five so the other answer is 26 over

play09:26

5 so these are the two possible values

play09:28

for y

play09:30

however only one of the answers is

play09:31

listed so answer Choice B is the right

play09:37

answer now if you ever get stuck in

play09:40

terms of factoring let's say if you

play09:42

don't know what to do when you need to

play09:44

factor the expression you can always

play09:46

fall back to the quadratic

play09:48

formula so let's go ahead and do that

play09:50

for this

play09:52

example so a is 5 b is -16 C is 52

play09:59

X is equal to well in this case it's

play10:01

going to be y instead of X so Y is equal

play10:04

to B plus orus s < TK of B ^2 - 4 a c /

play10:10

2

play10:12

a so B in this example is

play10:16

-16 -16 2 is POS 256 that's -6 * -16 a

play10:23

is 5 and C is

play10:28

52 2 2 * a a is 5 so 2 * 5 is 10 so what

play10:33

we have here is postive

play10:36

16 plus or minus Square t now 4 * 5 is

play10:44

20 and 20 *

play10:47

52 that should be like

play10:50

1040 so this is

play10:54

256+

play10:56

1040 over 10

play10:59

256 + 1040 is

play11:03

1296 and the square root of

play11:06

1296 is

play11:14

36 so this gives us two possible answers

play11:17

16 + 36 ID 10 and 16us 36 ID 10 16 + 36

play11:25

is

play11:27

52 and 52 / 10 if you divide both

play11:30

numbers by two you're going to get 26

play11:32

over

play11:33

5 16 - 36 is -20 -20 ID 10 is -2 and

play11:39

that's the answer that we have so

play11:41

whenever you get a trinomial you can

play11:43

either Factor it or you can use the

play11:45

quadratic formula to find the value of x

play11:47

or y

Rate This
โ˜…
โ˜…
โ˜…
โ˜…
โ˜…

5.0 / 5 (0 votes)

Related Tags
Function EvaluationAlgebraMath TutorialQuadratic EquationsEducational ContentMathematicsProblem SolvingFactoringQuadratic FormulaAlgebraic Manipulation