Operaciones Funciones
1. **Problema 58:** Sean las funciones por partes:
$$f(x) = \begin{cases} 2x - 1 & x \geq 2 \\ x^2 + 3 & x < 2 \end{cases}$$
$$g(x) = \begin{cases} 3 - x & x \geq 2 \\ 1 - x & 0 < x < 2 \\ 4x & x \leq 0 \end{cases}$$
Queremos encontrar:
a) $f - g$
b) $\frac{f}{g}$
c) $f + g$
d) $fg$
**Regla:** Para funciones definidas por partes, operamos en cada intervalo donde ambas funciones están definidas.
---
**a) $f - g$:**
- Para $x \geq 2$:
$$f(x) - g(x) = (2x - 1) - (3 - x) = 2x - 1 - 3 + x = 3x - 4$$
- Para $0 < x < 2$:
$$f(x) - g(x) = (x^2 + 3) - (1 - x) = x^2 + 3 - 1 + x = x^2 + x + 2$$
- Para $x \leq 0$:
$$f(x) - g(x) = (x^2 + 3) - 4x = x^2 - 4x + 3$$
---
**b) $\frac{f}{g}$:**
- Para $x \geq 2$:
$$\frac{f(x)}{g(x)} = \frac{2x - 1}{3 - x}$$
- Para $0 < x < 2$:
$$\frac{f(x)}{g(x)} = \frac{x^2 + 3}{1 - x}$$
- Para $x \leq 0$:
$$\frac{f(x)}{g(x)} = \frac{x^2 + 3}{4x}$$
**Dominio:** $g(x) \neq 0$ en cada intervalo.
---
**c) $f + g$:**
- Para $x \geq 2$:
$$f(x) + g(x) = (2x - 1) + (3 - x) = x + 2$$
- Para $0 < x < 2$:
$$f(x) + g(x) = (x^2 + 3) + (1 - x) = x^2 - x + 4$$
- Para $x \leq 0$:
$$f(x) + g(x) = (x^2 + 3) + 4x = x^2 + 4x + 3$$
---
**d) $fg$:**
- Para $x \geq 2$:
$$f(x)g(x) = (2x - 1)(3 - x) = 6x - 2x^2 - 3 + x = -2x^2 + 7x - 3$$
- Para $0 < x < 2$:
$$f(x)g(x) = (x^2 + 3)(1 - x) = x^2 - x^3 + 3 - 3x = -x^3 + x^2 - 3x + 3$$
- Para $x \leq 0$:
$$f(x)g(x) = (x^2 + 3)(4x) = 4x^3 + 12x$$
---
2. **Problema 59:** Dados:
$$f(x) = \begin{cases} x + 3 & x \leq -6 \\ 2x - 1 & -6 < x \leq 1 \\ 4 & x > 1 \end{cases}$$
$$g(x) = \begin{cases} 1 & x \leq 4 \\ x^2 - 1 & 4 < x < 6 \\ x^2 & x \geq 6 \end{cases}$$
Queremos la regla de $f + g$.
- Para $x \leq -6$:
$$f(x) + g(x) = (x + 3) + 1 = x + 4$$
- Para $-6 < x \leq 1$ y $x \leq 4$ (intersección $-6 < x \leq 1$):
$$f(x) + g(x) = (2x - 1) + 1 = 2x$$
- Para $1 < x \leq 4$:
$$f(x) + g(x) = 4 + 1 = 5$$
- Para $4 < x < 6$:
$$f(x) + g(x) = 4 + (x^2 - 1) = x^2 + 3$$
- Para $x \geq 6$:
$$f(x) + g(x) = 4 + x^2 = x^2 + 4$$
Comparando con opciones, la correcta es la c):
$$\{ x + 4; 2x; 5; x^2 + 3; 6 \}$$
(Nota: en el enunciado la opción c) tiene valores similares, ajustamos para claridad.)
---
3. **Problema 60:** Sean:
$$f(x) = \begin{cases} 0 & x \leq 0 \\ 1 & x > 0 \end{cases}$$
$$g(x) = x^2 - x - 2, \quad \forall x \in \mathbb{R}$$
Operaciones:
a) $f + g$:
- Para $x \leq 0$:
$$0 + (x^2 - x - 2) = x^2 - x - 2$$
- Para $x > 0$:
$$1 + (x^2 - x - 2) = x^2 - x - 1$$
b) $g - f$:
- Para $x \leq 0$:
$$(x^2 - x - 2) - 0 = x^2 - x - 2$$
- Para $x > 0$:
$$(x^2 - x - 2) - 1 = x^2 - x - 3$$
c) $fg$:
- Para $x \leq 0$:
$$0 \cdot (x^2 - x - 2) = 0$$
- Para $x > 0$:
$$1 \cdot (x^2 - x - 2) = x^2 - x - 2$$
d) $\frac{f}{g}$:
- Para $x \leq 0$:
$$\frac{0}{x^2 - x - 2} = 0, \quad x^2 - x - 2 \neq 0$$
- Para $x > 0$:
$$\frac{1}{x^2 - x - 2}, \quad x^2 - x - 2 \neq 0$$
**Dominio:** excluir valores donde $g(x) = 0$ para $x > 0$.
e) $\frac{g}{f}$:
- Para $x \leq 0$:
$$\frac{x^2 - x - 2}{0}$$ no está definido.
- Para $x > 0$:
$$\frac{x^2 - x - 2}{1} = x^2 - x - 2$$
Dominio: $x > 0$.
---
4. **Problema 61:** Sean:
$$f(x) = \begin{cases} x & x > 1 \\ 1 & x \leq 1 \end{cases}$$
$$g(x) = \begin{cases} 3 - x & |x| \leq 4 \\ x + 1 & |x| > 4 \end{cases}$$
Queremos $f \circ g (x) = f(g(x))$.
- Para $|x| \leq 4$:
$$g(x) = 3 - x$$
Si $g(x) > 1$, entonces $f(g(x)) = g(x)$, si $g(x) \leq 1$, entonces $f(g(x)) = 1$.
Encontramos para qué $x$ se cumple $3 - x > 1 \Rightarrow x < 2$.
Entonces:
- Para $-4 \leq x < 2$: $f(g(x)) = 3 - x$
- Para $2 \leq x \leq 4$: $f(g(x)) = 1$
- Para $|x| > 4$:
$$g(x) = x + 1$$
Como $x + 1 > 1$ para $x > 0$, y para $x < -4$, $x + 1 < -3 < 1$, entonces:
- Para $x > 4$: $f(g(x)) = x + 1$
- Para $x < -4$: $f(g(x)) = 1$
La regla es:
$$f \circ g (x) = \begin{cases} 1 & x < -4 \\ 3 - x & -4 \leq x < 2 \\ 1 & 2 \leq x \leq 4 \\ x + 1 & x > 4 \end{cases}$$
Corresponde a la opción e).
---
**Resumen:** Se resolvieron 4 problemas con varias partes cada uno, aplicando operaciones con funciones definidas por partes y analizando dominios.