合肥生活安徽新聞合肥交通合肥房產(chǎn)生活服務(wù)合肥教育合肥招聘合肥旅游文化藝術(shù)合肥美食合肥地圖合肥社保合肥醫(yī)院企業(yè)服務(wù)合肥法律

        MA2552代做、代寫Matlab編程語(yǔ)言

        時(shí)間:2023-12-19  來源:合肥網(wǎng)hfw.cc  作者:hfw.cc 我要糾錯(cuò)


        MA2552 Introduction to Computing (DLI) 2023/24

        Computational Project

        Aims and Intended Learning Outcomes

        The aims of the Project are to describe methods for solving given computational problems, develop and test Matlab code implementing the methods, and demonstrate application

        of the code to solving a specific computational problem. In this Project, you be will be required to demonstrate

        • ability to investigate a topic through guided independent research, using resources

        available on the internet and/or in the library;

        • understanding of the researched material;

        • implementation of the described methods in Matlab;

        • use of the implemented methods on test examples;

        • ability to present the studied topic and your computations in a written Project Report.

        Plagiarism and Declaration

        • This report should be your independent work. You should not seek help from other

        students or provide such help to other students. All sources you used in preparing your

        report should be listed in the References section at the end of your report and referred

        to as necessary throughout the report.

        • Your Project Report must contain the following Declaration (after the title page):

        DECLARATION

        All sentences or passages quoted in this Project Report from other people’s work have

        been specifically acknowledged by clear and specific cross referencing to author, work and

        page(s), or website link. I understand that failure to do so amounts to plagiarism and

        will be considered grounds for failure in this module and the degree as a whole.

        Name:

        Signed: (name, if submitted electronically)

        Date:

        Project Report

        The report should be about 6-8 pages long, written in Word or Latex. Equations should

        be properly formatted and cross-referenced, if necessary. All the code should be included in

        the report. Copy and paste from MATLAB Editor or Command Window and choose ‘Courier

        New’ or another fixed-width font. The Report should be submitted via Blackboard in a single

        file (Word document or Adobe PDF) and contain answers to the following questions:

        1

        MA2552 Introduction to Computing (DLI) 2023/24

        Part 0: Context

        Let f(x) be a periodic function. The goal of this project is to implement a numerical method

        for solving the following family of ordinary differential equations (O.D.E):

        an

        d

        nu(x)

        dxn

        + an−1

        d

        n−1u(x)

        dxn−1

        + . . . + a0u(x) = f(x), (1)

        where ak, k = 0, · · · , n, are real-valued constants. The differential equation is complemented

        with periodic boundary conditions:

        d

        ku(−π)

        dxk

        =

        d

        ku(π)

        dxk

        for k = 0, · · · , n − 1.

        We aim to solve this problem using a trigonometric function expansion.

        Part 1: Basis of trigonometric functions

        Let u(x) be a periodic function with period 2π. There exist coefficients α0, α1, α2, . . ., and

        β1, β2, . . . such that

        u(x) = X∞

        k=0

        αk cos(kx) +X∞

        1

        βk sin(kx).

        The coefficients αk and βk can be found using the following orthogonality properties:

        Z π

        −π

        cos(kx) sin(nx) dx = 0, for any k, n

        Z π

        −π

        cos(kx) cos(nx) dx =

        ɽ**;?**0;

        ɽ**;?**1;

        0 if k ̸= n

        π if k = n ̸= 0

        2π if k = n = 0.

        Z π

        −π

        sin(kx) sin(nx) dx =

        (

        0 if k ̸= n

        π if k = n ̸= 0.

        1. Implement a function that takes as an input two function handles f and g, and an

        array x, and outputs the integral

        1

        π

        Z π

        −π

        f(x)g(x) dx,

        using your own implementation of the Simpson’s rule scheme. Corroborate numerically

        the orthogonality properties above for different values of k and n.

        2. Show that

        αk =

        (

        1

        π

        R π

        −π

        u(x) cos(kx) dx if k ̸= 0

        1

        R π

        −π

        u(x) dx if k = 0

        βk =

        1

        π

        Z π

        −π

        u(x) sin(kx) dx.

        2

        MA2552 Introduction to Computing (DLI) 2023/24

        3. Using question 1 and 2, write a function that given a function handle u and an integer

        m, outputs the array [α0, α1 . . . , αm, β1, . . . , βm].

        4. Write a function that given an array [α0, α1 . . . , αm, β1, . . . , βm], outputs (in the form

        of an array) the truncated series

        um(x) := Xm

        k=0

        αk cos(kx) +Xm

        k=1

        βk sin(kx), (2)

        where x is a linspace array on the interval [−π, π].

        5. Using the function from question 3, compute the truncated series um(x) of the following

        functions:

        • u(x) = sin3

        (x)

        • u(x) = |x|

        • u(x) = (

        x + π, for x ∈ [−π, 0]

        x − π, for x ∈ (0, π]

        ,

        and using question 4, plot u(x) and um(x) for different values of m.

        6. Carry out a study of the error between u(x) and um(x) for ∥u(x)−um(x)∥p with p = 2

        and then with p = ∞. What do you observe?

        Part 2: Solving the O.D.E

        Any given periodic function u(x) can be well approximated by its truncate series expansion (2) if m is large enough. Thus, to solve the ordinary differential equation (1)

        one can approximate u(x) by um(x):

        u(x) ≈

        Xm

        k=0

        αk cos(kx) +Xm

        k=1

        βk sin(kx),

        Since um(x) is completely determined by its coefficients [α0, α1 . . . , αm, β1, . . . , βm],

        to solve (1) numerically, one could build a system of equations for determining these

        coefficients.

        7. Explain why under the above approximation, the boundary conditions of (1) are automatically satisfied.

        8. We have that

        dum(x)

        dx =

        Xm

        k=0

        γk cos(kx) +Xm

        k=1

        ηk sin(kx)

        Write a function that takes as input the integer m, and outputs a square matrix D that

        maps the coefficients [α0, . . . , αm, β1, . . . , βm] to the coefficients [γ0, . . . , γm, η1, . . . , ηm].

        3

        MA2552 Introduction to Computing (DLI) 2023/24

        9. Write a function that given a function handler f, an integer m, and the constants

        ak, solves the O.D.E. (1). Note that some systems might have an infinite number of

        solutions. In that case your function should be able identify such cases.

        10. u(x) = cos(sin(x)) is the exact solution for f(x) = sin(x) sin(sin(x))−cos(sin(x)) (cos2

        (x) + 1),

        with a2 = 1, a0 = −1 and ak = 0 otherwise. Plot the p = 2 error between your numerical solution and u(x) for m = 1, 2, . . .. Use a log-scale for the y-axis. At what rate

        does your numerical solution converge to the exact solution?

        11. Show your numerical solution for different f(x) and different ak of your choice.

        請(qǐng)加QQ:99515681 或郵箱:99515681@qq.com   WX:codehelp

         

        掃一掃在手機(jī)打開當(dāng)前頁(yè)
      1. 上一篇:代寫CE335編程、代做Python,C++程序設(shè)計(jì)
      2. 下一篇:COMP528代寫、代做c/c++編程設(shè)計(jì)
      3. 無(wú)相關(guān)信息
        合肥生活資訊

        合肥圖文信息
        出評(píng) 開團(tuán)工具
        出評(píng) 開團(tuán)工具
        挖掘機(jī)濾芯提升發(fā)動(dòng)機(jī)性能
        挖掘機(jī)濾芯提升發(fā)動(dòng)機(jī)性能
        戴納斯帝壁掛爐全國(guó)售后服務(wù)電話24小時(shí)官網(wǎng)400(全國(guó)服務(wù)熱線)
        戴納斯帝壁掛爐全國(guó)售后服務(wù)電話24小時(shí)官網(wǎng)
        菲斯曼壁掛爐全國(guó)統(tǒng)一400售后維修服務(wù)電話24小時(shí)服務(wù)熱線
        菲斯曼壁掛爐全國(guó)統(tǒng)一400售后維修服務(wù)電話2
        美的熱水器售后服務(wù)技術(shù)咨詢電話全國(guó)24小時(shí)客服熱線
        美的熱水器售后服務(wù)技術(shù)咨詢電話全國(guó)24小時(shí)
        海信羅馬假日洗衣機(jī)亮相AWE  復(fù)古美學(xué)與現(xiàn)代科技完美結(jié)合
        海信羅馬假日洗衣機(jī)亮相AWE 復(fù)古美學(xué)與現(xiàn)代
        合肥機(jī)場(chǎng)巴士4號(hào)線
        合肥機(jī)場(chǎng)巴士4號(hào)線
        合肥機(jī)場(chǎng)巴士3號(hào)線
        合肥機(jī)場(chǎng)巴士3號(hào)線
      4. 上海廠房出租 短信驗(yàn)證碼 酒店vi設(shè)計(jì)

        主站蜘蛛池模板: 动漫精品第一区二区三区| 国模视频一区二区| 成人一区专区在线观看| 在线视频一区二区三区三区不卡| 波多野结衣高清一区二区三区| 亚洲一区精彩视频| 久久精品道一区二区三区| 一区二区三区在线免费| 国产精品亚洲午夜一区二区三区 | 色妞色视频一区二区三区四区| 亚洲国产激情一区二区三区 | 国产精品视频一区二区三区无码| 国产一区二区精品在线观看| 丝袜美腿一区二区三区| 久久99精品一区二区三区| 丝袜无码一区二区三区| 国产成人高清精品一区二区三区 | 亚洲一区二区三区免费| 麻豆va一区二区三区久久浪| 日韩中文字幕一区| 国产大秀视频在线一区二区| 亚洲国产精品一区二区三区在线观看| 国产自产在线视频一区| 久久精品国产一区二区三区日韩| 亚洲一区二区三区偷拍女厕| 久久亚洲综合色一区二区三区| 成人国内精品久久久久一区| 三上悠亚日韩精品一区在线| 一区二区乱子伦在线播放| 制服丝袜一区二区三区| 色窝窝无码一区二区三区色欲| 亚洲av综合av一区| 99久久精品午夜一区二区| 中文字幕精品一区二区| 亚洲欧美成人一区二区三区| 在线精品一区二区三区电影| 精品无码综合一区| 国产另类TS人妖一区二区| 亚洲AV美女一区二区三区| 中文字幕乱码一区久久麻豆樱花| 韩国精品一区视频在线播放|