A streaming service recommends shows by finding the single most similar user to you and copying what that user watched.
Each user is described by four features. Here is the query user and the three candidate neighbours:
| User | : ratings per week | : distinct genres | : minutes watched per day | : sessions per week |
|---|---|---|---|---|
| Q (query) | 10 | 5 | 40 | 20 |
| A | 12 | 6 | 45 | 40 |
| B | 16 | 2 | 55 | 8 |
| C | 2 | 7 | 30 | 24 |
The four features are measured in wildly different units, so before any distance is computed each coordinate is divided by that feature's typical spread:
| Feature | Typical spread |
|---|---|
| 2 | |
| 1 | |
| 5 | |
| 4 |
So every user vector becomes with , and all distances below are measured on the scaled vectors.
The system does two different things with two different norms:
What number does the system display?
Give your answer rounded to two decimal places — for example 1.23.