Final Project (Choose 1 of the following) Max Score: A

Size: px
Start display at page:

Download "Final Project (Choose 1 of the following) Max Score: A"

Transcription

1 Final Project (Choose 1 of the following) Max Score: A #1 - The Game of Nim The game of Nim starts with a random number of stones between 15 and 30. Two players alternate turns and on each turn may take either 1,2, or 3 stones from the pile. The player forced to take the last stone loses. Create a Nim application that allows the user to play against the computer. In this version of the game, the application generates the number of stones to begin with, the number of stones the computer takes, and the user to go first. The application interface should look similar to: Include code that prevents the user and the computer from taking an illegal number of stones. For example, neither should be allowed to take three stones when there are only 1 or 2 left. Your program should use: ValidEntry function to check the number entered by the user or computer to make sure that it is a valid # and that there are enough stones left to take. (ask for help with this if you do not understand) RandomNum function like the one we made in class to generate a random number of stones and the number that the computer guesses Separate procedures for the user s turn and the computer s turn.

2 #2 Mastermind Max Score: A The game of mastermind is played as follows: one player (the code-maker) chooses a secret arrangement of colored pegs and the other player (the code-breaker) tries to guess it. After each guess, the code-maker reports two numbers: 1. The number of pegs that are the correct color in the correct position. 2. The number of pegs that are the correct color regardless of whether they are in the correct position Create a Mastermind application where the computer is the code-maker and the player is the codebreaker. For simplicity, do not allow the secret arrangement of colored pegs to have duplicate colors. The application interface should look similar to: Your program should Use a ChooseColors procedure the has intpeg1color, intpeg2color, and intpeg3color parameters to generate unique colors for the secret arrangement of colored pegs. Use numbers 1 through 5 to represent colors and use RandomNum Function to generate the random numbers. Call the ChooseColors procedure from Form_Load Use a procedure called CheckColors to check for the number of correct colors Use a procedure called CorrectPegs to check to see how many pegs are in the same position

3 #3 Tic Tac Toe Max Score:B+ We all know the rules of Tic-Tac-Toe, so there is no need to go over them. This game of tic-tac-toe will involve two people, the user and the computer. The user will always go first and the computer will always go second. Create a tic-tac-toe game similar to the one below that will allow a person and computer to play the game and will decide who won and whether or not the game is a stalemate. The game needs to include a RandomNum Function that will decide which square the computer will choose. Have the computer choose a random number between 1 and 9 (have that correspond to a specific square). Your game also needs to include a PersonTurn Procedure, ComputerTurn procedure and a CheckGame procedure. The ComputerTurn procedure should decide where the computer is going to make its next move. The CheckGame procedure should check to see if someone has won the game.

4 #4 Hi Lo Game Max Score: C In the Hi-Lo Game, the player begins with a score of The player enters the number of points to risk and chooses High or Low. The player s choice of high or low is compared to a random number between 1 and 13, inclusive. If the number is between 1 and 6, it is considered Low. If it is between 8 and 13, it is considered High. The number 7 is neither high nor low, and player loses the points at risk. If the player guesses incorrectly, he or she loses the points at risk. If the player guesses correctly, he or she receives double the points at risk. Create a Hi-Low application that allows the user to enter the number points at risk and pick either High or Low and then display the result. The application interface should look similar to: Your program should include the following elements: RandomNum Function A RandomNum Function that you will use to generate a random number between 1 and 13: Private Function RandomNum(ByVal inthighnum As Integer, ByVal intlownum As Integer) as Integer StartGame Procedure A StartGame procedure that will simply set the number of points to 1000 when a new game starts. You should call this procedure in form load to start the program and whenever they press the Play Again button. Private Sub StartGame()

5 #5 Slot Machine Max Grade C+ We have all seen or played a slot machine before. You job in this program is to create a slot machine with at least 3 wheels of pictures that need to be matched in different combinations to win a prize. The rules are as follows 1)Choose some pictures for the slot machine 2) Determine how to score the game 3) Start the person with a set amount of points 4)Subtract points just for spinning the wheel 5) Update score correctly 6) Add the following functions/methods Private Function RndInt(ByVal intlownum as integer, ByVal inthighnum as integer) as integer Private Sub Spin() 'Randomly selects pictures to show 'Displays pictures End Sub Private Sub CheckResult() 'Checks to see if you won 'Display a message box if your won or lost 'Updates your score correctly End Sub

Final Project (Choose 1 of the following) Max Score: A

Final Project (Choose 1 of the following) Max Score: A Final Project (Choose 1 of the following) Max Score: A #1 - The Game of Nim The game of Nim starts with a random number of stones between 15 and 30. Two players alternate turns and on each turn may take

More information

Codebreaker Lesson Plan

Codebreaker Lesson Plan Codebreaker Lesson Plan Summary The game Mastermind (figure 1) is a plastic puzzle game in which one player (the codemaker) comes up with a secret code consisting of 4 colors chosen from red, green, blue,

More information

Power Solutions November 19, 2017

Power Solutions November 19, 2017 All problems proposed by Jordan Haack The Rules of Mastermind Power s November 19, 2017 MasterMind is a two-player code-breaking game. One of the players is the code-setter, and the other player acts as

More information

