首页
网站开发
桌面应用
管理软件
微信开发
App开发
嵌入式软件
工具软件
数据采集与分析
其他
首页
>
> 详细
Python程序语言讲解、辅导data留学生编程 调试Matlab程序|调试Matlab程序
项目预算:
开发周期:
发布时间:
要求地区:
CR4 (Submission phase)
Submission phase
Instructions for submission
Using your preferred code editor (e.g. VSCode), in a Python script called "CR4.py", write code to answer the following problem.
Problem
The secant method is a root-finding algorithm used to solve equations of the form . The secant method has similarities from both the
regula falsi and Newton's method. Starting from two initial guesses and , with , the next guess is computed recursively as
, where the iteration function is given by
This can be seen as taking a finite difference approximation to the derivative in Newton's method: we approximate the tangent at by tracing
the secant line between the points and (as is done for regula falsi between the two bounds of the bracketing
interval), and the next guess is the intersection of this secant with the x-axis.
An appropriate choice for the initial guesses and is one for which the root . One iteration counts as one computation of
; this is to say that, for instance, if convergence is achieved with , it is achieved in 1 iteration (not 2).
Your task
Write a function "secant(F, x0, x1, tol, kmax)" which takes 5 input arguments:
a function "F", representing the function whose root we are seeking,
two numbers "x0" and "x1", representing the initial guesses and respectively, which bracket the root ( ),
a positive number "tol", representing the tolerance required for convergence,
a strictly positive integer "kmax", representing the maximum number of iterations allowed,
and returns
the root of found by the secant method, as a floating point number, and
the total number of iterations required to find the root.
If "kmax" iterations have been computed and convergence still has not been achieved, return the last guess instead of the root, and
additionally print a message on the screen to display that convergence has failed; the message should also display the value of
.
You should also consider the case where and handle it appropriately.
Additionally, before computing the result, the function should perform all necessary checks on the type and the value of the input arguments, as
was done in the Week 9 workshop. This means that if any input arguments are given incorrectly so that the algorithm will fail to run (either
producing a runtime error or an incorrect result), the function should display an appropriate error message to help the user correct their function
call, and exit the function immediately.
Submission phase
Current phase
Assessment phase Grading evaluation phase Closed
𝐹(𝑥) = 0
𝑥0 𝑥1 𝑥0 ≠ 𝑥1
𝑥𝑘+1 = 𝐺(𝑥𝑘) 𝐺(𝑥)
𝐺(𝑥) = 𝑥𝑘 − 𝐹(𝑥𝑘) .
𝑥𝑘−𝑥𝑘−1
𝐹(𝑥𝑘)−𝐹(𝑥𝑘−1)
𝐹(𝑥𝑘)
(𝑥𝑘,𝐹(𝑥𝑘)) (𝑥𝑘−1,𝐹(𝑥𝑘−1))
𝑥0 𝑥1 𝑥∗ ∈ [𝑥0 ,𝑥1 ]
𝑥𝑘+1 = 𝐺(𝑥𝑘) 𝑥2
𝐹 𝑥∗
𝑥0 𝑥1 𝑥∗ ∈ [𝑥0 ,𝑥1 ]
𝐹
𝑥𝑘max+1
|𝑒𝑘 +1 | = | − | max 𝑥𝑘max+1 𝑥𝑘max
𝐹(𝑥𝑘) = 𝐹(𝑥𝑘−1)
Setup phase
2021/3/24 CR4 (Submission phase)
https://moodle2.maths.ed.ac.uk/live2018/mod/workshop/view.php?id=3641 2/3
Testing
The tests should verify that
each of the checks you perform on the input arguments is triggered appropriately when invalid inputs are given, and
valid input arguments produce a valid result every time.
As usual, you should use some trivial test functions/values with known results for sanity checking. Make sure that the value returned is correct, as
well as the number of iterations required; make sure that when convergence is not achieved, the appropriate message is displayed.
You should include your test code in the script CR4.py, after the function definition. If you produce any plots, make sure you label them
appropriately and clearly.
Scope
This is for the more experienced programmers amongst you: remember that this is peer-assessed, and that Computing & Numerics is a course
designed for beginner programmers. Please try to stick to what we've seen in the course material so far, even if you feel confident in doing
something more advanced -- keep it simple.
You should not need to -- but if you absolutely want to use something we haven't seen in the course, then please keep it to a minimum, and make
sure you explain clearly what you are doing (and why) in the code comments, so that a student with little or no previous programming
experience can assess your work with confidence. If you don't follow these guidelines, and submit code which requires much more advanced
knowledge/experience with Python to fully understand than we have seen in the course so far, then your assessors will be able to penalise you
(see marking scheme below).
Submission
Upload your file "CR4.py" here when you are finished. Make sure you upload your file before Monday 29th March, 12pm (noon), otherwise you
won't be able to participate to the peer-assessment phase, and you will get a zero for the whole CR4 task!
Marking scheme
The marking scheme which you will use when assessing next week is given in the table below. Each criterion counts equally towards the grade,
and is assessed on a scale of 0 to 3.
Criteria 0 1 2 3
Was the file CR4.py submitted
correctly, and the code written as
instructed?
If you penalise here, indicate what
the problem was in the text box.
The file was in the
wrong format, which
made it difficult or
impossible to open.
The file was in the correct format,
but either didn't have the correct
name, or the code inside did not
follow the instructions (e.g. the
function was named differently, or
performed a completely different
task, or there was no function, or
there were no tests).
Everything was submitted in
the correct format and the
code followed the
specifications, but the code
was much too
complex/advanced compared
to what we have seen in the
course.
Everything was
submitted in the
correct format and
the code followed
the specifications
(regardless of
whether it was
correct or not).
Is the code correct and without
bugs? Does the function "secant()"
produce the correct results for any
appropriate inputs?
If you can find any bugs or issues,
then you can indicate them in the
text box below to help the author fix
them. If you know that there is an
issue but you aren't sure why, then
indicate which test(s) look incorrect,
and give your best guess as to what
could be wrong.
(Use the test code provided in the
script by the student, as well as the
model answer and test code
provided by the instructors, to make
sure the code is fully functional.)
The code does not
work at all, there are a
lot of problems which
would take a long time
to find and fix.
There are a few bugs, so the code
works only for some input values,
but fails for many others (either
giving an error or returning the
wrong result).
There is a small number of
minor bugs or omissions, so
the code perhaps works for
most input values but fails for
a few special cases; or
perhaps the code doesn't work
but only because of a minor
issue which is trivial to fix.
The code works
correctly and
returns the correct
results for all input
values.
2021/3/24 CR4 (Submission phase)
https://moodle2.maths.ed.ac.uk/live2018/mod/workshop/view.php?id=3641 3/3
Was the function tested with an
appropriate range of different inputs,
to check if it worked? (Whether or
not the tests passed is not relevant
here.)
No tests were included
in the script.
Very few tests were performed, not
nearly enough to fully check that
the function worked.
A number of tests were
performed, which covered a
good number of possible
values, but perhaps some
important cases were missed.
A good number of
tests were
performed, which
covered all (or
almost all) of the
possible values
we could use with
this function.
Are the type and value of the input
arguments to "secant()" checked,
with an appropriate error message
displayed when necessary?
There are no checks on
the input arguments.
There are only a very small
number of checks on input
arguments, perhaps not all of them
appropriate or functional.
Most required checks on the
input arguments are
performed, but a few are
missing or not functioning; or
perhaps all checks are
performed, but with
inappropriate or absent error
messages.
All input
arguments are
checked
appropriately for
correct type and
value, with an
informative error
message for
each.
Is the code easy to read, with
consistent spacing, and appropriate
variable names?
If you penalise here, give some
suggestions in the text box for how
to improve readability.
The code is very
difficult to read,
perhaps because of
bad/inconsistent
spacing (e.g. if the
code is very "squished"
without any white
space), and poor
variable name choices.
The code is fairly difficult to read in
places, the variable names are not
generally well chosen, and the
spacing could be improved.
The code is mostly easy to
read, although could still be
slightly improved.
The code is easy
to read, with
consistent code
style, spacing,
and appropriate
variable names.
Is the code well-commented and
documented? Do the code
comments help me understand how
the code works?
Remember that the most important
thing is that the comments are
useful to read and understand the
code.
There are no code
comments at all and
there is no docstring for
the function.
There are a small number of code
comments, or perhaps a docstring,
but they are not particularly
informative, or not sufficient to help
the reader understand the code
easily.
There are some code
comments and perhaps a
docstring, but they are not
always helpful, or they are too
descriptive and don't always
explain the different steps.
There are helpful
code comments,
and perhaps a
docstring, clearly
and succinctly
explaining the
main steps of the
code.
Your submission
You have not submitted your work yet
Add submission
You are logged in as Yiwei Zong (Log out)
www.learn.ed__81855_1
Data retention summary
Get the mobile app
◀ CR3
Jump to...
Week 2 practice questions: Lists, loops, and functions ▶
软件开发、广告设计客服
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
软件定制开发网!