Guest User

Untitled

a guest
Dec 10th, 2017
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. Okay, I'm facing a math problem in a game that I play online. It is to do with car part setups in order to get the fastest time in a lap. In the game, there are 6 parts that can be configured, but for simplicity, we will pretend that there are only one.
  2.  
  3. A person sets up a car with a component, and a value can be assigned (between 0-999) and you can do a test lap to see how fast you go. For each track, there is an optimum value (O) which will give you the fastest time. In this example, we will pretend that is is 400
  4.  
  5. I run a few test laps, and get some information
  6.  
  7. LAP VALUE TIME
  8. 1 500 1:40.000
  9. 2. 600 1:42.000
  10. 3. 300 1:40.000
  11.  
  12. I see that the values 500 and 300 are exactly the same, so I can conclude that O is 400.
  13.  
  14. Forgetting we know the new value and using the same optimum value as 400 , we do a new run:
  15.  
  16. LAP VALUE TIME
  17. 1 500 1:40.000
  18. 2. 350 1:39.200
  19.  
  20.  
  21. Coming from a programming field, I realise that I can take this data and calculate the optimum value for this. I just have unfortunately not touched a math book since high school, and I have forgotten how to make this stuff useful.
  22.  
  23. QUESTIONS:
  24. 1. What field of math should I research to help myself.
  25. 2. Using the above example, I believe that 3 attempts are required to get O. Is it possible with just 2?
  26. 3. If I was tuning 2 components, not just 1, what would be an optimum way to get O?
  27.  
  28.  
  29. Thanks for reading. :)
Add Comment
Please, Sign In to add comment