InterviewSolution
Saved Bookmarks
| 1. |
If f : R → R and g : R → R are given by f(x) = 3x + 1 and g(x) = x2 + 2Find fog(2). |
|
Answer» fog(x) = f(g(x)) = f(x2 + 2) = 3(x2 + 2) + 1 = 3x2 + 6 + 1 ⇒ fog(x) = 3x2 + 7 ∴ fog(2) = 3 × 22 + 7 = 12 + 7 = 19 |
|