2021 JMC 10 Problems/Problem 16

Revision as of 16:31, 1 April 2021 by Skyscraper (talk | contribs) (Created page with "==Problem== If <math>a</math> and <math>b</math> are randomly chosen numbers between <math>-5</math> and <math>5</math>, what is the probability that <math>\lfloor |a| \rfloo...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Problem

If $a$ and $b$ are randomly chosen numbers between $-5$ and $5$, what is the probability that $\lfloor |a| \rfloor - | \lfloor b \rfloor |=0 ?$ (Recall that $\lfloor r \rfloor$ denotes the greatest integer less than or equal to $r.$)

$\textbf{(A) } \dfrac{1}{20} \qquad\textbf{(B) } \dfrac{2}{25} \qquad\textbf{(C) } \dfrac{1}{10} \qquad\textbf{(D) } \dfrac{9}{50} \qquad\textbf{(E) } \dfrac{1}{5}$

Solution

We use an area-based approach along with number lines, where are total area is $10 \cdot 10=100$. We can stop worrying about what happens when at least one of $a$ and $b$ is an integer, because those cases are negligible. Below is the number line representing the value of $\lfloor |a| \rfloor$ in the intervals. If seeing what happens on $a \in (n,n+1)$ is too complicated, plugging in $a=n+\frac{1}{2}$ will suffice.

[asy] import olympiad; size(4.5cm); int start=-5; int end=5; for(int i=start; i<end+1; ++i) { add(pathticks((i+1,0)--(i-1,0),1)); } draw((start-1,0)--(end+1,0),arrow=ArcArrows(HookHead)); label("$4$",(-4.5,0.3),N); label("$3$",(-3.5,0.3),N); label("$2$",(-2.5,0.3),N); label("$1$",(-1.5,0.3),N); label("$0$",(-0.5,0.3),N); label("$4$",(4.5,0.3),N); label("$3$",(3.5,0.3),N); label("$2$",(2.5,0.3),N); label("$1$",(1.5,0.3),N); label("$0$",(0.5,0.3),N); [/asy]


Below is the number line representing the value of $| \lfloor b \rfloor |$ in the intervals.


[asy] import olympiad; size(4.5cm); int start=-5; int end=5; for(int i=start; i<end+1; ++i) { add(pathticks((i+1,0)--(i-1,0),1)); } draw((start-1,0)--(end+1,0),arrow=ArcArrows(HookHead)); label("$5$",(-4.5,0.3),N); label("$4$",(-3.5,0.3),N); label("$3$",(-2.5,0.3),N); label("$2$",(-1.5,0.3),N); label("$1$",(-0.5,0.3),N); label("$4$",(4.5,0.3),N); label("$3$",(3.5,0.3),N); label("$2$",(2.5,0.3),N); label("$1$",(1.5,0.3),N); label("$0$",(0.5,0.3),N); [/asy]


We seek the number of $10 \cdot 10$ pairs of $a$ and $b$ intervals where $\lfloor |a| \rfloor =| \lfloor b \rfloor |$. Doing simple casework on the equal value, we have $2 \cdot 1 + 2 \cdot 2 + 2 \cdot 2 + 2 \cdot 2 + 2 \cdot 2 + 0 \cdot 1=18$ cases, so our answer is $\frac{18}{10 \cdot 10}=\frac{9}{50}$.