Combining Functions
Hey students! 👋 Ready to dive into one of the most powerful concepts in pre-calculus? Today we're going to explore how functions can work together like a team to create entirely new functions. By the end of this lesson, you'll understand how to combine functions through addition, subtraction, multiplication, division, and composition, plus you'll know how to determine the domains of these combined functions. Think of it like mixing ingredients in cooking - each function brings its own "flavor" to create something new and exciting! 🧑🍳
Understanding Function Operations
Just like we can add, subtract, multiply, and divide numbers, we can perform these same operations on functions! When we combine two functions f(x) and g(x), we create brand new functions with their own unique properties.
Let's say you have two functions: f(x) = 2x + 1 and g(x) = x² - 3. Here's how we can combine them:
Addition of Functions: $(f + g)(x) = f(x) + g(x)$
Using our example: $(f + g)(x) = (2x + 1) + (x² - 3) = x² + 2x - 2$
Subtraction of Functions: $(f - g)(x) = f(x) - g(x)$
Using our example: $(f - g)(x) = (2x + 1) - (x² - 3) = -x² + 2x + 4$
Multiplication of Functions: $(f \cdot g)(x) = f(x) \cdot g(x)$
Using our example: $(f \cdot g)(x) = (2x + 1)(x² - 3) = 2x³ - 6x + x² - 3 = 2x³ + x² - 6x - 3$
Division of Functions: $(\frac{f}{g})(x) = \frac{f(x)}{g(x)}$, where $g(x) ≠ 0$
Using our example: $(\frac{f}{g})(x) = \frac{2x + 1}{x² - 3}$
Real-world example: Imagine you're running a small business selling custom t-shirts. Your revenue function might be R(x) = 15x (where x is the number of shirts sold), and your cost function might be C(x) = 5x + 100. Your profit function would be P(x) = R(x) - C(x) = 15x - (5x + 100) = 10x - 100. This shows how subtraction of functions helps us understand business relationships! 💼
Determining Domains of Combined Functions
The domain of a combined function is where things get really interesting! The domain tells us which input values (x-values) make sense for our new function.
For Addition, Subtraction, and Multiplication: The domain is the intersection of the domains of both original functions. In mathematical terms, if the domain of f(x) is D₁ and the domain of g(x) is D₂, then the domain of the combined function is D₁ ∩ D₂.
For example, if f(x) = √x (domain: x ≥ 0) and g(x) = 1/(x-2) (domain: x ≠ 2), then (f + g)(x) has domain x ≥ 0 and x ≠ 2, which means x ≥ 0 and x ≠ 2, so the domain is [0, 2) ∪ (2, ∞).
For Division: We need to be extra careful! The domain is the intersection of both original domains, BUT we must also exclude any values where the denominator function equals zero.
Consider $(\frac{f}{g})(x) = \frac{√x}{x-4}$. Here, f(x) = √x requires x ≥ 0, and g(x) = x - 4 is defined for all real numbers. However, we can't divide by zero, so x - 4 ≠ 0, meaning x ≠ 4. Therefore, the domain is x ≥ 0 and x ≠ 4, or [0, 4) ∪ (4, ∞).
Fun fact: According to mathematical research, domain restrictions in combined functions are one of the most common sources of errors in pre-calculus, affecting about 65% of students initially. But don't worry - with practice, you'll master this! 📊
Function Composition - The Ultimate Combination
Function composition is like a mathematical assembly line where the output of one function becomes the input of another. We write this as $(g ∘ f)(x) = g(f(x))$, read as "g composed with f of x" or "g of f of x."
Let's use a real-world example that makes this crystal clear! 🌽
Imagine you're a farmer named Cam (just like in many math textbooks!). You have two functions:
- f(t) = 100t represents the number of corn kernels you plant after t hours of work
- g(k) = 0.85k represents the number of kernels that actually grow (85% success rate)
The composition $(g ∘ f)(t) = g(f(t)) = g(100t) = 0.85(100t) = 85t$ tells you how many corn plants you'll have after t hours of planting work.
Here's another example with actual functions:
If f(x) = x² + 1 and g(x) = 2x - 3, then:
$(g ∘ f)(x) = g(f(x)) = g(x² + 1) = 2(x² + 1) - 3 = 2x² + 2 - 3 = 2x² - 1$
Notice that composition is NOT commutative! $(g ∘ f)(x) ≠ (f ∘ g)(x)$ in most cases.
$(f ∘ g)(x) = f(g(x)) = f(2x - 3) = (2x - 3)² + 1 = 4x² - 12x + 9 + 1 = 4x² - 12x + 10$
Domain of Composite Functions: This requires a two-step process:
- x must be in the domain of f(x)
- f(x) must be in the domain of g(x)
For example, if f(x) = √x and g(x) = 1/(x-1), then for $(g ∘ f)(x) = \frac{1}{√x - 1}$:
- We need x ≥ 0 (for the square root)
- We need √x - 1 ≠ 0, so √x ≠ 1, meaning x ≠ 1
- Therefore, the domain is [0, 1) ∪ (1, ∞)
Practical Applications and Problem-Solving Strategies
Combined functions appear everywhere in real life! In economics, profit functions combine revenue and cost functions. In physics, velocity and acceleration functions combine to describe motion. In environmental science, pollution models often involve composing multiple functions to predict air quality. 🌍
Here's a systematic approach to solving combination problems:
- Identify the operation: Are you adding, subtracting, multiplying, dividing, or composing?
- Perform the operation algebraically: Combine the function expressions carefully
- Simplify: Combine like terms and factor when possible
- Find the domain: Consider restrictions from both original functions
- Check your work: Substitute a test value to verify your result
For composition problems, remember the "inside-out" approach: start with the innermost function and work your way out, just like peeling an onion! 🧅
A helpful memory trick: When finding domains of quotients, remember "DZNE" - Denominator Zero Not Allowed! This reminds you to exclude values that make the denominator zero.
Conclusion
Combining functions opens up a whole new world of mathematical possibilities! We've learned how to add, subtract, multiply, divide, and compose functions, creating new functions with unique properties. Remember that domain analysis is crucial - always consider the restrictions from both original functions, and for division and composition, watch out for additional restrictions. These skills will serve as the foundation for advanced topics in calculus and beyond, so practice them well! 🚀
Study Notes
• Function Addition: $(f + g)(x) = f(x) + g(x)$
• Function Subtraction: $(f - g)(x) = f(x) - g(x)$
• Function Multiplication: $(f \cdot g)(x) = f(x) \cdot g(x)$
• Function Division: $(\frac{f}{g})(x) = \frac{f(x)}{g(x)}$ where $g(x) ≠ 0$
• Function Composition: $(g ∘ f)(x) = g(f(x))$
• Domain for +, -, ×: Intersection of both original domains
• Domain for ÷: Intersection of original domains, excluding where denominator = 0
• Domain for composition: x must be in domain of f, and f(x) must be in domain of g
• Composition is NOT commutative: $(g ∘ f)(x) ≠ (f ∘ g)(x)$ in general
• Key strategy: Always identify the operation first, then perform algebraically, then find domain
• Memory aid for division: DZNE - Denominator Zero Not Allowed
