Category

Uncategorized

18,877
Articles
📘
📘
Uncategorized 10 Jul 2025

Write a function to compute the nth partial sum of this series, using the Rational class, and confirm that the 50th digit of π is zero. How many terms in the series are necessary to find this digit? The current record for computation of decimal places of π is 62.8 trillion (6.28 · 1013) digits (establish

Assignments Computer assignments will be set fortnightly. During the Computer Practical classes on Monday, you will be able to work independently on these assignments, under the supervision of academic staff. You should submit your work by 4.pm on the Monday in the week following the week of the Practical  class to receive feedback. Write your work in a Python Jupyter Notebook called xyz_N .ipynb, where xyz is your ISS username (i.e., your login) and N the number of the assignment (1, 2, 3, 4, 5), then submit it to the Assessment area for MATH2601 on the VLE. Jupyter Notebooks will  naturally allow you to write a short report, i.e., to produce an analysis of your results and to comment on them. Assessments Two of the computer assignments, 3 and 5, will be assessed. They will be graded and you will get  feedback on your work. The overall Computer Assessment grade counts for 30% of the MATH2601 grade and students need to achieve at least 40% on the Computer Assessments to pass the module. Chapter 1 Computational accuracy 1.1 Tutorial 1.1.1…

⏱ 14 min read Read more →
📘
Uncategorized 10 Jul 2025

Consider the directed search graph shown below.  S is the start state and G is the goal state.  Transition costs are shown along the graph edges. Note that the transition between C and D is bidirectional. (a)  For each of 

Midterm Practice Exam Spring 2024 1.  Consider the directed search graph shown below.  S is the start state and G is the goal state.  Transition costs are shown along the graph edges. Note that the transition between C and D is bidirectional.   (a)  For each of the search algorithms below, indicate the largest number of nodes that may possibly be expanded, not counting the goal state.  Assume all algorithms conduct the goal test upon popping a node from the frontier.  (Your answer may be ∞ .) Depth-first search with no reached table   Depth-first search with reached table   Breadth-first search with reached table   (b)…

⏱ 5 min read Read more →