FIT1045 Assignment 1-Pi Algorithms Solved

35.00 $

Category:
Click Category Button to View Your Next Assignment | Homework

You'll get a download link with a: zip solution files instantly, after Payment

Securely Powered by: Secure Checkout

Description

Rate this product

Task 1: Race to Pi

Background

The ratio of a circle’s circumference to its diameter, usually denoted by the Greek letter π, is an extremely important constant in mathematical computations. Unfortunately, the exact value of π cannot be stored explicitly in a computer, because it is irrational, i.e., it does not correspond to any ratio between two integer values. To help us out, there are many different ways to approximate π, most of which based on computing a finite prefix of an infinite sum or product. For instance:

1.    via a solution to the basel problem:

2.    derived from the taylor expansion of 1

3.    via the wallis algorithm:

4.    via the spigot algorithm:

Each of these sums (or the product in case of 3.) converges to the respective value on the left-hand-side of the equals sign. That is for every desired precision  > 0, the absolute difference between the left-hand-side and the sum/product on the right-hand-side is guaranteed to be less than  if a sufficient number of terms is computed. Thus, they are all valid ways to compute π. However, the speed of convergence, i.e., the number of terms that have to be computed to reach a desired precision is different for each method. (Note that in case of wallis and spigot every expression in parenthesis is considered one term; e.g., the first term of the wallis product equals 4/3, the third term of the spigot sum equals 2/15.) In this task, we will determine which of the above methods is preferable from this perspective.

Instructions

Create a Python module called pi.py. Within that module:

  1. Write four different functions for approximating π corresponding to the four different approaches listed above (the functions must be called basel, taylor, wallis, and spigot). Each of these functions must obey the following input/output specification:

Input: a float parameter precision which specifies the precision to which π should be calculated, i.e., the absolute difference of the approximation to the Python constant pi.

Output: two values (x,n) such that x is the first approximation to π with an absolute difference from pi of at most precision, and n is the number of terms of the sum/product that were computed in the process.

For example, if the input was 0.1, then the function should continue to compute terms of the series until the approximation x to π is less than 0.1 away from the Python constant pi (see more detailed examples below).

  1. Write another function called race(precision, algorithms) that can be used to compare the convergence speed of different approximation algorithms via the following input/output specification:

Input: a float parameter precision and a list of Python functions algorithms.

Output: a list of integer pairs [(i1, n1), (i2, n2),…, (ik,nk)] such that

  • for each pair (i,n) in the list, n is the number of steps that the i-th algorithm takes to approximate π within the given precision
  • the list is in ascending order with respect to the number of steps (the second number of the pair) with ties resolved arbitrarily.

Note that the input to race are functions and not strings. That is, in principle race can be used for evaluating arbitrary functions for approximating π, not only the four covered here.

  1. Write a function print results which takes as input the output of the function race and prints the results in a human readable format. Each line of the output should be “Algorithm i finished in n steps” where i is first element of the integer pair, and n is the second.

The only two import statements allowed in your module are from math import pi and from math import sqrt. Note that the subtasks can be solved independently and the given order (a, b, c) is only a recommendation.

Examples

  1. Calling wallis(0.2) returns (2.972154195011337, 4) as the result of approximating π with

2.

  • terms

using 4 terms because pi – 2.972154195011337 < 0.2 and non of the three prior wallis approximations satisfies this condition.

  1. Calling basel(0.1) returns (3.04936163598207, 10) as the result of approximating π with

3.

t

10 terms

using 10 terms because pi – 3.04936163598207 < 0.1 and non of the nine prior basel approximations satisfies this condition.

  1. Calling taylor(0.2) returns (3.3396825396825403, 5) as the result of approximating π with

3.

5 terms

using 5 terms because pi – 3.3396825396825403 < 0.2 and non of the four prior taylor approximations satisfies this condition.

  1. Calling spigot(0.1) returns (3.0476190476190474, 4) as the result of approximating π with

3.

  • terms

using 4 terms because pi – 3.0476190476190474 < 0.1 and non of the prior three spigot approximations satisfies this condition.

  1. Calling race(0.01, [taylor, wallis, basel]) returns [(2,78),(3,96),(1,100)] because functions taylor, basel, and wallis need 100, 96, and 78 terms, respectively, to approximate π within the required precision of 0.
  2. Calling print results([(2,78),(3,96),(1,100)]) prints

Algorithm 2 finished in 78 steps

Algorithm 3 finished in 96 steps

