

InterviewSolution
Saved Bookmarks
1. |
If f: R → R be the function defined by f(x) = 4x3 + 7, show that f is a bijection. |
Answer» Given as f: R → R is a function defined by f(x) = 4x3 + 7 Let x and y be any two elements in domain (R), such that f(x) = f(y) ⇒ 4x3 + 7 = 4y3 + 7 ⇒ 4x3 = 4y3 ⇒ x3 = y3 ⇒ x = y Therefore, f is one-one. Surjectivity: f(x) = y ⇒ 4x3 + 7 = y ⇒ 4x3 = y − 7 ⇒ x3 = (y – 7)/4 ⇒ x = 3√(y - 7)/4 in R Therefore, for every element in the co-domain, there exists some pre-image in the domain. f is onto. |
|