May 3, 2024
Today's lecture discussed the concept of function notation. We explored how to represent functions in a standard mathematical form, substituting "y" with "f(x)" to indicate that 'f' is a function of 'x'. This was demonstrated using practical examples which showed how to apply this notation to solve for specific values and to combine functions.
y = 2x + 5.f(x) = 2x + 5.
f(x).f(4) will substitute x = 4 in the function, so f(4) = 2*4 + 5 = 13.
f(x) = -5x + 2 and g(x) = 3x - 20.f(4) and g(4).
f(4):
x with 4 in f(x), resulting in f(4) = -5*4 + 2 = -18.g(4):
x with 4 in g(x), resulting in g(4) = 3*4 - 20 = -8.h(x) is defined as the sum of f(x) and g(x): h(x) = f(x) + g(x).h(x) and simplify.
f(x) and g(x):
h(x) = (-5x + 2) + (3x - 20).-5x + 3x = -2x.2 - 20 = -18.h(x) = -2x - 18.These examples illustrate how using function notation can simplify the handling and manipulation of multiple functions, particularly useful for solving for specific values and for operations involving multiple functions.