
The question was also asked on TeX.SX.
i tryed this: but i don't know how to make 4 points like in the picture
Code: Select all
\usetikzlibrary{arrows,intersections}
\tikzpicture[
thick,
>=stealth',
dot/.style = {
draw,
fill=white,
circle,
inner sep=1pt,
minimum size=7pt
}
]
\coordinate (O) at (0,0);
\draw[->] (-0.3,0) -- (8,0) coordinate[label={below:$t$}] (xmax);
\draw[->] (0,-0.3) -- (0,7) coordinate[label={right:$y$}] (ymax);
\path[name path=x] (0,0) -- (7,7);
\path[name path=y] plot[smooth] coordinates {(-0.3,2) (2,1.5) (3,2.8) (4.5,7)};
\scope[name intersections={of=x and y,name=i}]
\draw (0,0) -- (5,5) node[pos=1,below right] {f(t)=t};
\draw (i-1) node[dot](i-1) {} -- node[left] {} (i-1 |- O) node[dot,label={below:$(r-1)!$}] {};
\path (i-2) node[dot] (i-2) {} ;
\draw (i-2) -- (i-2 |- O) node[dot,label={below:$ r!$}] {};
\endscope
\endtikzpicture