Jim and Nim. Japheth Wood New York Math Circle. August 6, 2011

Jim and Nim. Japheth Wood New York Math Circle. August 6, 2011 Jim and Nim Japheth Wood New York Math Circle August 6, 2011 Outline 1. Games Outline 1. Games 2. Nim Outline 1. Games 2. Nim 3. Strategies Outline 1. Games 2. Nim 3. Strategies 4. Jim Outline 1. Games

More information

Lecture 33: How can computation Win games against you? Chess: Mechanical Turk

Lecture 33: How can computation Win games against you? Chess: Mechanical Turk 4/2/0 CS 202 Introduction to Computation " UNIVERSITY of WISCONSIN-MADISON Computer Sciences Department Lecture 33: How can computation Win games against you? Professor Andrea Arpaci-Dusseau Spring 200

More information

Problem F. Chessboard Coloring

Problem F. Chessboard Coloring Problem F Chessboard Coloring You have a chessboard with N rows and N columns. You want to color each of the cells with exactly N colors (colors are numbered from 0 to N 1). A coloring is valid if and

More information

Math Games Ideas. For School or Home Education. by Teresa Evans. Copyright 2005 Teresa Evans. All rights reserved.

Math Games Ideas. For School or Home Education. by Teresa Evans. Copyright 2005 Teresa Evans. All rights reserved. Math Games Ideas For School or Home Education by Teresa Evans Copyright 2005 Teresa Evans. All rights reserved. Permission is given for the making of copies for use in the home or classroom of the purchaser

More information

For our EC331 project we successfully designed and implemented a PIC based Tic-Tac-Toe game using the PIC16874.

For our EC331 project we successfully designed and implemented a PIC based Tic-Tac-Toe game using the PIC16874. EC331 Project Report To: Dr. Song From: Colin Hill and Peter Haugen Date: 6/7/2004 Project: Pic based Tic-Tac-Toe System Introduction: For our EC331 project we successfully designed and implemented a PIC

More information

Tutorial 1. (ii) There are finite many possible positions. (iii) The players take turns to make moves.

Tutorial 1. (ii) There are finite many possible positions. (iii) The players take turns to make moves. 1 Tutorial 1 1. Combinatorial games. Recall that a game is called a combinatorial game if it satisfies the following axioms. (i) There are 2 players. (ii) There are finite many possible positions. (iii)

More information

Probability and Statistics

Probability and Statistics Probability and Statistics Activity: Do You Know Your s? (Part 1) TEKS: (4.13) Probability and statistics. The student solves problems by collecting, organizing, displaying, and interpreting sets of data.

More information

EXPLORING TIC-TAC-TOE VARIANTS

EXPLORING TIC-TAC-TOE VARIANTS EXPLORING TIC-TAC-TOE VARIANTS By Alec Levine A SENIOR RESEARCH PAPER PRESENTED TO THE DEPARTMENT OF MATHEMATICS AND COMPUTER SCIENCE OF STETSON UNIVERSITY IN PARTIAL FULFILLMENT OF THE REQUIREMENTS FOR

More information

Plan. Related courses. A Take-Away Game. Mathematical Games , (21-801) - Mathematical Games Look for it in Spring 11

Plan. Related courses. A Take-Away Game. Mathematical Games , (21-801) - Mathematical Games Look for it in Spring 11 V. Adamchik D. Sleator Great Theoretical Ideas In Computer Science Mathematical Games CS 5-25 Spring 2 Lecture Feb., 2 Carnegie Mellon University Plan Introduction to Impartial Combinatorial Games Related

More information

Section Summary. Finite Probability Probabilities of Complements and Unions of Events Probabilistic Reasoning

Section Summary. Finite Probability Probabilities of Complements and Unions of Events Probabilistic Reasoning Section 7.1 Section Summary Finite Probability Probabilities of Complements and Unions of Events Probabilistic Reasoning Probability of an Event Pierre-Simon Laplace (1749-1827) We first study Pierre-Simon

More information

STATION 1: ROULETTE. Name of Guesser Tally of Wins Tally of Losses # of Wins #1 #2

STATION 1: ROULETTE. Name of Guesser Tally of Wins Tally of Losses # of Wins #1 #2 Casino Lab 2017 -- ICM The House Always Wins! Casinos rely on the laws of probability and expected values of random variables to guarantee them profits on a daily basis. Some individuals will walk away

More information

Wild. Overlay Wild. Bonus Game. Football: Champions Cup Game Rules

Wild. Overlay Wild. Bonus Game. Football: Champions Cup Game Rules Football: Champions Cup Game Rules Football: Champions Cup is a 5-reel, 3-row, 20-line video slot featuring Wild and Overlay Wild substitutions, Free Spins and a Bonus Game. The game is played with 20

More information

by Teresa Evans Copyright 2005 Teresa Evans. All rights reserved.

by Teresa Evans Copyright 2005 Teresa Evans. All rights reserved. by Teresa Evans Copyright 2005 Teresa Evans. All rights reserved. Permission is given for the making of copies for use in the home or classroom of the purchaser only. Making Math More Fun Math Games Ideas

More information

Definition 1 (Game). For us, a game will be any series of alternating moves between two players where one player must win.

