So: There's this trivia game called that we use in my German (second language) class, and to finish the game, you have to collect 50,000 in-game dollars. To get money, you answer simple trivia questions. At first, a question is worth 1 dollar. The next is worth 2, then 3, etc until you break your answer streak by either being wrong or buying an upgrade.
I wrote the function f(X) = B((X/2)(2(C) + (X-1)(D))) to represent the total number of dollars earned in a given streak, where X is equal to the number of questions answered in a given streak, C is the number of dollars the first question in a streak is worth, and D is the number of additional dollars you earn for each successive question answered correctly in a streak. The initial function before buying any upgrades is f₁(x) = (X/2)(2+(X-1)).
With enough money, you can buy 4 upgrades from each of 3 categories that can change the output of the function. One is a "Multiplier" (B) upgrade, which will increase the B value. Another is the "Money Per Question" (C) upgrade, which will increase the C value. The last is the "Streak Bonus" (D) upgrade, which increases the D value.
B costs $50 for 1.5, $300 for 2, 2,000 for 3, and 12,000 for 5.
C costs $10 for 5, $100 for 50, $1,000 for 100, and $10,000 for 500.
D costs $20 for 3, $200 for 10, $2,000 for 50, and $20,000 for 250
Note that you do not have to buy the cheaper upgrades before the others, and they do not stack. The streak ends every time you buy an upgrade, but this only resets the streak bonus.
So, my question is: how can I optimize my purchase of upgrades in this silly little game so as to answer the least questions to earn $50,000, assuming I get none of them wrong?