Consider the following game between two players. Both players simultaneously declare “one” or “two”. Player 1 wins if the sum of the two declared numbers is odd and Player 2 wins if the sum is even. In either case, the loser is obliged to pay the winner (in tokens) the sum of the two declared numbers. So, Player 1 may have to pay 2 or 4 tokens but may win 3 tokens. Part 1: Write a computer program in Java that allows a user to play this game against a computer. The computer’s strategy will be as follows. A computer player will have a threshold variable t. The computer will generate a random number between 0 and 1. If the number is greater than t, the computer will declare a “two”. If the random number is less than t, the computer will declare “one”. I have included templates for a Game class, a computer Player class, and a test class named OddEven. Part 2: Modify the Game class so that it also allows two computer players to play a game against each other. Do this by overloading the constructor so that when a game is instantiated, one may specify whether or not it is interactive or simulated. Since both players are computers in a simulated game, each computer player will be a different object with its own threshold (instance) variables t and its own score (tokens won or lost so far in a session). Write another test class called Simulation that allows you to run some simulations (play many games of computer versus computer) using various combinations of the threshold variable t for each player. A simulated game need not print or return anything but you should add some functionality to the Game class so that you can access the current amount of tokens wither player has won or lost so far. Check to see how much each player loses of wins for each combination of thresholds after many games. Is it better to be the odd player? The even player? Does it matter? Better here means that if enough games are played, there is a strategy that one player can use that will guarantee a positive average outcome regardless of the other player’s strategy. We call it a fair game if there is no such strategy for either player. By using the computer vs. computer option in your program, set up some extended sessions of the computer vs. computer to test different combinations of player 1’s t and player 2’s t (Hint: use a nested for loop structure to vary each player’s threshold). Determine if either player has an advantage and if so, which player it is and determine the threshold value t that demonstrates the advantage. I have included a sample test class for this part called SimTest. You should not alter this class and your code must work with it. I will test your code using something similar to this.

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Assignment Requirements


Consider the following game between two players. Both players simultaneously declare “one” or “two”. Player 1 wins if the sum of the two declared numbers is odd and Player 2 wins if the sum is even. In either case, the loser is obliged to pay the winner (in tokens) the sum of the two declared numbers. So, Player 1 may have to pay 2 or 4 tokens but may win 3 tokens.
Part 1: Write a computer program in Java that allows a user to play this game against a computer.
The computer’s strategy will be as follows. A computer player will have a threshold variable t. The computer will generate a random number between 0 and 1. If the number is greater than t, the computer will declare a “two”. If the random number is less than t, the computer will declare “one”. I have included templates for a Game class, a computer Player class, and a test class named
OddEven.


Part 2: Modify the Game class so that it also allows two computer players to play a game against each other. Do this by overloading the constructor so that when a game is instantiated, one may specify whether or not it is interactive or simulated. Since both players are computers in a simulated game, each computer player will be a different object with its own threshold (instance) variables t and its own score (tokens won or lost so far in a session).
Write another test class called Simulation that allows you to run some simulations (play many games of computer versus computer) using various combinations of the threshold variable t for each player. A simulated game need not print or return anything but you should add some functionality to the Game class so that you can access the current amount of tokens wither player has won or lost so far. Check to see how much each player loses of wins for each combination of thresholds after many games. Is it better to be the odd player? The even player? Does it matter? Better here means that if enough games are played, there is a strategy that one player can use that will guarantee a positive average outcome regardless of the other player’s strategy. We call it a fair game if there is no such strategy for either player. By using the computer vs. computer option in your program, set up some extended sessions of the computer vs. computer to test different combinations of player 1’s t and player 2’s t (Hint: use a nested for loop structure to vary each player’s threshold). Determine if either player has an advantage and if so, which player it is and determine the threshold value t that demonstrates the advantage. I have included a sample test class for this part called SimTest. You should not alter this class and your code must work with it. I will
test your code using something similar to this.

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 1 images

Blurred answer
Knowledge Booster
Program on Numbers
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education