Definition 1 (Game). For us, a game will be any series of alternating moves between two players where one player must win. Abstract In this Circles, we play and describe the game of Nim and some of its friends. In German, the word nimm! is an excited form of the verb to take. For example to tell someone to take it all you

More information

More Activities to Reinforce and Teach Sight Words

More Activities to Reinforce and Teach Sight Words More Activities to Reinforce and Teach Sight Words Bean Bag Toss Materials: One shower curtain liner divided into 20 boxes with a permanent marker Bean Bag Words on large cards Attach the words to the

More information

9694 THINKING SKILLS

9694 THINKING SKILLS CAMBRIDGE INTERNATIONAL EXAMINATIONS Cambridge International Advanced Level MARK SCHEME for the October/November 2015 series 9694 THINKING SKILLS 9694/31 Paper 3 (Problem Analysis and Solution), maximum

More information

The Mathematics of Playing Tic Tac Toe

The Mathematics of Playing Tic Tac Toe The Mathematics of Playing Tic Tac Toe by David Pleacher Although it has been shown that no one can ever win at Tic Tac Toe unless a player commits an error, the game still seems to have a universal appeal.

More information

THE APPLICATION OF DEPTH FIRST SEARCH AND BACKTRACKING IN SOLVING MASTERMIND GAME

THE APPLICATION OF DEPTH FIRST SEARCH AND BACKTRACKING IN SOLVING MASTERMIND GAME THE APPLICATION OF DEPTH FIRST SEARCH AND BACKTRACKING IN SOLVING MASTERMIND GAME Halida Astatin (13507049) Informatics School of Electrical Engineering and Informatics Institut Teknologi Bandung Jalan

More information

Stat 155: solutions to midterm exam

Stat 155: solutions to midterm exam Stat 155: solutions to midterm exam Michael Lugo October 21, 2010 1. We have a board consisting of infinitely many squares labeled 0, 1, 2, 3,... from left to right. Finitely many counters are placed on

More information

Part II: Number Guessing Game Part 2. Lab Guessing Game version 2.0

Part II: Number Guessing Game Part 2. Lab Guessing Game version 2.0 Part II: Number Guessing Game Part 2 Lab Guessing Game version 2.0 The Number Guessing Game that just created had you utilize IF statements and random number generators. This week, you will expand upon

More information

Thank You for Downloading this Resource from MathGeekMama.com!

Thank You for Downloading this Resource from MathGeekMama.com! Thank You for Downloading this Resource from MathGeekMama.com! I sincerely hope you find this resource to be helpful and enjoyable for you and your students! I only ask that you abide by Math Geek Mama

More information

Teams. Against. Humanity

Teams. Against. Humanity Teams Against Humanity An office game that s only more work appropriate than the original if you want it to be INSTRUCTIONS Solo Players (less than 12 players) OVERVIEW At the beginning of each round,

More information

CS151 - Assignment 2 Mancala Due: Tuesday March 5 at the beginning of class

CS151 - Assignment 2 Mancala Due: Tuesday March 5 at the beginning of class CS151 - Assignment 2 Mancala Due: Tuesday March 5 at the beginning of class http://www.clubpenguinsaraapril.com/2009/07/mancala-game-in-club-penguin.html The purpose of this assignment is to program some

More information

PROJECT REPORT STUDY WEEK "FASCINATING INFORMATICS" Game Platform Mastermind. Abstract. 1 Introduction. 1.1 Mastermind Game Rules

PROJECT REPORT STUDY WEEK FASCINATING INFORMATICS Game Platform Mastermind. Abstract. 1 Introduction. 1.1 Mastermind Game Rules PROJECT REPORT STUDY WEEK "FASCINATING INFORMATICS" Game Platform Mastermind Lukas Meili 1, Naoki Pross 2, Luke Stampfli 3 1 Kantonsschule Büelrain, Winterthur, Switzerland, 2 Scuola Arti e Mestieri Bellinzona,

More information

Programming Problems 14 th Annual Computer Science Programming Contest

Programming Problems 14 th Annual Computer Science Programming Contest Programming Problems 14 th Annual Computer Science Programming Contest Department of Mathematics and Computer Science Western Carolina University April 8, 2003 Criteria for Determining Team Scores Each

More information

the alien has the option of asserting that all 100 aliens have been to the living room by now. If this assertion is false, all 100 aliens are thrown

the alien has the option of asserting that all 100 aliens have been to the living room by now. If this assertion is false, all 100 aliens are thrown UW Math Circle 1. Jafar has four prisoners. He lines up three of them: Aladdin faces the wall, the Sultan stands behind Aladdin, and Abu stands behind the Sultan. The fourth prisoner, Jasmine, is put in

More information

In this project you ll learn how to create a game, in which you have to match up coloured dots with the correct part of the controller.

In this project you ll learn how to create a game, in which you have to match up coloured dots with the correct part of the controller. Catch the Dots Introduction In this project you ll learn how to create a game, in which you have to match up coloured dots with the correct part of the controller. Step 1: Creating a controller Let s start

More information

Game, Set, and Match Carl W. Lee September 2016

Game, Set, and Match Carl W. Lee September 2016 Game, Set, and Match Carl W. Lee September 2016 Note: Some of the text below comes from Martin Gardner s articles in Scientific American and some from Mathematical Circles by Fomin, Genkin, and Itenberg.

