Normalize Numbers

Shortly i get some crazy numbers returned from a Social Media Monitoring Beta tool with very long user unfriendly numbers like -0.19528962158203 hunderts of them . to make it more readable and memorizable we should Normalize them in a range of 1- 1000 following formula discovered. 

y = 1 + (x-A)*(10-1)/(B-A) 

To normalize vectors for a Graph we can use Pythagora’s theorem

 |v| = sqrt(x^2 + y^2 + z^2)

Simple Javascript can make the math for any webpage to show the numbers you need in the Format you like same same with Klout and most other Social Media Monitoring tools.

Post your thoughts