Algorithm 1 finished in 100 steps

Marking Guide

Marks are given for the correct behaviour of the different functions:

  • 2 marks each for basel, taylor, wallis, and spigot
  • 3 marks for race
  • 1 mark for print results

All functions are assessed independently. For instance, even if function race does not always produce the correct output, function print results can still be marked as correct.

Task 2: Reversi

Background

Reversi is a game for two players (Black and White), which is played on a squared board of 8 rows/columns with stones that are white on one side and black on the other. In the beginning of the game, stones of Player 1 (B) and Player 2 (W) are placed in a cross arrangement at the center of the board as shown in Table ??. Then the players take turns placing stones on empty fields on the board with their colour facing up according to the following rules:

1.    All opponent’s stones that are enclosed in a straight line (horizontal, vertical, or diagonal) between the newly placed stone and another stone of the same color are flipped (see Table ??).

2.    A move is only valid if it turns at least one opponent’s stone.

3.    If a player has no valid moves, their turn is skipped (see example in Table ??).

4.    The game ends when both players have no legal moves.

When the game ends, each player scores points equal to the number of stones which have their colour face up, and the player with a higher score wins (draw if scores equal). In this task you will create a Python program that allows one or two players to play a game of Reversi.

   

1                
2                
3                
4       W B      
5       B W      
6                
7                
8                
  a b c d e f g h
 

1                
2                
3                
4       W B      
5       B B      
6         B      
7                
8                
  a b c d e f g h
 
  Table 1: Initial board state at the beginning of game. Player 1 (B) has the first move. Table 2: Board state after Player 1 (B) played “e6” as her first move.  
   

1                
2                
3                
4       W B    
5       B B      
6       B    
7                
8                
  a b c d e f g h
 

1                
2         W W    
3 W W W W W W W B
4     W W W W   B
5     W W W     B
6                
7                
8                
  a b c d e f g h
 
  Table 3: Valid moves (indicated by •) for Player 2 (W) following “e6” from Player 1. Table 4: Board state with no valid move for Player 2 (W), who, in case it is her turn, has to pass back to Player 1 (B), whose only valid move is “e1”.  

Instructions

Create a python module reversi.py. The only import statement allowed in your module is import copy. Your module must at least contain the nine functions described in the subtasks below, but you are allowed, and in fact, encouraged, to implement additional functions as you deem appropriate.

  1. Create three functions new board(), print board(board), and score(board) that represent the basic elements of Reversi as follows. The function new board() takes no parameters and returns a fresh board configuration representing the Reversi starting position. The other two functions each take as input a board configuration. The function score(board) returns as output a pair of integers (s1, s2) where s1 represents the number of stones of Player 1 in the given board configuration and s2 represents the number of stones of Player 2. The function print board(board) has no return value but prints the given board configuration in human-readable form to the console (in particular, all rows of the board must be printed in separate lines of the console and labelled by their names 1, 2, …and all columns must be properly aligned and labelled by their names a, b, …— similar to the illustrations above). For these and all other functions of this task, a board configuration must be represented as a list of lists in the following way:
    • A board configuration is a list of length 8, the elements of which represent the rows of the board from top to bottom: the first element represents the topmost row of the board, row 1, the second represents row 2, etc..
    • Each row, i.e., each element of a list representing a board configuration, is also a list of length 8. These inner lists represent the rows of the board from left to right: the first element represents the field in the leftmost column, Column A, the second element represents the field in second column, Column B, etc.
    • Each field, i.e., each element of the inner lists representing the rows, is an integer from the set {0,1,2} representing the state of that field: 0 represents an empty square, 1 represents a square with a Black stone, and 2 represents a square with a White stone.

See example ?? for an illustration of this representation of a board configuration.

  1. Create three functions enclosing(board, player, pos, direct), valid moves(board, player), and next state(board, player, pos) that represent the rules of Reversi according to the following specifications.
    • A board position is represented by a pair (r, c) where r and c are each integers from the range range(8) representing a row index and a column index, respectively. For instance, the position “b3” is represented by (2, 1). The row and column order of the “b3” style and the specification of position is reversed. This is because it is natural to constuct lists of lists in such a way that the outer lists correspond to rows, and the inner list positions corerspond to column positions, so we reference them with row first, then column. This row, column convention is quite common across maths and computer science.
    • A direction is represented by a pair (dr, dc) where dr and dc are each integers from the set {-1, 0, 1}. For instance, “horizontal to the left” is described by (0, -1), “diagonal to the right and down” is described by (1, 1), and so on).
    • The function enclosing(board, player, pos, dir) represents whether putting a player’s stone on a given position would enclose a straight line of opponent’s stones in a given direction:

Input: A board configuration board, an integer player from the set {1, 2}, a board position pos and a direction dir.

Output: True if board contains a stone of player in direction dir from position pos and all positions on the straight line between that stone and pos contain stones of the other player, and there is at least one stone belonging to the other player on the straight line; False otherwise.

  • The function valid moves(board, player) has:

Input: A board configuration board as well as an integer player from the set {1, 2}.

Output: A list of board positions (represented as pairs of integers as described above) [(r1, c1), (r2, c2), …, (rk, ck)] such that the elements of that list correspond to all valid positions that Player player is allowed to drop a stone on in the given input configuration board (in particular, the list is empty if the player has not valid moves in the given board).

  • The function next state(board, player, pos) has:

Input: A board configuration board as well as an integer player from the set {1, 2} and a board position representing the move of Player player to place one of their stones on the board configuration board on the field described by pos.

Output: A pair (next board, next player) such that next board is the board configuration resulting from Player player placing a stone on position pos on the input board configuration board, and next player is an integer from the set {0, 1, 2} corresponding to the player who gets to move next or 0 in case the game ends after the input move is carried out.

  1. Create functions position(string), run two players() and run single player() that put all of the above together and that allow one or two players to play a game of Reversi through the console as follows.
    • The function position(string) accepts as input any string string (e.g., “b5” or “Genghis Khan”) and has as output the board position (r, c) described by the string or None in case the string does not correspond to a valid board position.
    • Running run two players() should repeatedly do the following until the user selects to stop:

1: Print the current board state

2: Ask the player whose turn it is to input a position to drop a stone (in the format “d4”). The player can also choose to quit by entering “q”

3: Your program should then respond in one of the following ways:

  • If the move is not valid, print “invalid move”
  • If the move is valid, place the move on the board.

4: If the game ended (no valid move remaining for either player), print the game result and exit

5: If the game did not end, the current player’s turn is over. It is now the other player’s turn

  • Running run single player() should behave identical to run two players() except that all moves of Player 2 are carried out automatically such that the resulting board configuration has the maximal score for Player 2 (among all their valid moves).

Examples

  1. Calling score(new board()) returns (2, 2) because the score in the starting configuration is 2 for Player 1 (B) and 2 for player 2 (W).
  2. Calling enclosing(new board(), 1, (4, 5), (0, -1)) returns True because Player 1 can enclose one opponent’s stone to the left when placing a stone on field “f5”. In contrast, there is no straight line of opponent’s stones to enclose on the diagonal line to the bottom right. Therefore, enclosing(new board(), 1, (4, 5), (1, 1)) returns False.
  3. Calling next state(new board(), 1, (4, 5)) will return (next board, 2) where next board is the board configuration

[[0,0,0,0,0,0,0,0],

[0,0,0,0,0,0,0,0],

[0,0,0,0,0,0,0,0],

[0,0,0,2,1,0,0,0],

[0,0,0,1,1,1,0,0],

[0,0,0,0,0,0,0,0],

[0,0,0,0,0,0,0,0],

[0,0,0,0,0,0,0,0]]

because that is the configuration resulting from Player 1 putting a stone on field “f5” (encoded by integer pair (4, 5)) in the starting configuration, and Player 2 has the next move afterwards.

  1. Calling valid moves(next state(new board(), 1, (4, 5))[0], 2) returns the list [(3, 5), (5, 3), (5, 5)] or any of its permutations (list with same elements but different order) because the valid moves of Player 2 after Player 1 played “f5” in Turn 1 are “d6”, “f4”, and “f6”.
  2. Calling position(“e3”) returns the pair (2, 4) because that is the internal representation of board position “e3”. Calling position(“l1”), position(“a0”), or position(“Genghis Khan”) all return None because all these input do not correspond to valid board positions.

Marking Guide Marks are given for the correct behaviour of the different functions:

  1. 1 mark each for new board, print board, and score
  2. 4 marks for enclosing, 3 marks for validmoves, and 2 marks next state
  3. 1 mark for position, 2 marks for run twoplayers and 3 marks for run single player

All functions are assessed independently to the degree possible. For instance, even if function valid moves does not always produce the correct output, function run two players can still be marked as correct.

  • Pi_Algorithms-main-ibgtlc.zip