More information

Before displaying an image, the game should wait for a random amount of time.

Before displaying an image, the game should wait for a random amount of time. Reaction Introduction You are going to create a 2-player game to see who has the fastest reactions. The game will work by showing an image after a random amount of time - whoever presses their button first

More information

Journey through Game Design

Journey through Game Design Simulation Games in Education Spring 2010 Introduction At the very beginning of semester we were required to choose a final project to work on. I found this a bit odd and had the slightest idea what to

More information

CMPUT 396 Tic-Tac-Toe Game

CMPUT 396 Tic-Tac-Toe Game CMPUT 396 Tic-Tac-Toe Game Recall minimax: - For a game tree, we find the root minimax from leaf values - With minimax we can always determine the score and can use a bottom-up approach Why use minimax?

More information

Grade 3. Summer Math Packet. This packet is optional for those students who just completed Grade 2 and who will be in Grade 3 in September.

Grade 3. Summer Math Packet. This packet is optional for those students who just completed Grade 2 and who will be in Grade 3 in September. Grade 3 Summer Math Packet This packet is optional for those students who just completed Grade 2 and who will be in Grade 3 in September. It includes review games and fluency practice for students who

More information

Math 152: Applicable Mathematics and Computing

Math 152: Applicable Mathematics and Computing Math 152: Applicable Mathematics and Computing April 16, 2017 April 16, 2017 1 / 17 Announcements Please bring a blue book for the midterm on Friday. Some students will be taking the exam in Center 201,

More information

LEARNING ABOUT MATH FOR GR 1 TO 2. Conestoga Public School OCTOBER 13, presented by Kathy Kubota-Zarivnij

LEARNING ABOUT MATH FOR GR 1 TO 2. Conestoga Public School OCTOBER 13, presented by Kathy Kubota-Zarivnij LEARNING ABOUT MATH FOR GR 1 TO 2 Conestoga Public School OCTOBER 13, 2016 6:30 pm 8:00 pm presented by Kathy Kubota-Zarivnij kathkubo@gmail.com TODAY S MATH TOOLS FOR counters playing cards dice interlocking

More information

COMPOSITION CRAM INSTRUCTIONS:

COMPOSITION CRAM INSTRUCTIONS: COMPOSITION CRAM INSTRUCTIONS: Make sure each student has a piece of paper and a writing utensil. Display the current vocabulary list on the board. Instruct students to write a story that includes as many

More information

Mohammad Hossein Manshaei 1394

Mohammad Hossein Manshaei 1394 Mohammad Hossein Manshaei manshaei@gmail.com 394 Some Formal Definitions . First Mover or Second Mover?. Zermelo Theorem 3. Perfect Information/Pure Strategy 4. Imperfect Information/Information Set 5.

More information

Candidate Instructions

Candidate Instructions Create Software Components Using Java - Level 2 Assignment 7262-22-205 Create Software Components Using Java Level 2 Candidates are advised to read all instructions carefully before starting work and to

More information

For slightly more detailed instructions on how to play, visit:

For slightly more detailed instructions on how to play, visit: Introduction to Artificial Intelligence CS 151 Programming Assignment 2 Mancala!! The purpose of this assignment is to program some of the search algorithms and game playing strategies that we have learned

More information

Introduction to Artificial Intelligence CS 151 Programming Assignment 2 Mancala!! Due (in dropbox) Tuesday, September 23, 9:34am

Introduction to Artificial Intelligence CS 151 Programming Assignment 2 Mancala!! Due (in dropbox) Tuesday, September 23, 9:34am Introduction to Artificial Intelligence CS 151 Programming Assignment 2 Mancala!! Due (in dropbox) Tuesday, September 23, 9:34am The purpose of this assignment is to program some of the search algorithms

More information

game tree complete all possible moves

game tree complete all possible moves Game Trees Game Tree A game tree is a tree the nodes of which are positions in a game and edges are moves. The complete game tree for a game is the game tree starting at the initial position and containing

More information

MAT104: Fundamentals of Mathematics II Summary of Counting Techniques and Probability. Preliminary Concepts, Formulas, and Terminology

MAT104: Fundamentals of Mathematics II Summary of Counting Techniques and Probability. Preliminary Concepts, Formulas, and Terminology MAT104: Fundamentals of Mathematics II Summary of Counting Techniques and Probability Preliminary Concepts, Formulas, and Terminology Meanings of Basic Arithmetic Operations in Mathematics Addition: Generally

More information

In this project, you will create a memory game where you have to memorise and repeat a sequence of random colours!

In this project, you will create a memory game where you have to memorise and repeat a sequence of random colours! Memory Introduction In this project, you will create a memory game where you have to memorise and repeat a sequence of random colours! Step 1: Random colours First, let s create a character that can change

More information

Example: I predict odd, roll a 5, and then collect that many counters. Play until time is up. The player with the most counters wins.

Example: I predict odd, roll a 5, and then collect that many counters. Play until time is up. The player with the most counters wins. Odds and Evens Skill: Identifying even and odd numbers Materials: 1 die to share 1. Each player takes 5 counters and puts the rest in a pile between them. 2. Player 1 predicts whether he will roll ODD

More information

Make Math Meaningful!

