代写MATH2920 WEEK 10 MINI-PROJECTS, 2024/25代写Python语言

MATH2920 WEEK 10 MINI-PROJECTS, 2024/25

Introduction & Instructions

• In this document are descriptions of three Python miniprojects. Choose one to complete.

• Each of the titles has its own template on Minerva.  Download and use this template, changing the title xxyyzz to your userid. Do not change the given names of functions.

• Each of the three titles will have their own submission link on Minerva.  Make sure you submit your solution to the correct link by 2pm on Friday 13th December.

• Your solution should consist of one single Python file, which should generate any graphs, etc., when run. (Do not try to submit text or graphic files separately.)

• Make sure that your file runs, and takes at most 10 seconds to finish.  (If you want to perform longer experiments, you can include this code and discussion of your findings within comments.)

• You should include discussion and commentary as comments within your file (not within print statements).

• Each miniproject consists of three parts.  Each part is worth one third of the total avail- able marks.  (This should give you guidance as to how much work is expected in Part 3.)

• In each case, Part 3 is much more open-ended than the other two parts, and is your chance to demonstrate independent initiative and creativity.

• Make sure that you explain what experiments you have done and what your findings are, as comments within your file.  Creativity, mathematical understanding, and clarity of communication will contribute to your mark as well as coding proficiency.

• You may want to include functions that you have written earlier in the course.  If so, please include them within your .py file (that is, don’t import them from some other file, because we won’t have that file!).  Feel free to import standard libraries that we’ve used, such as math, time, etc..

• During your investigation in these projects, you might investigate the topics online. This is fine. You are advised not to use code written by other people, as this will count against you for individual creativity and initiative.  However, if you do take a section of code from a source online, it is essential that you reference this, by giving the web address in a comment in your file.  Failure  to  declare  code  written by other people will be considered plagiarism.

Option 1:  Sparse Rulers

An ordinary ruler is a straight piece of wood where distances 0, 1, 2 . . . , N are marked, for some N ≥ 1.  A sparse ruler  (or simply a ruler) is an ordinary ruler from which some of the numbers 1, . . . , N −1 may have been deleted.  The number of marks on the ruler is its order and the value N is its reach.  Here, we will represent a ruler as a Python list of strictly increasing integers starting with 0. For instance  [0,1,3,7] is a ruler of order 4 and reach 7.

Part 1.

(a) Write functions reach(myruler) and order(myruler) which take as input a list represent- ing a sparse ruler and return its reach and order, respectively.

(b) Write a function isitaruler(mylist) which takes as input a Python list, and returns True if the list represents a ruler (that is to say:  every entry is an integer, the list starts with 0, and each subsequent entry is strictly greater than the previous one), and False otherwise.

Hint:    Set a variable called oksofar  ==  True which you can set to False if you find a problem. First test whether the list’s initial entry equals 0.  Then loop through the remain- ing entries testing whether they are integers with each strictly greater than the previous.

(c) Write a function sparsenkrulers(n,k) which takes as inputs positive integers n,k where n + 1 ≥ k ≥ 2 and returns a list of all sparse rulers of reach n and order k.

Hint:   the itertools library has a function combinations.  After importing it, the com- mand combinations(mylist,r) will generate all sublists of length r from mylist.

Start with listofrulers  =  [].  Note that each ruler must contain the entries 0 and n with k-2 others.  Using the technique above, set up a loop through all combinations of k-2 numbers from range(1,n). At each stage, create a ruler which contains the entries 0 and n along with the current combination, sorted into ascending order.  Append it to the listofrulers. After the loop has completed, return listofrulers.

A sparse ruler of reach N is complete if it is possible to measure all distances between 1 and N by taking the differences between two marks.  For instance  [0,1,3] is complete because the pairs (0, 1), (1, 3), and (0, 3) yield distances of 1, 2, and 3 respectively.  (Note that the pair of marks do not need to be consecutive.) On the other hand,  [0,1,4] is not complete as there is no way to measure a distance of 2.

(d) Write a function ismyrulercomplete(myruler) which takes as input a list representing a sparse ruler of reach N and returns True if it is complete and False otherwise.

