I try to interpolate these curves and what I get is not very nice: 
What I tried :
\documentclass[french,25pt,a4paper,landscape]{article} \usepackage{etex} \usepackage{tikz} \usepackage[T1]{fontenc} \usepackage{xcolor} \begin{document} \begin{center} \definecolor{qqwuqq}{rgb}{0,0.39215686274509803,0} \definecolor{uuuuuu}{rgb}{0.26666666666666666,0.26666666666666666,0.26666666666666666} \definecolor{qqqqff}{rgb}{0,0,1} \begin{tikzpicture}[line cap=round,line join=round,>=stealth,x=1cm,y=1cm] \coordinate[label=below:$O$] (A) at (0,0); \coordinate[label=below left:] (B) at (0,4); \coordinate[label=below left:$t$] (C) at (4,0); \coordinate[label=above right:] (D) at (0.54,1.04); \coordinate[label=above right:] (E) at (1.38,1.58); \coordinate[label=above right:] (F) at (1.9,1.667); \coordinate[label=above right:] (G) at (2.76,1.767); \coordinate[label=above right:] (H) at (4.36,1.8); \coordinate[label=above right:] (I) at (0.3,3.82); \coordinate[label=above right:] (J) at (0.5,3.5); \coordinate[label=above right:] (K) at (0.7,2.94); \coordinate[label=above right:] (L) at (0.84,2.44); \coordinate[label=above right:] (M) at (1,2); \coordinate[label=above right:] (N) at (1.24,1.36); \coordinate[label=above right:] (O) at (1.86,0.86); \coordinate[label=above right:] (P) at (2.44,0.54); \coordinate[label=above right:] (Q) at (2.86,0.22); \coordinate[label=above right:] (R) at (3.42,0.18); \coordinate[label=above right:] (S) at (0.84,0.38); \coordinate[label=above right:] (T) at (1.61,1.04); \coordinate[label=above right:] (U) at (1.92,1.68); \coordinate[label=above right:] (V) at (2.52,3.04); \coordinate[label=above right:] (W) at (2.84,4.32); \draw [->,line width=0.8pt] (A) -- (B) node[midway, below left] {}; \draw [->,line width=0.8pt] (A) -- (C) node[midway, above] {}; \draw [red] plot [smooth, tension=0.6] coordinates { (A) (D) (E) (F) (G) (H)}; \draw [blue, dashed] plot [smooth, tension=0.6] coordinates { (I) (J) (K) (L) (M) (N) (O) (P) (Q) (R)}; \draw [green] plot [smooth, tension=0.6] coordinates { (A) (S) (T) (U) (V) (W)}; \fill (A) circle (2pt); \fill (B) circle (0pt); \fill (C) circle (0pt); \end{tikzpicture} \end{center} \end{document} The result :
How do I smooth out these curves so they look more real? And I would also like to add the circled numbers

