Guest User

Untitled

a guest
Jan 16th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. f[x_]:=1/(x-3)
  2.  
  3. 3
  4.  
  5. f[x_]:=1/(x-3);
  6. FunctionDomain[f[x], x, Reals]
  7. (* x<3||x>3 *)
  8. Not[%]//FullSimplify
  9. (* x == 3 *)
  10.  
  11. Not[FunctionDomain[f[x], x,Reals]]//FullSimplify
  12. (* x == 3 *)
  13.  
  14. Not[FunctionDomain[f[x], x,Reals]]//FullSimplify //Last
  15. (* 3 *)
  16.  
  17. Not[FunctionDomain[Tan[x], x,Reals]]//FullSimplify
  18. (* 1/2 + x/π ∈ Integers *)
  19.  
  20. Not[FunctionDomain[(x + y)/(x^2 - y^2), {x, y},Reals]]//FullSimplify
  21. (* x^2==y^2 *)
  22.  
  23. Not[Reduce[Abs@f[x] < Infinity, x, Reals]] // FullSimplify // Last
  24. (* 3 *)
  25.  
  26. f[x_] = Product[1/(x - a[i]), {i, 3}]
  27.  
  28. Solve[1/f[x] == 0, x]
  29.  
  30. f[x_, y_] = Product[1/(x + y - a[i]), {i, 3}]
  31. Solve[1/f[x, y] == 0, x]
Add Comment
Please, Sign In to add comment