Make Math Meaningful! Make Math Meaningful! I hear, and I forget. I see, and I remember. I do, and I understand. Knowledge comes easily to those who understand. Proverbs 14:6 B-A-T Place Value Game B = Brilliant; right number

More information

Sept. 26, 2012

Sept. 26, 2012 Mathematical Games Marin Math Circle linda@marinmathcircle.org Sept. 26, 2012 Some of these games are from the book Mathematical Circles: Russian Experience by D. Fomin, S. Genkin, and I. Itenberg. Thanks

More information

V. Adamchik Data Structures. Game Trees. Lecture 1. Apr. 05, Plan: 1. Introduction. 2. Game of NIM. 3. Minimax

V. Adamchik Data Structures. Game Trees. Lecture 1. Apr. 05, Plan: 1. Introduction. 2. Game of NIM. 3. Minimax Game Trees Lecture 1 Apr. 05, 2005 Plan: 1. Introduction 2. Game of NIM 3. Minimax V. Adamchik 2 ü Introduction The search problems we have studied so far assume that the situation is not going to change.

More information

Grade 7/8 Math Circles November 24/25, Review What have you learned in the past seven weeks?

Grade 7/8 Math Circles November 24/25, Review What have you learned in the past seven weeks? Faculty of Mathematics Waterloo, Ontario N2L 3G1 Centre for Education in Mathematics and Computing Grade 7/8 Math Circles November 24/25, 2015 Review What have you learned in the past seven weeks? First

More information

CSC/MTH 231 Discrete Structures II Spring, Homework 5

CSC/MTH 231 Discrete Structures II Spring, Homework 5 CSC/MTH 231 Discrete Structures II Spring, 2010 Homework 5 Name 1. A six sided die D (with sides numbered 1, 2, 3, 4, 5, 6) is thrown once. a. What is the probability that a 3 is thrown? b. What is the

More information

Grade 7/8 Math Circles Game Theory October 27/28, 2015

Grade 7/8 Math Circles Game Theory October 27/28, 2015 Faculty of Mathematics Waterloo, Ontario N2L 3G1 Centre for Education in Mathematics and Computing Grade 7/8 Math Circles Game Theory October 27/28, 2015 Chomp Chomp is a simple 2-player game. There is

More information

Grade 6 Math Circles Combinatorial Games November 3/4, 2015

Grade 6 Math Circles Combinatorial Games November 3/4, 2015 Faculty of Mathematics Waterloo, Ontario N2L 3G1 Centre for Education in Mathematics and Computing Grade 6 Math Circles Combinatorial Games November 3/4, 2015 Chomp Chomp is a simple 2-player game. There

More information

class TicTacToe: def init (self): # board is a list of 10 strings representing the board(ignore index 0) self.board = [" "]*10 self.

class TicTacToe: def init (self): # board is a list of 10 strings representing the board(ignore index 0) self.board = [ ]*10 self. The goal of this lab is to practice problem solving by implementing the Tic Tac Toe game. Tic Tac Toe is a game for two players who take turns to fill a 3 X 3 grid with either o or x. Each player alternates

More information

LITTLE BITES TIC TAC TOE Pair two of your favorite classics- Little Bites and Tic Tac Toe- for a game that is bound to bring back happy memories!

LITTLE BITES TIC TAC TOE Pair two of your favorite classics- Little Bites and Tic Tac Toe- for a game that is bound to bring back happy memories! LITTLE BITES TIC TAC TOE Pair two of your favorite classics- Little Bites and Tic Tac Toe- for a game that is bound to bring back happy memories! Tic Tac Toe Printable (Included in Party Kit) (2) packages

More information

4.2.5 How much can I expect to win?

4.2.5 How much can I expect to win? 4..5 How much can I expect to win? Expected Value Different cultures have developed creative forms of games of chance. For example, native Hawaiians play a game called Konane, which uses markers and a

More information

Problem A To and Fro (Problem appeared in the 2004/2005 Regional Competition in North America East Central.)

Problem A To and Fro (Problem appeared in the 2004/2005 Regional Competition in North America East Central.) Problem A To and Fro (Problem appeared in the 2004/2005 Regional Competition in North America East Central.) Mo and Larry have devised a way of encrypting messages. They first decide secretly on the number

More information

PLAY & WIN!* SUPER RUGBY 2018 DOWNLOAD THE APP TODAY! See inside for more information. *Terms and conditions apply. Metalcraft Insulated Panel Systems

PLAY & WIN!* SUPER RUGBY 2018 DOWNLOAD THE APP TODAY! See inside for more information. *Terms and conditions apply. Metalcraft Insulated Panel Systems SUPER RUGBY 2018 PLAY & WIN!* DOWNLOAD THE APP TODAY! See inside for more information. *Terms and conditions apply Insulated Panel Systems Roofing * ACKNOWLEDGEMENT Pick&Go has been built by BKA Interactive

More information

Math Games Played with Cards and Dice (K-3)

Math Games Played with Cards and Dice (K-3) Math Games Played with Cards and Dice (K-3) Copyright 2009, IPMG Publishing IPMG Publishing 18362 Erin Bay Eden Prairie, Minnesota 55347 phone: (612) 802-9090 www.iplaymathgames.com ISBN 978-1-934218-08-2

More information

