I have never learned math through English as a medium of instruction, so my English math vocabulary is very poor.
My problem: I had some data for different neighborhoods. For example:
Neighborhood A: 10 square miles
Neighborhood B: 8 square miles
Neighborhood C: 7 square miles
What I needed to do is express these values in a 0 to 100 range. So, I thought about it and I came up with this formula:

v – value in the 0 to 100 range
n – given value
max – maximum value of the input range
min – minimum value of input range
I think this is the correct formula to represent the data under an even range. The problem is the professor (a geography professor) is asking why I chose this formula. Moreover, he is asking for a source. Anyone knows how this formula is called and what source to use for it?
I don't think this formula has a name. One can however prove it does what you wanted.
You just need to prove that $\frac{n-\min}{\max-\min}$ sends all the values correctly on $[0,1]$ since after you're multiplying by $100$.
The formula is equivalent to $n=x(\max-\min)+\min$ where $x$ is the new value in $[0,1]$.
$x(\max-\min)$ gives the distance between $x$ and $\min$ (for instance if $x=0.5$,$x(\max-\min)$ is half the length of the interval)
Adding $\min$ offsets $x$ so that it starts at the right point.