Guest User

Untitled

a guest
Oct 22nd, 2016
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. f2[x_ /; 1 <= x <= 3] := (x + 1) (x - 2)
  2. Plot[f2[x], {x, -5, 5}]
  3.  
  4. f3[x_ /; 1 <= x <= 3] := (x + 1) (x - 2)
  5. f3[x_] := f3[Mod[x, 2]]
  6. Plot[f3[x], {x, -10, 10}]
  7.  
  8. Plot[f2[x], {x, -10, 10}]
Add Comment
Please, Sign In to add comment