lol math test
This commit is contained in:
parent
f79852dd93
commit
defb41b48d
1 changed files with 20 additions and 0 deletions
20
day6/math6
Normal file
20
day6/math6
Normal file
|
@ -0,0 +1,20 @@
|
|||
T = 7
|
||||
D = 9
|
||||
|
||||
d = t * (T - t)
|
||||
d = tT - t²
|
||||
for which range of t is d > D?
|
||||
0 >= t >= T
|
||||
|
||||
10 = t7 - t²
|
||||
10 = - t² + t7
|
||||
-10 = t² - 7t
|
||||
3.5² - 10 = t² - 7t + 3.5²
|
||||
49/4 - 10 = t² - 7t + 49/4
|
||||
9/4 = (t - 7/2)²
|
||||
|
||||
t - 7/2 = 3/2 or -3/2
|
||||
t = 10/2 or 4/2
|
||||
|
||||
5, 2
|
||||
(5 + 1) - 2 = 4
|
Loading…
Reference in a new issue