2.11.3. Discussion
The tan function will cause a division-by-zero
exception when $theta is π/2,
3π/2, and so on, because the cosine is 0 for these values.
Similarly, tan and many other functions from
Math::Trig may generate the same error. To trap these, use
eval:
eval {
$y = tan($pi/2);
} or return undef;