Advertisement
Guest User

Untitled

a guest
Aug 18th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. documentclass{article}
  2. usepackage{standalone}
  3. usepackage{tikz}
  4. begin{document}
  5. begin{tikzpicture}
  6. draw [->] (0, 0) -- (5, 0) node [right] {$X$};
  7. draw [->] (0, 0) -- (0, 3) node [above] {$Y$};
  8.  
  9. draw [domain=0.66:4.5, thick, blue] plot (x, {2/x});
  10. draw [domain=1.66:4.5, thick, blue] plot (x, {6/x});
  11.  
  12. draw [red, ultra thick] (3, 2) edge [bend right=10] (3.5, 0.57);
  13. draw [red, ultra thick] (2, 3) edge [bend right=10] (2.5, 0.8);
  14.  
  15. draw [domain=2.5:3.5, ultra thick, red] plot (x, {2/x});
  16. draw [domain=2:3, ultra thick, red] plot (x, {6/x});
  17.  
  18. node [above] at (2, 3) {$C$};
  19. node [below] at (2.5, 0.8) {$B$};
  20. node [above] at (3, 2) {$D$};
  21. node [below] at (3.5, 0.57) {$A$};
  22. end{tikzpicture}
  23. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement