Piecewise Functions

Defining and evaluating functions with different rules on different intervals

Piecewise Functions

What is a Piecewise Function?

A piecewise function is defined by different formulas on different parts of its domain.

General Form

\text{formula 1} & \text{if condition 1} \\ \text{formula 2} & \text{if condition 2} \\ \vdots & \vdots \end{cases}$$ ### Example $$f(x) = \begin{cases} x^2 & \text{if } x < 0 \\ 2x + 1 & \text{if } x \geq 0 \end{cases}$$ This means: - Use $f(x) = x^2$ when $x$ is negative - Use $f(x) = 2x + 1$ when $x$ is zero or positive ## Evaluating Piecewise Functions To evaluate $f(a)$ for a piecewise function: 1. Determine which condition $a$ satisfies 2. Use the formula for that piece 3. Calculate the value ### Example For the function above: - $f(-2) = (-2)^2 = 4$ (use first piece since $-2 < 0$) - $f(0) = 2(0) + 1 = 1$ (use second piece since $0 \geq 0$) - $f(3) = 2(3) + 1 = 7$ (use second piece since $3 \geq 0$) ## Continuity of Piecewise Functions A piecewise function is **continuous** at $x = a$ if: 1. $f(a)$ is defined 2. $\lim_{x \to a} f(x)$ exists 3. $\lim_{x \to a} f(x) = f(a)$ **Practical check:** The function is continuous if the pieces "connect" (no jump or gap). ### Checking Continuity at a Boundary For continuity at $x = c$ (a boundary point): - Evaluate the left piece at $x = c$: $\lim_{x \to c^-} f(x)$ - Evaluate the right piece at $x = c$: $\lim_{x \to c^+} f(x)$ - Check which piece includes $c$ to find $f(c)$ - If left limit = right limit = $f(c)$, the function is continuous ## Absolute Value as a Piecewise Function The absolute value function is a common piecewise function: $$|x| = \begin{cases} x & \text{if } x \geq 0 \\ -x & \text{if } x < 0 \end{cases}$$ ## Domain and Range - **Domain**: Usually all real numbers, unless specified otherwise - **Range**: Combine the ranges from all pieces (may need to sketch or analyze) ## Graphing Piecewise Functions 1. Graph each piece on its specified interval 2. Use open circles ($\circ$) for excluded endpoints 3. Use closed circles ($\bullet$) for included endpoints 4. Check for continuity at boundary points

๐Ÿ“š Practice Problems

1Problem 1easy

โ“ Question:

Evaluate the piecewise function f(x)={x2+1ifย xโ‰คโˆ’13xifย โˆ’1<x<25ifย xโ‰ฅ2f(x) = \begin{cases} x^2 + 1 & \text{if } x \leq -1 \\ 3x & \text{if } -1 < x < 2 \\ 5 & \text{if } x \geq 2 \end{cases} at x=โˆ’1x = -1, x=0x = 0, and x=3x = 3.

๐Ÿ’ก Show Solution

Evaluate at each point:

For x=โˆ’1x = -1: Check which condition: โˆ’1โ‰คโˆ’1-1 \leq -1 โœ“ (first piece) f(โˆ’1)=(โˆ’1)2+1=1+1=2f(-1) = (-1)^2 + 1 = 1 + 1 = 2

For x=0x = 0: Check which condition: โˆ’1<0<2-1 < 0 < 2 โœ“ (second piece) f(0)=3(0)=0f(0) = 3(0) = 0

For x=3x = 3: Check which condition: 3โ‰ฅ23 \geq 2 โœ“ (third piece) f(3)=5f(3) = 5

Answers:

  • f(โˆ’1)=2f(-1) = 2
  • f(0)=0f(0) = 0
  • f(3)=5f(3) = 5

2Problem 2medium

โ“ Question:

Determine whether the piecewise function g(x)={x+3ifย x<1x2+1ifย xโ‰ฅ1g(x) = \begin{cases} x + 3 & \text{if } x < 1 \\ x^2 + 1 & \text{if } x \geq 1 \end{cases} is continuous at x=1x = 1.

๐Ÿ’ก Show Solution

Check continuity at x=1x = 1:

Step 1: Find g(1)g(1) (which piece includes x=1x = 1?) Since xโ‰ฅ1x \geq 1 includes 1, use second piece: g(1)=12+1=2g(1) = 1^2 + 1 = 2

Step 2: Find left-hand limit as xโ†’1โˆ’x \to 1^- (use first piece): limโกxโ†’1โˆ’g(x)=limโกxโ†’1โˆ’(x+3)=1+3=4\lim_{x \to 1^-} g(x) = \lim_{x \to 1^-} (x + 3) = 1 + 3 = 4

Step 3: Find right-hand limit as xโ†’1+x \to 1^+ (use second piece): limโกxโ†’1+g(x)=limโกxโ†’1+(x2+1)=12+1=2\lim_{x \to 1^+} g(x) = \lim_{x \to 1^+} (x^2 + 1) = 1^2 + 1 = 2

Step 4: Compare

  • Left limit: 4
  • Right limit: 2
  • g(1)=2g(1) = 2

Since the left limit (44) โ‰ \neq right limit (22), the overall limit does not exist.

Answer: The function is NOT continuous at x=1x = 1 because there is a jump discontinuity (the two pieces don't connect).

3Problem 3hard

โ“ Question:

Find the value of aa that makes h(x)={2x+aifย x<3x2โˆ’4ifย xโ‰ฅ3h(x) = \begin{cases} 2x + a & \text{if } x < 3 \\ x^2 - 4 & \text{if } x \geq 3 \end{cases} continuous at x=3x = 3.

๐Ÿ’ก Show Solution

For continuity at x=3x = 3, we need: limโกxโ†’3โˆ’h(x)=limโกxโ†’3+h(x)=h(3)\lim_{x \to 3^-} h(x) = \lim_{x \to 3^+} h(x) = h(3)

Step 1: Find h(3)h(3) (use second piece since 3โ‰ฅ33 \geq 3): h(3)=32โˆ’4=9โˆ’4=5h(3) = 3^2 - 4 = 9 - 4 = 5

Step 2: Find right-hand limit (use second piece): limโกxโ†’3+h(x)=limโกxโ†’3+(x2โˆ’4)=32โˆ’4=5\lim_{x \to 3^+} h(x) = \lim_{x \to 3^+} (x^2 - 4) = 3^2 - 4 = 5

Step 3: Find left-hand limit (use first piece with unknown aa): limโกxโ†’3โˆ’h(x)=limโกxโ†’3โˆ’(2x+a)=2(3)+a=6+a\lim_{x \to 3^-} h(x) = \lim_{x \to 3^-} (2x + a) = 2(3) + a = 6 + a

Step 4: Set left limit equal to right limit: 6+a=56 + a = 5 a=โˆ’1a = -1

Verify: With a=โˆ’1a = -1:

  • Left limit: 6+(โˆ’1)=56 + (-1) = 5 โœ“
  • Right limit: 55 โœ“
  • h(3)=5h(3) = 5 โœ“

Answer: a=โˆ’1a = -1 makes the function continuous at x=3x = 3.

4Problem 4medium

โ“ Question:

A function is defined as f(x) = { xยฒ + 1, if x < 0; 2x + 1, if x โ‰ฅ 0 }. Evaluate f(-2), f(0), and f(3).

๐Ÿ’ก Show Solution

Step 1: Evaluate f(-2): Is -2 < 0? Yes Use f(x) = xยฒ + 1 f(-2) = (-2)ยฒ + 1 = 4 + 1 = 5

Step 2: Evaluate f(0): Is 0 < 0? No Is 0 โ‰ฅ 0? Yes Use f(x) = 2x + 1 f(0) = 2(0) + 1 = 1

Step 3: Evaluate f(3): Is 3 < 0? No Is 3 โ‰ฅ 0? Yes Use f(x) = 2x + 1 f(3) = 2(3) + 1 = 7

Answer: f(-2) = 5, f(0) = 1, f(3) = 7

5Problem 5hard

โ“ Question:

For f(x) = { -x + 2, if x โ‰ค 1; xยฒ - 2, if x > 1 }, determine if f is continuous at x = 1.

๐Ÿ’ก Show Solution

Step 1: Find f(1) using the appropriate piece: Since 1 โ‰ค 1, use f(x) = -x + 2 f(1) = -1 + 2 = 1

Step 2: Find the left-hand limit as x approaches 1: lim(xโ†’1โป) f(x) = lim(xโ†’1โป) (-x + 2) = -1 + 2 = 1

Step 3: Find the right-hand limit as x approaches 1: lim(xโ†’1โบ) f(x) = lim(xโ†’1โบ) (xยฒ - 2) = 1ยฒ - 2 = -1

Step 4: Check continuity conditions: For continuity at x = 1: โ€ข lim(xโ†’1โป) f(x) = 1 โ€ข lim(xโ†’1โบ) f(x) = -1 โ€ข f(1) = 1

Step 5: Conclusion: Since lim(xโ†’1โป) f(x) โ‰  lim(xโ†’1โบ) f(x), the function is NOT continuous at x = 1. There is a jump discontinuity at x = 1.

Answer: Not continuous (jump discontinuity at x = 1)