Newton and Gravity

Attendee of the meeting: Isaac Newton

Today's Agenda: Gravity, more gravity, and even more gravity

Einstein's Counterpoint: Time and Relativity Hawking's Antigravity Agenda
			Mathematical Formula:
			F = G*m1*m2 / r^2
			G = 6.674 * 10^-11
		
// Gravity simulator in JavaScript // (not actually working) function simulateGravity(x, y) { return x - 9.81 * Math.sqrt(y); }