首页
网站开发
桌面应用
管理软件
微信开发
App开发
嵌入式软件
工具软件
数据采集与分析
其他
首页
>
> 详细
MATH2033代做、代写Java,Python编程
项目预算:
开发周期:
发布时间:
要求地区:
MATH2033 Introduction to Scientific Computation
— Coursework 2 —
Submission deadline: 15:00 Friday 20 December 2024
This coursework contributes 10% towards your mark for this module.
Rules
It is not permitted to use generative artificial intelligence (AI) software for this coursework. Ensure that
you have read and have understood the Policy on academic misconduct. One of the things stated in
this policy is that “The submission of work that is generated and/or improved by software that is not
permitted for that assessment, for the purpose of gaining marks will be regarded as false authorship
and seen as an attempt to gain an unpermitted academic advantage”.
This coursework should be your own individual work, with the exceptions that:
1. You may ask for and receive help from the lecturer Richard Rankin although not all questions will be
answered and those that are will be answered to all students that attend the class.
2. You may copy from material provided on the Moodle pages:
• Introduction to Scientific Computation (MATH2033 UNNC) (FCH1 24-25)
• Analytical and Computational Foundations (MATH1028 UNNC) (FCH1 23-24)
• Calculus (MATH1027 UNNC) (FCH1 23-24)
• Linear Mathematics (MATH1030 UNNC) (FCH1 23-24)
Coding Environment
You should write and submit a py file. You are strongly encouraged to use the Spyder IDE (integrated
development environment). You should not write or submit an ipynb file and so you should not use
Jupyter Notebook.
It will be assumed that numpy is imported as np, and that matplotlib.pyplot is imported as plt.
Submission Procedure:
To submit, upload your linear systems.py file through the Coursework 2 assignment activity in the
Coursework 2 section of the Moodle page Introduction to Scientific Computation (MATH2033 UNNC)
(FCH1 24-25).
Marking
Your linear systems.py file will be mainly marked by running your functions with certain inputs and comparing
the output with the correct output.
Department of Mathematical Sciences Page 1 of 51. The linear systems.py file contains an unfinished function with the following first line:
def smax (w ,s , i ) :
Assume that:
• The type of the input w is numpy.ndarray.
• The type of the input s is numpy.ndarray.
• The type of the input i is int.
• There exists an int n such that the shape of w is (n,) and the shape of s is (n,).
• The input i is a nonnegative integer that is less than n.
Complete the function smax so that it returns an int p which is the smallest integer for which
i ≤ p < n
and
|w[p]|
s[p]
= max
j∈{i,i+1,...,n−1}
|w[j]|
s[j]
.
A test that you can perform on your function smax is to run the Question 1 cell of the tests.py file
and check that what is printed is:
1
[20 marks]
Coursework 2 Page 2 of 52. Suppose that A ∈ R
n×n, that det(A) 6= 0 and that b ∈ R
n.
The linear systems.py file contains an unfinished function with the following first line:
def spp (A ,b , c ) :
Assume that:
• The type of the input A is numpy.ndarray.
• The type of the input b is numpy.ndarray.
• The type of the input c is int.
• There exists an int n such that n > 1, the shape of A is (n,n) and the shape of b is (n,1).
• The input A represents A.
• The input b represents b.
• The input c is a positive integer that is less than n.
Complete the function spp so that it returns a tuple (U, v) where:
• U is a numpy.ndarray with shape (n,n) that represents the matrix comprised of the first n
columns of the matrix arrived at by performing forward elimination with scaled partial pivoting
on the matrix
A b
until all of the entries below the main diagonal in the first c columns are
0.
• v is a numpy.ndarray with shape (n,1) that represents the last column of the matrix arrived at
by performing forward elimination with scaled partial pivoting on the matrix
A b
until all of
the entries below the main diagonal in the first c columns are 0.
A test that you can perform on your function spp is to run the Question 2 cell of the tests.py file
and check that what is printed is:
[[ 10. 0. 20.]
[ 0. -5. -1.]
[ 0. 10. -11.]]
[[ 70.]
[ -13.]
[ -13.]]
[30 marks]
Coursework 2 Page 3 of 53. Suppose that A ∈ R
n×n, that det(A) 6= 0, that all of the entries on the main diagonal of A are
nonzero and that b ∈ R
n. Let x ∈ R
n be the solution to Ax = b. Let x
(k) be the approximation
to x obtained after performing k iterations of the Gauss–Seidel method starting with the initial
approximation x
(0)
.
The linear systems.py file contains an unfinished function with the following first line:
def GS (A ,b ,g ,t , N ) :
Assume that:
• The type of the input A is numpy.ndarray.
• The type of the input b is numpy.ndarray.
• The type of the input g is numpy.ndarray.
• The type of the input t is numpy.float64, float or int.
• The type of the input N is int.
• There exists an int n such that the shape of A is (n,n), the shape of b is (n,1) and the shape
of g is (n,1).
• The input A represents A.
• The input b represents b.
• The input g represents x
(0)
.
• The input t is a real number.
• The input N is a nonnegative integer.
Complete the function GS so that it returns a tuple (y, r) where:
• y is a numpy.ndarray with shape (n, M + 1) which is such that, for j = 0, 1, . . . , n − 1,
y[j, k] =x
(k)
j+1 for k = 0, 1, . . . , M where M is the smallest nonnegative integer less than N for
which
is less than t if such an integer M exists and M = N otherwise.
• r is a bool which is such that r = True if
is less than t and r = False otherwise.
A test that you can perform on your function GS is to run the Question 3 cell of the tests.py file and
check that what is printed is:
[[ 0. 12. 12.75 ]
[ 0. 3. 3.9375 ]
[ 0. 6.75 6.984375]]
False
[25 marks]
Coursework 2 Page 4 of 54. Suppose that A ∈ R
n×n, that det(A) 6= 0, that all of the entries on the main diagonal of A are
nonzero and that b ∈ R
n. Let x ∈ R
n be the solution to Ax = b. Let x
(k) be the approximation
to x obtained after performing k iterations of the Gauss–Seidel method starting with the initial
approximation x
(0)
.
The linear systems.py file contains an unfinished function with the following first line:
def GS_plot (A ,b ,g ,x , N ) :
Assume that:
• The type of the input A is numpy.ndarray.
• The type of the input b is numpy.ndarray.
• The type of the input g is numpy.ndarray.
• The type of the input x is numpy.ndarray.
• The type of the input N is int.
• There exists an int n such that the shape of A is (n,n), the shape of b is (n,1), the shape of g
is (n,1) and the shape of x is (n,1).
• The input A represents A.
• The input b represents b.
• The input g represents x
(0)
.
• The input x represents x.
• The input N is a nonnegative integer.
Complete the function GS plot so that it returns a matplotlib.figure.Figure, with an appropriate
legend and a single pair of appropriately labelled axes, on which there is a semilogy plot
of:
A test that you can perform on your function GS plot is to run the Question 4 cell of the tests.py
file.
[25 marks]
Coursework 2 Page 5 of 5
软件开发、广告设计客服
QQ:99515681
邮箱:99515681@qq.com
工作时间:8:00-23:00
微信:codinghelp
热点项目
更多
代做 program、代写 c++设计程...
2024-12-23
comp2012j 代写、代做 java 设...
2024-12-23
代做 data 编程、代写 python/...
2024-12-23
代做en.553.413-613 applied s...
2024-12-23
代做steady-state analvsis代做...
2024-12-23
代写photo essay of a deciduo...
2024-12-23
代写gpa analyzer调试c/c++语言
2024-12-23
代做comp 330 (fall 2024): as...
2024-12-23
代写pstat 160a fall 2024 - a...
2024-12-23
代做pstat 160a: stochastic p...
2024-12-23
代做7ssgn110 environmental d...
2024-12-23
代做compsci 4039 programming...
2024-12-23
代做lab exercise 8: dictiona...
2024-12-23
热点标签
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
联系我们
- QQ: 9951568
© 2021
www.rj363.com
软件定制开发网!