https://www.teachersp ayteachers.com/store/ Worksheetjunkie

https://www.teachersp ayteachers.com/store/ Worksheetjunkie https://www.teachersp ayteachers.com/store/ Worksheetjunkie Copyright 2017 IDEA GALAXY. All rights reserved by author. Permission to copy for single classroom use only. Electronic distribution limited

More information

6. a) Determine the probability distribution. b) Determine the expected sum of two dice. c) Repeat parts a) and b) for the sum of

6. a) Determine the probability distribution. b) Determine the expected sum of two dice. c) Repeat parts a) and b) for the sum of d) generating a random number between 1 and 20 with a calculator e) guessing a person s age f) cutting a card from a well-shuffled deck g) rolling a number with two dice 3. Given the following probability

More information

Background. Game Theory and Nim. The Game of Nim. Game is Finite 1/27/2011

Background. Game Theory and Nim. The Game of Nim. Game is Finite 1/27/2011 Background Game Theory and Nim Dr. Michael Canjar Department of Mathematics, Computer Science and Software Engineering University of Detroit Mercy 26 January 2010 Nimis a simple game, easy to play. It

More information

CMPT 125/128 with Dr. Fraser. Assignment 3

CMPT 125/128 with Dr. Fraser. Assignment 3 Assignment 3 Due Wednesday June 22, 2011 by 11:59pm Submit all the deliverables to the Course Management System: https://courses.cs.sfu.ca/ There is no possibility of turning the assignment in late. The

More information

Grade 7/8 Math Circles November 24/25, Review What have you learned in the past seven weeks?

Grade 7/8 Math Circles November 24/25, Review What have you learned in the past seven weeks? Faculty of Mathematics Waterloo, Ontario N2L 3G1 Centre for Education in Mathematics and Computing Grade 7/8 Math Circles November 24/25, 2015 Review What have you learned in the past seven weeks? First

More information

HW4: The Game of Pig Due date: Tuesday, Mar 15 th at 9pm. Late turn-in deadline is Thursday, Mar 17th at 9pm.

HW4: The Game of Pig Due date: Tuesday, Mar 15 th at 9pm. Late turn-in deadline is Thursday, Mar 17th at 9pm. HW4: The Game of Pig Due date: Tuesday, Mar 15 th at 9pm. Late turn-in deadline is Thursday, Mar 17th at 9pm. 1. Background: Pig is a folk jeopardy dice game described by John Scarne in 1945, and was an

More information

HW4: The Game of Pig Due date: Thursday, Oct. 29 th at 9pm. Late turn-in deadline is Tuesday, Nov. 3 rd at 9pm.

HW4: The Game of Pig Due date: Thursday, Oct. 29 th at 9pm. Late turn-in deadline is Tuesday, Nov. 3 rd at 9pm. HW4: The Game of Pig Due date: Thursday, Oct. 29 th at 9pm. Late turn-in deadline is Tuesday, Nov. 3 rd at 9pm. 1. Background: Pig is a folk jeopardy dice game described by John Scarne in 1945, and was

More information

Game 0: One Pile, Last Chip Loses

Game 0: One Pile, Last Chip Loses Take Away Games II: Nim April 24, 2016 The Rules of Nim The game of Nim is a two player game. There are piles of chips which the players take turns taking chips from. During a single turn, a player can

More information

5 Games For Building Logic

5 Games For Building Logic 5 Games For Building Logic Hands on Math A collection of incredibly awesome math games Edited by Emily Dyke and Joe Dyke A mind is not a vessel to be filled but a fire to be kindled. - Plutarch Hands-

More information

ALGEBRA 2 HONORS QUADRATIC FUNCTIONS TOURNAMENT REVIEW

ALGEBRA 2 HONORS QUADRATIC FUNCTIONS TOURNAMENT REVIEW ALGEBRA 2 HONORS QUADRATIC FUNCTIONS TOURNAMENT REVIEW Thanks for downloading my product! Be sure to follow me for new products, free items and upcoming sales. www.teacherspayteachers.com/store/jean-adams

More information

Playing Games. Henry Z. Lo. June 23, We consider writing AI to play games with the following properties:

Playing Games. Henry Z. Lo. June 23, We consider writing AI to play games with the following properties: Playing Games Henry Z. Lo June 23, 2014 1 Games We consider writing AI to play games with the following properties: Two players. Determinism: no chance is involved; game state based purely on decisions

More information

A Tic Tac Toe Learning Machine Involving the Automatic Generation and Application of Heuristics

A Tic Tac Toe Learning Machine Involving the Automatic Generation and Application of Heuristics A Tic Tac Toe Learning Machine Involving the Automatic Generation and Application of Heuristics Thomas Abtey SUNY Oswego Abstract Heuristics programs have been used to solve problems since the beginning

More information

PROBLEMS & INVESTIGATIONS. Introducing Add to 15 & 15-Tac-Toe

PROBLEMS & INVESTIGATIONS. Introducing Add to 15 & 15-Tac-Toe Unit One Connecting Mathematical Topics Session 10 PROBLEMS & INVESTIGATIONS Introducing Add to 15 & 15-Tac-Toe Overview To begin, students find many different ways to add combinations of numbers from

More information

Supreme Hot Video Slot. Introduction. How to Bet. Gamble Feature

