I am working on this problem.
Two men, A and B run in the same direction around a circular track, starting at the same time from the same point. The speed of A is 5 km/hr and that of B is 3 km/hr. If the track has a perimeter of 6 km, after how much time will the two meet?
How to solve this question without using the concept of the relativity?
I believe the answer is 3.
It is approachable using simple modular arithmetic. We just wish to find the minimal positive solution $t$ of:
$$3t \equiv 5t \pmod 6$$
Which is solved when $3t - 5t = 6z$ for $z \in \mathbb{Z}$. It follows:
$3t - 5t = -2t = 6z \rightarrow t = -3z$ for $z \in \mathbb{Z}$.
We consequently have the first nontrivial positive solution is 3.
Note: if you are unfamiliar with "mod", it is akin to the remainder under integer division. What is occurring mathematically here then is essentially a "reset" when one makes a lap around the track, allowing us to evaluate the problem without relativity.