md`Calculations:
${tex.block`
v_1 t \sin \theta = C_y \\
v_1 t \cos \theta = C_x \\
v_2 t = \sqrt{(C_x - B_x)^2 + (C_y - B_y)^2} \\
`}
Then we can plug in the value of B:
${tex.block`
v_2 t = \sqrt{(C_x - ${B[0]})^2 + (C_y - ${B[1]})^2}
`}
and solve for C? or are we solving for t?
`