I'm having a problem with a statitics example.
The calculation for my quantile is not difficult. But I'm wondering which part of my function I need to use.
Let's say my distribution function is like:
$$ F(x)=\begin{cases} \frac {1}{4} x - \frac {3}{2} & \mbox{for } 6 \le x \le 8 \\ \frac {5}{2} - \frac {1}{4} x & \mbox{for } 8 < x \le 10 \\ 0 & \mbox{else} \end{cases} $$
Now. If I need to calculate a Quantile - 0.7 or 0.3 - I know that $ F(x) = 0.3 $, but how do I know which part of my function I need to use?
-- André Nicolas