Hint:   Create a list of all differences between entries in the ruler.  The loop through the values 1, . . . ,N testing whether they are in the list of differences.  (Remember, the line of code k  in  mylist will return True or False.)

Part  2. A  Golomb  ruler  is  a  sparse  ruler,  where  the  pairs  of  marks  all  measure different distances. For instance,  [0,1,4] is Golomb as the measurable distances are all distinct:  1,3,4. However  [0,1,2] is not Golomb as the pairs (0, 1) and (1, 2) measure the same distance.

(a) Write a function ismyrulergolomb(myruler) which takes as input a list representing a sparse ruler of reach N and returns True if it is Golomb and False otherwise.

Hint:   Loop through the ruler’s list of differences, and count how many times each occurs. (The code mylist. count(k) will return the number of times k appears in mylist.)

(b) Using the functions you have written, write functions listofgolombrulers(n) which out- puts a list of all Golomb rulers of reach n, and listofcompleterulers(n) which outputs a list of all complete rulers of reach n.

Run your functions on some different values of n and comment on your findings.

The Erd˝os-Tur´an construction produces a sparse ruler of order m > 2 with marks at the points 2mk + (k2  mod m) for each k ∈ 0, . . . , m − 1.

(c) Write a function ErdosTuran(m) which takes as input an integer m > 2 and outputs the corresponding ruler.  Run it on a variety of entries, and comment on the type of rulers that are produced by different inputs.

Part 3. Continue your investigations into sparse, Golomb, and/or complete rulers. You could consider, for instance, the notion of an optimal Golomb ruler of order k, which is a Golomb ruler of minimal possible reach n.  (That is, that there is no Golomb ruler of order k and reach < n.) Finding these is notoriously difficult as k grows, so do not be too ambitious with the size of k. You could count rulers of different kinds, and plot suitable graphs, commenting on what these tell you.

Option 2:  Pythagorean Triples & Euler Bricks

Part 1.

Definition. A Pythagorean triple (x,y, z) is a triple of positive integers where x2 + y2  = z2 . This can be thought of as describing an x × y rectangle with the property that the diagonal z is also of integer length.

A Pythagorean triple (x,y, z) is primitive if x,y,z are coprime (i.e. there is no integer k > 1 which divides all of them) .

(a) Write a Python function PrimPyth(n) which returns a list of primitive Pythagorean triples (x,y, z) where 0 < x < y < z < n. For example, PrimPyth(6) should return [(3,4,5)]

Hint: In this project we represent triples as tuples  (x,y,z)  not as lists  [x,y,z].  The two data-types behave similarly in many ways.  Do not write a triply nested loop which searches through all triples (x,y, z) as this will take n3  steps!  Instead, use the fact (proved by Euclid) that every primitive Pythagorean triple arises as (m2  − n2 , 2mn,m2  + n2 ) where m,n are co- prime integers which are not both odd.

(b) Run your function from part (a) with n = 10000 and plot a scattergraph of y against x.

(c) Write a function Pyth(n) which returns a list of (not necessarily primitive) Pythagorean triples (x,y, z) where z < n.

Hint: Use your function from part (a).

(d) Run your function from part (c) with n = 10000 and plot a scattergraph of x against y. (This should be a new figure not overwriting the one from part (b)).

(e) Comment on your the features of your two graphs, writing your answer as a comment.

Part 2. An Euler Brick is an a × b × c cuboid where the dimensions a,b,c are positive integers, as are the diagonals of each face. The first, (44, 117, 240), was discovered in 1719 by Paul Halcke.

(a) Write a function IsItEuler(triple1,triple2) which accepts as input two tuples repre- senting distinct Pythagorean triples and returns True if together they describe two faces of an Euler Brick, and False otherwise.  For example the inputs (44,117,125),(117,240,267) should return True, as should (117,240,267),(117,44,125), etc..

(b) Write a function Bricks(n) to return a list of Euler bricks (a,b,c) where 0 < a < b < c < n. Hint: Use your functions Pyth and IsItEuler.

(c) How many Euler bricks are there with all dimensions  < 1000? How many of them are primitive? Write your answer as a comment, explaining what a “primitive” Euler brick is.

