Advertisement
Rrenode

Your Welcome Shannon

Jan 21st, 2018
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. domain of f(x) = x^2 is all real numbers
  2.  
  3. TEST:
  4. f(1) = 1^2 = 2 [Works]
  5. f(22) = 22^2 = 484 [Works]
  6. f(0) = 0^2 = 0 [Works]
  7.  
  8. These are all defined points
  9. |
  10. |
  11. |
  12. |
  13. domain of f(x) = 2/x is all real numbers except 0
  14.  
  15. Test:
  16. f(1) = 2/1 = 2 [Works]
  17. f(98) = 2/98 = 1/49 [Works]
  18. f(0) = 2/0 = Undefined [Doesn't Work, why?]
  19.  
  20. It should be known that you can not divide by 0, not allowed thus it is undefined.
  21. |
  22. |
  23. |
  24. |
  25. To find the domain of a function start with solving for x in the denominator(bottom) of a fraction.
  26. So we have:
  27. f(x) = (2x) / (x^2 - 4)
  28. Focus on the denominator first:
  29. x^2 - 4
  30. Now solve for x by first factoring:
  31. =(x^2 - 4)
  32. =[(x-2)(x+2)]
  33. Solve for x further by getting x by itself:
  34. (x-2) (x+2)
  35. x=2 x=-2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement