I did some physics problem and now I see something non-desirable with physics:
Too many equations to remember.
Physicist creates so many words and letters to detonate trivial combination. Those increase the amount of stuff to be remembered.
Why do they still do it? Because it help one remember them easier.(Seems like a paradox but not...)
But I still don't like to remember stuff.
From now on
m=mass, t=time, l=length
Pressure. What a useless word.
What if I replace the word pressure with
. For example the following questions.
In a system, an object with the area of 14m^2 are under 19pascal pressure, what is the force excreted on this object.
Express elementary way I like.
In a system, an object with the
of 14m^2 are under 19 kg/(m·s^2)
, what is the
excreted on this object.
I found this much easier.
I don't know how many formulas I have to remember, but I think it's O(n^2)(maybe lower) if there are n physics terms.
I know it improves the speed of computation. It's hash table speed... O(1) for finding relationship between all those placeholders...
I like to reduce it to exactly n formulas. (Lower bound? maybe can be improved, for a lot more computation)
Convert w/e physics term into the 5 basic units. mass, time, length, charge and temperature. Remember that.
The computation is bad...
One have to know should one term multiply or divide another term, which will be consist of a few subtraction and addition because it's purely about cancellation.
This has to be done by trial and error. bring it to O(2^n) computation time. when there is only k terms involved in an equation, the worst number of trials are 2^(n-1).
an simple algorithm
List the exponents in for each basic unit present in the equation on lines. the last line is what we want in the result.
| sign |
m |
l |
t |
| |
1 |
-3 |
1 |
| |
2 |
2 |
1 |
| |
1 |
0 |
1 |
| |
2 |
-1 |
1 |
add signs so the sum of the rows will result the last row. from trial and error, a few simple techniques can be used to find the answer faster.
| sign |
m |
l |
t |
| + |
1 |
-3 |
1 |
| + |
2 |
2 |
1 |
| - |
1 |
0 |
1 |
| |
2 |
-1 |
1 |
The formula is found, plug in the numbers!
Yes, it is in fact a hand based version of this computer science problem
Given: vectors
to 
The solution is unique and exists.
Create an algorithm that can find
to
that are either 1, 0 or -1 so
I think there is some improvement to the algorithm. If I can prove the following.
Suppose
is the xth element in the vector.
If the solution of the
's for
is unique.
Then the solution for the
's for
is also unique, for arbitrary x.
If
is the dimension of a vector.
Then we expect to reduce to
of the original running time..
Disproved. Counter example
given
,
, want 
Physics is not my thing. Don't like trivial applied math with experiments.
Recent comments
19 hours 18 min ago
1 day 11 hours ago
1 day 12 hours ago
3 days 10 hours ago
3 days 11 hours ago
3 days 11 hours ago
3 days 15 hours ago
4 days 22 min ago
4 days 2 hours ago
5 days 11 hours ago