Part 3. Continue your investigations into Pythagorean triples and/or Euler Bricks.  Possible topics include:

• Connections between Fibonacci numbers and Pythagorean triples.  The number 5 is both a Pythagorean hypoteneuse and Fibonacci number. Do other numbers share these properties?

• Pythagorean quadruples (x,y,z, w) where x2  + y2 + z2  = w2 .

• Let x + y + z be the perimeter of the triple (x,y, z).  In 1900, Derrick Lehmer proved that if

N(p) is the number of primitive Pythagorean triples of perimeter ≤ p, then p/N(p) π2/log2 as p → ∞ .

Option 3:  Approximations of π

The number π, which can be defined as the ratio of the circumference of a circle to its diameter, is irrational (it cannot be expressed as a fraction, and its decimal representation does not end in a repeating pattern).  This mini-project explores various methods for approximating its value.  First we note that, in floating point arithmetic, the value of π  can be found using the pi constant from the module math:

In[1]  import math

In[2] print(math. pi)

Out[3]:  3 . 141592653589793

Part 1.

(a) The Gregory-Leibniz formula for π dates from the 1670s (but was apparently known to Indian mathematician Madhava of Sangamagrama around 1400), and states that

Write a function pi gl(n) which takes as an input an integer n and returns an approxima- tion of π, by evaluating the Gregory-Leibniz formula with n terms.  (For n=5 your function should return 3.3396825396... . Don’t forget to multiply the sum of the series by 4.)

(b) Another series expression for π,  less well-known and discovered by Nikalantha  (around 1500), is

Write a function pi nik(n) which takes as an input an integer n and returns an approxi- mation of π, by evaluating this formula with n terms.  (For n=3 your function should return 3.1333333... .)

(c) A third expression is due to Wallis (1656):

Write a function pi wallis(n) which takes an integer n as input and returns an approxi- mation of π by evaluating the Wallis formlua with n brackets in the formula.  (For example, pi wallis(3) should return 2.9257142857... .)

(d) For  the  Gregory-Leibniz  expression,  compute  the  absolute  value  of  the  error  (that  is, abs(pi gl(n)-math. pi)) for n  =  1 to 500.  Store these errors in a list (say, pi gl error), and repeat this for the other two series,  storing the errors in new lists.   Plot  a  graph with the errors pi gl error, pi nik error pi wallis error on the y-axis, against the range(1,500) on the x-axis.  (You should plot all three lines on the same graph.  Be sure to label axes and data. You should choose for yourself whether plot, loglog or semilogy gives the most meaningful plot.)

(e) Give a brief comment on the rate at which each expression converges to π .

Part 2. Euler gave two remarkable expressions for π, which involve prime numbers, and in the

second case, also prime factorisations of composites.

(a) The following is an infinite product expression:

In this formula, the numerators are the primes > 2, while each denominator is the multiple of 4 closest to the numerator. Write a function pi euler1(n) which computes the value of the first n terms in the product.  For example, pi euler1(3) should return 3.28125.

(b) The next formula is an infinite sum:

In this formula, each fraction 1/n has a sign (±) determined by: the first two terms have positive signs; after that, if the denominator is a prime of the form 4m − 1 (for example, n = 3, 7, 11, . . .), the sign is positive; if the denominator is a prime of the form 4m + 1 (for example, n = 5, 13, 17, . . .), the sign is negative; if the denominator is a composite number, then the sign is equal to the product of the signs corresponding to its factors (for example, n = 9 = 3 × 3, so its sign is positive (a positive times a positive), while n = 10 = 5 × 2, so its sign is negative (a negative times a positive)). Write a function pi euler2(n) which computes the value of the first n terms of this expression.   For example, pi euler2(2) should return 1.5.

(c) Compute the errors for both Euler expressions, as in part 1, again for n=1 to 500.  Plot a graph showing the errors for both Euler expressions, together with the errors for the previous three approximations from part 1, on the same graph.  Comment briefly on the convergence of the Euler methods.

