I would like to draw the picture attached using TikZ. Red lines are not needed. I only need to draw the squared root of s. I use the code below, however, don't know how to insert the "s" in it. In addition, how can I change the linewidth of the first line ? it should be wider than the other lines.
\begin{tikzpicture}
\draw (0,4) -- (1,1) -- (2,6) -- (6,6);
\end{tikzpicture}
Attached



\node[scale=5.3] {$\sqrt{s}$};– cis Aug 04 '14 at 15:59\draw (0,4) -- (1,1) node[green, right, xshift=2mm]{some text} -- (2,6) -- (6,6);– cis Aug 04 '14 at 18:35