首页
网站开发
桌面应用
管理软件
微信开发
App开发
嵌入式软件
工具软件
数据采集与分析
其他
首页
>
> 详细
MA2605代做、代写MATLAB编程语言
项目预算:
开发周期:
发布时间:
要求地区:
MA2605 – Professional Development and Project Work
Assignment 3
Distribution Date: Friday December 1st , 2023
Submission Deadline: 23:59 Friday December 29th, 2023
(through Wiseflow)
Feedback by: After exam panels and boards
Contribution to overall module assessment: 50%
Indicative student time working on
assessment:
20 hours
Main objective of the assessment: The objective of this task is to solve a range of problems
involving the numerical solution of differential equations. Solutions must be written up using LaTeX,
and numerical methods must be coded using MATLAB.
Description of the Assessment: Each student must submit a report (a single .pdf file), written using
LaTeX (article style). There is no hard page limit, but it should be possible to answer all questions
successfully without writing more than 10 pages. All MATLAB codes used to generate results in the
report should also be submitted in a .zip file, and it should be clearly stated in your answer to each
question which code(s) correspond(s) to that question. The report should be clearly titled, and should
address the solution of the following problems (in each question, 𝛼𝛼 and 𝛽𝛽 are, respectively, the last
and second to last non-zero digits of your student number - note also that most parts can be solved
independently, i.e. if you get stuck on one part then that should not prevent you from attempting the
other parts):
1. Consider the initial value problem:
𝑑𝑑𝑑𝑑
𝑑𝑑𝑑𝑑 = cos
𝛼𝛼𝛼𝛼
4 , 𝑦𝑦(0) = 0, 0 ≤ 𝑡𝑡 ≤ 𝛽𝛽.
a. By showing that cos
𝛼𝛼𝑦𝑦
4 satisfies a particular condition (which you should state),
show that the problem has a unique solution. [10 marks]
b. Find the exact solution, showing your working. (Hint: you may find the following
formula helpful:
sec(𝑦𝑦) 𝑑𝑑𝑑𝑑 = ln tan
𝑦𝑦
2 +
𝜋𝜋
4
+ 𝐶𝐶 ,
where C is a constant.) [10 marks]
c. Use the Forward Euler Method to approximate the solution to the initial value
problem, and draw up a table comparing the error at 𝑡𝑡 = 𝛽𝛽 for an appropriate range of
time steps. Calculate: 𝑝𝑝 = log2
𝑒𝑒𝑒𝑒𝑒𝑒𝑒𝑒𝑒𝑒 𝑐𝑐𝑐𝑐𝑐𝑐𝑐𝑐𝑐𝑐𝑐𝑐𝑐𝑐𝑐𝑐𝑐𝑐𝑐𝑐 𝑢𝑢𝑢𝑢𝑢𝑢𝑢𝑢𝑢𝑢 𝑡𝑡𝑡𝑡 𝑡𝑡𝑡𝑡𝑡𝑡𝑡𝑡𝑡𝑡 𝑡𝑡 2𝜏𝜏
𝑒𝑒𝑒𝑒𝑒𝑒𝑒𝑒𝑒𝑒 𝑐𝑐𝑐𝑐𝑐𝑐𝑐𝑐𝑐𝑐𝑐𝑐𝑐𝑐𝑐𝑐𝑐𝑐𝑐𝑐 𝑢𝑢𝑢𝑢𝑢𝑢𝑢𝑢𝑢𝑢 𝑡𝑡𝑡𝑡 𝑡𝑡𝑡𝑡𝑡𝑡𝑡𝑡𝑡𝑡 𝑡𝑡 𝜏𝜏 for appropriate
values of τ, and explain how this could be used to test the conjecture: 𝑒𝑒𝑒𝑒𝑒𝑒𝑒𝑒𝑒𝑒 = 𝐶𝐶𝜏𝜏𝑝𝑝,
where 𝐶𝐶 is constant. [10 marks]
d. Repeat part c for the Trapezoidal method (an implicit method), using Fixed Point
Iteration to compute the results at each step. [10 marks]
e. Repeat part c using the modified Euler (predictor-corrector) method, for which you
should use the forward Euler method as a predictor, inserting that solution into the
right-hand side of the trapezoidal method equation. [10 marks]
f. Explicitly write out the steps of the four stage Runge Kutta method given by the
following Butcher Tableau, and then repeat part c using this method: [10 marks]
0 0 0 0 0
½ ½ 0 0 0
½ 0 ½ 0 0
1 0 0 1 0
1/6 1/3 1/3 1/6
g. Comment on the advantages and disadvantages of using each of the methods from
parts (c)-(f) above, for solving initial value problems such as the one in this question
[10 marks]
2. Consider the boundary value problem:
− 𝑑𝑑2𝑦𝑦
𝑑𝑑𝑥𝑥2 = 𝛼𝛼𝑥𝑥2 − 𝛽𝛽, 𝑥𝑥 ∈ (−1,1),
𝑦𝑦(−1) = 𝑦𝑦(1) = 0.
a. Determine the exact solution, by direct integration or otherwise. [10 marks]
b. Suppose 𝑁𝑁 is a positive even integer, ℎ = 2
𝑁𝑁, and define 𝑥𝑥𝑗𝑗 = −1 + 𝑗𝑗ℎ,𝑗𝑗 = 0, … , 𝑁𝑁.
Consider the following finite difference scheme for the numerical solution of the
boundary value problem:
− 𝑌𝑌𝑗𝑗+1 − 2𝑌𝑌𝑗𝑗 + 𝑌𝑌𝑗𝑗−1
ℎ2 = 𝛼𝛼𝑥𝑥𝑗𝑗
2 − 𝛽𝛽, 𝑗𝑗 = 1, … , 𝑁𝑁 − 1,
𝑌𝑌0 = 0, 𝑌𝑌𝑁𝑁 = 0,
where 𝑌𝑌𝑗𝑗 ≈ 𝑦𝑦 𝑥𝑥𝑗𝑗 , 𝑗𝑗 = 0, … , 𝑁𝑁. Rewrite this difference scheme as a system of linear
equations in matrix form with a vector of unknowns 𝑌𝑌 = (𝑌𝑌1, … , 𝑌𝑌𝑁𝑁−1)𝑇𝑇, and
comment on the structure of the matrix. [10 marks]
c. Write a code to compute 𝑌𝑌 for any given input 𝑁𝑁, and plot 𝑌𝑌 and the error on
different graphs, each for an appropriate range of values of 𝑁𝑁. Comment on your
results. [10 marks]
Learning outcomes to be assessed: The module learning outcomes relevant to this assessment are:
• Plan and implement numerical methods for differential equations using an appropriate
programming language. Illustrate the results using the language's graphics facilities. Analyse
and interpret the results of the numerical implementation in terms of the original problem;
• Choose with confidence and manipulate accurately the appropriate techniques to solve
problems with linear differential equations, including providing criteria for the accuracy of
numerical methods;
• Demonstrate the knowledge and understanding of the multiple skills necessary to operate in a
professional environment
Marking: the total mark available for this assignment is worth up to 50% of the available overall
mark for the module. Marks (out of 100) will be awarded for answers to the questions listed above
according to the stated mark distribution.
Submission instructions: Submission should be through WISEflow. Each student should submit
two files:
1. A single .pdf file, containing the full report. The name of this file should include the module
code and your student ID number, e.g. MA2605_1234567.pdf.
2. A zip file containing all MATLAB (.m) files used to generate the results in the .pdf. The
name of this file should also include the module code and your student ID number, e.g.
MA2605_1234567.zip.
If you are unsure how to download your .pdf file from Overleaf into a folder on your computer, then
please follow the instructions given in the following link:
https://www.overleaf.com/learn/how-to/Downloading_a_Project
Note that the first part of the instructions creates a .zip file containing all of the source files but not the
.pdf file. You will need to download the .pdf file separately by following the instructions on how to
download the finished .pdf. Please remember to back up your files periodically; it is your
responsibility to make sure that your files are securely backed up, and the safest way to do this is by
using the filestore at Brunel – details of how to do this can be found at:
https://intra.brunel.ac.uk/s/cc/kb/Pages/Saving-work-on-your-filestore-at-Brunel.aspx
You can login into Wiseflow directly at https://europe.wiseflow.net/login/uk/brunel.
Plagiarism and references: The university’s standard rules on plagiarism and collusion apply (see
https://www.brunel.ac.uk/life/library/SubjectSupport/Plagiarism for more information). This is an
individual assignment, and work submitted must be your own. Information from any research
undertaken (e.g., in text books or online) should be given credit where appropriate. The lecture on
academic misconduct and plagiarism, given on Thursday October 19th (week 6, lecture 13) is
available for viewing via the course Brightspace page, and you are strongly encouraged to watch this
if you have not done so already.
Please familiarise yourself with the university’s guidelines to students on the use of AI,
see https://students.brunel.ac.uk/study/using-artificial-intelligence-in-your-studies.
Late submission: The clear expectation is that you will submit your coursework by the submission
deadline. In line with the University’s policy on the late submission of coursework, coursework
submitted up to 48 hours late will be capped at a threshold pass (D-). Work submitted over 48 hours
after the stated deadline will automatically be given a fail grade (F). Please refer to
https://students.brunel.ac.uk/study/cedps/welcome-to-mathematics for information on submitting late
work, penalties applied, and procedures in the case of extenuating circumstances.
软件开发、广告设计客服
QQ:99515681
邮箱:99515681@qq.com
工作时间:8:00-23:00
微信:codinghelp
热点项目
更多
代做ceng0013 design of a pro...
2024-11-13
代做mech4880 refrigeration a...
2024-11-13
代做mcd1350: media studies a...
2024-11-13
代写fint b338f (autumn 2024)...
2024-11-13
代做engd3000 design of tunab...
2024-11-13
代做n1611 financial economet...
2024-11-13
代做econ 2331: economic and ...
2024-11-13
代做cs770/870 assignment 8代...
2024-11-13
代写amath 481/581 autumn qua...
2024-11-13
代做ccc8013 the process of s...
2024-11-13
代写csit040 – modern comput...
2024-11-13
代写econ 2070: introduc2on t...
2024-11-13
代写cct260, project 2 person...
2024-11-13
热点标签
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
软件定制开发网!