(d) Recall the Monte Carlo method, from week 6 (section 6.2.2), for approximating π .  Suppose we choose a point  (x,y) randomly  (with uniform distribution) in the unit square.   The probability that it lies inside a circle of diameter 1 contained in the unit square is equal to the area of that circle, or π/4.  So this Monte Carlo method works as follows:

(i) Generate a large number M of points (x,y) with both x and y uniformly distributed random variables in [0, 1]. You can use the module random to do this, as this module contains a function (also called random) which returns a number from the uniform distribution on [0, 1].

(ii) For each (x,y) produced, check whether it lies inside a circle of diameter 1 centred at

(0.5, 0.5). Let the number of such points be Min.    (iii) Then an approximation for π is given by 4Min /M.

Write a function montecarlo(M) which takes an integer M and returns an approximation to π .  (I can’t give you an example output, as the random nature of the procedure means approximations will differ!)

(e) Write a function montecarlo accuracy(eps) which takes as an input some small float eps, and repeatedly performs the Monte Carlo procedure, until the approximation has an error 

Part 3. Continue your investigation. The following are all suggestions, not requirements, and you certainly shouldn’t attempt to investigate all of these. You might investigate:

• more quickly convergent methods, like the Gauss-Legendre algorithm, the Borwein al- gorithm, or others.

• approximations given by the continued fraction expansion for π .

• digit extraction methods.

• the decimal module, for obtaining more accuracy than floating point arithmetic allows.


热门主题

课程名

mktg2509 csci 2600 38170 lng302 csse3010 phas3226 77938 arch1162 engn4536/engn6536 acx5903 comp151101 phl245 cse12 comp9312 stat3016/6016 phas0038 comp2140 6qqmb312 xjco3011 rest0005 ematm0051 5qqmn219 lubs5062m eee8155 cege0100 eap033 artd1109 mat246 etc3430 ecmm462 mis102 inft6800 ddes9903 comp6521 comp9517 comp3331/9331 comp4337 comp6008 comp9414 bu.231.790.81 man00150m csb352h math1041 eengm4100 isys1002 08 6057cem mktg3504 mthm036 mtrx1701 mth3241 eeee3086 cmp-7038b cmp-7000a ints4010 econ2151 infs5710 fins5516 fin3309 fins5510 gsoe9340 math2007 math2036 soee5010 mark3088 infs3605 elec9714 comp2271 ma214 comp2211 infs3604 600426 sit254 acct3091 bbt405 msin0116 com107/com113 mark5826 sit120 comp9021 eco2101 eeen40700 cs253 ece3114 ecmm447 chns3000 math377 itd102 comp9444 comp(2041|9044) econ0060 econ7230 mgt001371 ecs-323 cs6250 mgdi60012 mdia2012 comm221001 comm5000 ma1008 engl642 econ241 com333 math367 mis201 nbs-7041x meek16104 econ2003 comm1190 mbas902 comp-1027 dpst1091 comp7315 eppd1033 m06 ee3025 msci231 bb113/bbs1063 fc709 comp3425 comp9417 econ42915 cb9101 math1102e chme0017 fc307 mkt60104 5522usst litr1-uc6201.200 ee1102 cosc2803 math39512 omp9727 int2067/int5051 bsb151 mgt253 fc021 babs2202 mis2002s phya21 18-213 cege0012 mdia1002 math38032 mech5125 07 cisc102 mgx3110 cs240 11175 fin3020s eco3420 ictten622 comp9727 cpt111 de114102d mgm320h5s bafi1019 math21112 efim20036 mn-3503 fins5568 110.807 bcpm000028 info6030 bma0092 bcpm0054 math20212 ce335 cs365 cenv6141 ftec5580 math2010 ec3450 comm1170 ecmt1010 csci-ua.0480-003 econ12-200 ib3960 ectb60h3f cs247—assignment tk3163 ics3u ib3j80 comp20008 comp9334 eppd1063 acct2343 cct109 isys1055/3412 math350-real math2014 eec180 stat141b econ2101 msinm014/msing014/msing014b fit2004 comp643 bu1002 cm2030
联系我们
EMail: 99515681@qq.com
QQ: 99515681
留学生作业帮-留学生的知心伴侣!
工作时间:08:00-21:00
python代写
微信客服:codinghelp
站长地图