How do we come up with complex formulas to explain different life phenomenons

538 views

For example, how did a group of scientist comes up with the formula of “Delicious cake= sqrt(Eggs + flour^3)+constant C”. And is it possible for one to develop and implement the thought process into their daily life?

In: Other

5 Answers

Anonymous 0 Comments

Other answers here are good in the abstract, but let’s try an applied example relevant to every student at some point in their lives.

Suppose a class has a final grade that is 40% the final exam, 40% homework, and 20% the midterm. You’re at the end of the course: you took the midterm and got a 70, and averaged a 75 on the homework. You want to earn a B for the course (that is, at least an 80%). How well do you have to do on the final to ultimately get your B?

More generally, what if you’d done worse on the midterm, or better on the homework? What grade would you need then?

—-

A useful way to think about this kind of problem is to imagine that you *had* what you’re trying to figure out, and think about how you would compute the things you already know.

So. If we *knew* what we got on our final (say, we got a 95), could we compute our grade? Sure.

(Another rule of thumb: it’s often helpful to recast percentages in terms of actual amounts.) Suppose the class has 100 total “points” possible. The final is worth 40 points, the homework is worth 40 points, and the midterm is worth 20. We want to know how many points we got. Well, we got 70% of the midterm points, and 70% of 20 is 14. We got 75% of the homework points, and 75% of 40 is 30. And if we got a 90 on the final (we didn’t yet, but we’re using this as a way to think about *what operations we want to do*), we’d get 95% of its 40 points for a total of 38. Then our total points would be 14 + 30 + 38 = 82 points – so a 95 is enough, at least!

Now, rather than actually finding this number, let’s think about *how* we got it.

70% of 20 is the same thing as (70/100) times 20. 75% of 40 is the same thing as (75/100) times 40. 95% of 40 is the same thing as (95/100) times 40. We computed all these numbers, then added them up. Let’s write that out explicitly, keeping the operations instead of computing them (because we wouldn’t be able to compute them if we didn’t know what one of the numbers actually was):

(70/100) * 20 + (75/100) * 40 + (95/100) * 40 = 82

(So cool, it looks like a 95 would be enough! We *can* still get our B!)

And now let’s try replacing the numbers with where they came from:

(midterm score) * (midterm portion of grade) + (homework score) * (homework portion of grade) + (final score) * (final portion of grade) = final grade

*This* is a formula. If we know all but one of these pieces of information, we can now plug them in and compute the last one. Can you use it to figure out the grade you actually need on the final?

—-

In real world settings, we observe patterns until we understand them well enough to compute with them, and then we just stop writing the numbers and start writing where they come from. So in your example, a baker noticed that you kept computing sqrt(30 + 40)^3 or whatever, then realized that the *30* represented the number of eggs, the *40* represented the amount of flour, and so on.

There are more advanced ways to go about this. If you understand the forces that act on a system, you can use calculus to figure out how it will behave. If you recognize that a system is evolving over time in a way that depends on its current state, you can use the theory of dynamical systems to talk about how it behaves on average. If you recognize that a system has some sort of symmetry to it, that can help you narrow down what equations can describe it (because they must have the same symmetry properties). And so on. At some level, what you’re asking here is “ELI5, literally all of the hard sciences”.

You are viewing 1 out of 5 answers, click here to view all answers.