Supreme Hot Video Slot. Introduction. How to Bet. Gamble Feature Supreme Hot Video Slot Introduction How to Bet Gamble Feature Game Controls Rules Jackpot Cards Bonus Game Interruptions Return to Player Introduction Supreme Hot video slot is a 3-reel. The slot consists

More information

MEMORIZATION GAMES MEMORY GAMES FOR NON READING CLUBBERS

MEMORIZATION GAMES MEMORY GAMES FOR NON READING CLUBBERS MEMORIZATION GAMES MEMORY GAMES FOR NON READING CLUBBERS Tape Record the verse then let them play it back to learn it. Tape them saying the verse, so they can hear themselves recite it. This reinforces

More information

1) = 10) 4-15 = 2) (-4)(-3) = 11) = 4) -9 6 = 13) = 5) = 14) (-3)(15) = = 15) 7) = 16) -7 (-18) =

1) = 10) 4-15 = 2) (-4)(-3) = 11) = 4) -9 6 = 13) = 5) = 14) (-3)(15) = = 15) 7) = 16) -7 (-18) = Name: Ms. Napolitano Date: Activity # Day 10 : I can use integer operations to solve real world problems. Try Now (10) Add, Subtract, Multiply or Divide. 1) -80-4 = 10) 4-15 = 2) (-4)(-3) = 11) 16 33 =

More information

Obliged Sums of Games

Obliged Sums of Games Obliged Sums of Games Thomas S. Ferguson Mathematics Department, UCLA 1. Introduction. Let g be an impartial combinatorial game. In such a game, there are two players, I and II, there is an initial position,

More information

2 person perfect information

2 person perfect information Why Study Games? Games offer: Intellectual Engagement Abstraction Representability Performance Measure Not all games are suitable for AI research. We will restrict ourselves to 2 person perfect information

More information

11/3/71 BASIC (VI) basic -- DEC supplied BASIC

11/3/71 BASIC (VI) basic -- DEC supplied BASIC 11/3/71 BASIC (VI) basic -- DEC supplied BASIC basic [file] Basic is the standard BASIC V000 distributed as a stand alone program. The optional file argument is read before the console. See DEC 11 AJPB

More information

CPSC 217 Assignment 3 Due Date: Friday March 30, 2018 at 11:59pm

CPSC 217 Assignment 3 Due Date: Friday March 30, 2018 at 11:59pm CPSC 217 Assignment 3 Due Date: Friday March 30, 2018 at 11:59pm Weight: 8% Individual Work: All assignments in this course are to be completed individually. Students are advised to read the guidelines

More information

Caterpillar Chase. Race to the Finish. On the Ferris Wheel

Caterpillar Chase. Race to the Finish. On the Ferris Wheel Caterpillar Chase Objective: To practice basic addition facts Materials: For partners number cube (labeled ) p., red connecting cube, blue connecting cube, or other playing pieces Playing the Game: This

More information

PHASE 10 CARD GAME Copyright 1982 by Kenneth R. Johnson

PHASE 10 CARD GAME Copyright 1982 by Kenneth R. Johnson PHASE 10 CARD GAME Copyright 1982 by Kenneth R. Johnson For Two to Six Players Object: To be the first player to complete all 10 Phases. In case of a tie, the player with the lowest score is the winner.

More information

Batman & the Joker Jewels

Batman & the Joker Jewels Batman & the Joker Jewels 5-Reel 25-Line Slots The objective of Batman & the Joker Jewels is to obtain winning symbol combinations by spinning the reels. TO PLAY THE GAME The Batman & the Joker Jewels

More information

Checkpoint Questions Due Monday, October 7 at 2:15 PM Remaining Questions Due Friday, October 11 at 2:15 PM

Checkpoint Questions Due Monday, October 7 at 2:15 PM Remaining Questions Due Friday, October 11 at 2:15 PM CS13 Handout 8 Fall 13 October 4, 13 Problem Set This second problem set is all about induction and the sheer breadth of applications it entails. By the time you're done with this problem set, you will

More information

Whenever possible, ask your child to tell you the time to the nearest 5 minutes. Use a clock with hands as well as a digital watch or clock.

Whenever possible, ask your child to tell you the time to the nearest 5 minutes. Use a clock with hands as well as a digital watch or clock. Can you tell the time? Whenever possible, ask your child to tell you the time to the nearest 5 minutes. Use a clock with hands as well as a digital watch or clock. Also ask: What time will it be one hour

More information

2359 (i.e. 11:59:00 pm) on 4/16/18 via Blackboard

2359 (i.e. 11:59:00 pm) on 4/16/18 via Blackboard CS 109: Introduction to Computer Science Goodney Spring 2018 Homework Assignment 4 Assigned: 4/2/18 via Blackboard Due: 2359 (i.e. 11:59:00 pm) on 4/16/18 via Blackboard Notes: a. This is the fourth homework

More information

Meaningful Ways to Develop Math Facts

Meaningful Ways to Develop Math Facts NCTM 206 San Francisco, California Meaningful Ways to Develop Math Facts -5 Sandra Niemiera Elizabeth Cape mathtrailblazer@uic.edu 2 4 5 6 7 Game Analysis Tool of Game Math Involved in the Game This game

