Consider:
I need to draw a pulley system as in the figure. How can I do that?
\begin{tikzpicture}
\fill[pattern=north east lines] (-3,0) rectangle (3,.3);
\draw(-3,0)--(3,0);
\draw(-2.5,0)--(-2.5,-2.4);
\draw(2.5,0)--(2.5,-1);
\draw[fill=white] (-2.5,-2.4) circle (.3);
\draw[fill=white] (2.5,-1) circle (.3);
\draw[fill=white] (0,-3) circle (.153);
\draw
(2.5,-1) coordinate (a) node[right] {}
-- (0,-3) coordinate (b) node[left] {}
-- (0,-2.75) coordinate (c) node[above right] {}
pic["$\beta$", draw=orange, <->, angle eccentricity=1.2172, angle radius=.51cm]
{angle=a--b--c};
\draw
(0,-2.75) coordinate (a) node[right] {}
-- (0,-3) coordinate (b) node[left] {}
-- (-2.5,-2.4) coordinate (c) node[above right] {}
pic["$\alpha$", draw=orange, <->, angle eccentricity=.72172, angle radius=.751cm]
{angle=a--b--c};
\draw[dashed] (0,-3)--(0,-1);
\draw[fill=white] (-2.5,-2.4) circle (.3);
\draw[fill=white] (2.5,-1) circle (.3);
\draw[fill=white] (0,-3) circle (.153);
\end{tikzpicture}

