Solve Recursive Series for Winning Game: A vs B

  • Thread starter Thread starter 8daysAweek
  • Start date Start date
Click For Summary
SUMMARY

The discussion focuses on a two-player game involving recursive series to determine the minimum starting life points for player B to win against player A. Player A starts with 100 life points, inflicting damage equal to 50% of his remaining life points, while player B inflicts 25%. The equations governing their life points are represented as a series and can be expressed in matrix form. The challenge lies in solving these recursive equations to find the optimal starting life points for player B.

PREREQUISITES
  • Understanding of recursive series and sequences
  • Familiarity with matrix algebra and transformations
  • Knowledge of rational numbers and their properties
  • Basic principles of game theory and win conditions
NEXT STEPS
  • Explore methods for solving recursive equations in game theory
  • Learn about matrix representation of linear transformations
  • Investigate the stability of recursive sequences
  • Research strategies for optimizing player strategies in competitive games
USEFUL FOR

This discussion is beneficial for mathematicians, game theorists, and programmers interested in algorithm design for competitive scenarios, particularly those involving recursive calculations and matrix operations.

8daysAweek
Messages
10
Reaction score
0
There is a game with two players: A and B.
Each turn the players shoot at each other simultaneously.
Player A has 100 life points and the damage he inflicts is 50% of his remaining life points. Player B deals 25% respectively. Life points are rational numbers.
A player wins the game when his life points are higher than 1, while his opponent's life points are smaller than 1.
Find the minimum, natural starting life points that player B should have in order to win the game.
I decided to start by representing the life points of each player as a series. I got this:

[tex]a_0 = 100[/tex]
[tex]b_0 = X[/tex]
[tex]a_n = a_{n-1}-{0.25}b_{n-1}[/tex]
[tex]b_n = b_{n-1}-{0.5}a_{n-1}[/tex]

But I got stuck here unable to solve the equations.

Any help or ideas will be appreciated.*This is not homework
 
Last edited:
Physics news on Phys.org
it may help to write it in matrix form
[tex] \begin{pmatrix}<br /> a_{n+1} \\ b_{n+1}<br /> \end{pmatrix}<br /> =<br /> \begin{pmatrix}<br /> 1 & -\frac{1}{4} \\<br /> -\frac{1}{2} & 1\\<br /> \end{pmatrix}<br /> \begin{pmatrix}<br /> a_{n} \\ b_{n}<br /> \end{pmatrix}[/tex]
 
then maybe examine the form of the matrix for several rounds, starting at ao, bo
 

Similar threads

Replies
11
Views
2K
  • · Replies 7 ·
Replies
7
Views
893
  • · Replies 12 ·
Replies
12
Views
2K
  • · Replies 7 ·
Replies
7
Views
2K
Replies
2
Views
4K
  • · Replies 6 ·
Replies
6
Views
2K
Replies
7
Views
2K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 5 ·
Replies
5
Views
2K
  • · Replies 4 ·
Replies
4
Views
2K