More information

CHECKMATE! A Brief Introduction to Game Theory. Dan Garcia UC Berkeley. The World. Kasparov

CHECKMATE! A Brief Introduction to Game Theory. Dan Garcia UC Berkeley. The World. Kasparov CHECKMATE! The World A Brief Introduction to Game Theory Dan Garcia UC Berkeley Kasparov Welcome! Introduction Topic motivation, goals Talk overview Combinatorial game theory basics w/examples Computational

More information

In the main game there are 3 features which are randomly activated: Legend Spins, the Appetite for Destruction Wild, and the Solo multiplier.

In the main game there are 3 features which are randomly activated: Legend Spins, the Appetite for Destruction Wild, and the Solo multiplier. Guns N' Roses Game Rules Guns N' Roses Video Slots is a 5-reel, 3-row, 20-line video slot featuring Wild substitutions, Expanding Wilds, the Appetite for Destruction Wild, Bonus symbols, Encore Free Spins,

More information

Guns N' Roses Video Slots Touch Game Rules. Wild and Expanding Wild. Random Features in the Main Game. Legend Spins

Guns N' Roses Video Slots Touch Game Rules. Wild and Expanding Wild. Random Features in the Main Game. Legend Spins Guns N' Roses Video Slots Touch Game Rules Guns N' Roses Video Slots Touch is a 5-reel, 3-row, 20-line video slot featuring substitutions, Expanding s, the Appetite for Destruction, Bonus symbols, Encore

More information

Grade 6 Math Circles Combinatorial Games - Solutions November 3/4, 2015

Grade 6 Math Circles Combinatorial Games - Solutions November 3/4, 2015 Faculty of Mathematics Waterloo, Ontario N2L 3G1 Centre for Education in Mathematics and Computing Grade 6 Math Circles Combinatorial Games - Solutions November 3/4, 2015 Chomp Chomp is a simple 2-player

More information

Memory. Introduction. Scratch. In this project, you will create a memory game where you have to memorise and repeat a sequence of random colours!

Memory. Introduction. Scratch. In this project, you will create a memory game where you have to memorise and repeat a sequence of random colours! Scratch 2 Memory All Code Clubs must be registered. Registered clubs appear on the map at codeclubworld.org - if your club is not on the map then visit jumpto.cc/ccwreg to register your club. Introduction

More information

Grade 7/8 Math Circles. February 14 th /15 th. Game Theory. If they both confess, they will both serve 5 hours of detention.

Grade 7/8 Math Circles. February 14 th /15 th. Game Theory. If they both confess, they will both serve 5 hours of detention. Faculty of Mathematics Waterloo, Ontario N2L 3G1 Centre for Education in Mathematics and Computing Grade 7/8 Math Circles February 14 th /15 th Game Theory Motivating Problem: Roger and Colleen have been

More information

D1 Probability of One Event

D1 Probability of One Event D Probability of One Event Year 3/4. I have 3 bags of marbles. Bag A contains 0 marbles, Bag B contains 20 marbles and Bag C contains 30 marbles. One marble in each bag is red. a) Join up each statement

More information

ON A ROLL TO FACT FLUENCY

ON A ROLL TO FACT FLUENCY Box Cars and One-Eyed Jacks ON A ROLL TO FACT FLUENCY PRIMARY MATH GAMES JOHN FELLING MPTCA 2016 john@boxcarsandoneeyedjacks.com phone 1-866-342-3386 / 1-780-440-6284 boxcarsandoneeyedjacks.com BoxCarsEduc

More information

The NES Files

The NES Files NES- WF - US - 1 INSTRUCTION BOOKLET Now you're "into fun and Games!" with We are the hi-tech electronic entertainment company that puts you in the picture with home versions of television's top game shows.

More information

June 2019 and June 2020 series 20 timetable hours

June 2019 and June 2020 series 20 timetable hours Oxford Cambridge and RSA GCSE (9 1) Computer Science J276 Programming Project Tasks 1, 2 and 3 June 2019 and June 2020 series 20 timetable hours *7717309303* Please check on the OCR website that you have

More information

The student will explain and evaluate the financial impact and consequences of gambling.

The student will explain and evaluate the financial impact and consequences of gambling. What Are the Odds? Standard 12 The student will explain and evaluate the financial impact and consequences of gambling. Lesson Objectives Recognize gambling as a form of risk. Calculate the probabilities

More information

Grade 7 Geometry Walking Dog

Grade 7 Geometry Walking Dog Grade 7 Geometry Walking Dog A dog walks 32 meters completely around the perimeter of his yard. What are the possible dimensions of his rectangular yard? 3 Geometry Walking dog A dog walks 32 meters completely

More information

Classic Dominoes. Number of Players: 2-4

Classic Dominoes. Number of Players: 2-4 Classic Dominoes Number of Players: 2-4 First, all dominoes must be turned face down and mixed. Each player then draws five dominoes and stands them up on end in front of them so the backs of the dominoes

More information

Number Partners Primary Maths Games Box Crib Sheet EASY

Number Partners Primary Maths Games Box Crib Sheet EASY Number Partners Primary Maths Games Box Crib Sheet Below is an overview of the games found in the Number Partners games box to get an idea before looking at the full instructions together with pupils during

More information