版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
迭代法求解线性方程组第一页,共二十五页,编辑于2023年,星期五Ax=bAx*=bx(k+1)=f(x(k))
x(k),k=0,1,2,…hopefully,limx(k)=x*x(0)Iterativemethod:givenalinearsystemAx=b,designaniterationformulax(k+1)=f(x(k))andchooseaninitialapproximatesolutionx(0).iterationresultsinaseriesapproximatesolutions{x(k)|kZ}whichapproachestotherealsolutionx*hopefully.
第二页,共二十五页,编辑于2023年,星期五怎样设计迭代格式?B并不是唯一的,因此迭代格式也不是唯一的!Ax=bx=Bx+f
x(k+1)=Bx(k)
+f等价变换迭代矩阵迭代法思想:第一步第二步B与k无关,称为一阶定常迭代法收敛?发散?第三页,共二十五页,编辑于2023年,星期五判断收敛的方法:计算中判断迭代终止条件的方法:第四页,共二十五页,编辑于2023年,星期五LUD6.2基本迭代法第五页,共二十五页,编辑于2023年,星期五Jacobiiteration取M为DMatrixformJacobi迭代法简单,迭代一次只需作一次矩阵与向量的乘法即可。第六页,共二十五页,编辑于2023年,星期五第七页,共二十五页,编辑于2023年,星期五计算公式第八页,共二十五页,编辑于2023年,星期五Convenientinprogramming第九页,共二十五页,编辑于2023年,星期五Gauss-Seideliteration取M为D+L第十页,共二十五页,编辑于2023年,星期五Gauss-SeideliterationComponentformJacobi分量形式第十一页,共二十五页,编辑于2023年,星期五comparisonJacobiiterationGauss-Seideliteration计算x(k+1)时需要x(k)的所有分量,因此需开两组存储单元分别存放x(k)和x(k+1)计算xi(k+1)时只需要x(k)的i+1~n个分量,因此x(k+1)的前i个分量可存贮在x(k)的前i个分量所占的存储单元,无需开两组存储单元第十二页,共二十五页,编辑于2023年,星期五ConvergenceofiterationConvergenceofmatrixErrorvectorofiterationexampleJacobiiterationG-SiterationInthisexample,G-SiterationconvergesfasterthanJacobiiteration.It’snotalwaystrue.Sometimesthelaterconvergesfaster.Forsomelinearsystems,G-SconvergeswhileJdiverges,andviceversa.第十三页,共二十五页,编辑于2023年,星期五Howtocheckifacertainiterationsystemconvergesornot?ConditionsofconvergenceNotflexibletouseactuallyPosteriorerror–estimatedintheprocessofiterationPriorerror—estimatedbeforetheiterationBotherrorestimationcanbeusedtocontrolwhentohalttheiteration第十四页,共二十五页,编辑于2023年,星期五第十五页,共二十五页,编辑于2023年,星期五第十六页,共二十五页,编辑于2023年,星期五G-SiterationdivergesexampleJacobiiterationmatrixB=-D-1(L+U)G-SiterationmatrixG=-(D+L)-1UJacobiiterationdiverges第十七页,共二十五页,编辑于2023年,星期五Convergencyfortwospecialmatrix1.Aissymmetricandpositivedefinite
G-Sconverges.2.Aisstrictlydiagonallydominantorweaklydiagonallydominantandnotreducible
JandG-Sbothconverge.Strictlydiagonallydominantweaklydiagonallydominantorderrordern-rAreducible,elseAnotreducible.第十八页,共二十五页,编辑于2023年,星期五Example3G-SiterationdivergesJacobiiterationdivergesStrictlydiagonallydominantJ,G-Siterationconverge第十九页,共二十五页,编辑于2023年,星期五Example4StrictlydiagonallydominantJ,G-SiterationconvergeEuavalentreformation:2*(1)+(2)(1)+(3)!note:ifthegivenlinearsystemdoesn’tsatisfytheconvergencecondition,wecanmodifytheorderoftheequationsordosomelinearcombinationstogetanequivalentsystemsatisfyingtheconvergencecondition.第二十页,共二十五页,编辑于2023年,星期五JacobiorG-Siterationcanbeusedtosolvelinearsystemsbutsometimesitconvergesveryslowly,howtoaccelerateit?SOR:successiveoverrelaxedmethod—accelerationofG-Siteration第二十一页,共二十五页,编辑于2023年,星期五WehopetheweightaveragingresulttobeclosertotherealrootSORW<1,W>1,overrelaxedW=1,G-SSuppose
hasbeenfoundbyusingG-S,nowwehavetofind
SOR—successiveoverrelaxedmethod—accelerationofG-SiterationResidualoftwosuccessiveiterationresults第二十二页,共二十五页,编辑于2023年,星期五ConvergencyofSORConditionsofconvergence:necessarycondition.InordertoSORconverge,wemustchoose0<w<2,elseitmustdiverge.GivenAx=b,whereAissymmetricandpositivedefiniteand0<w<2SORconverges.Thistheoremincludesthecasew=1---G-S第二十三页,共二十五页,编辑于2023年,星期五Example5SolvethefollowinglinearsystemusingJ,G-S,andSOR(w=1.15).Iterationhaltswhen
Solution:take1.Jacobiiteration2.Gauss-Seideliteration3.SOR!note:wchosedwell,SORconvergesveryfast.AsforJandG-S,theconvergencespeeddependsonthespectralradiusoftheiterationmatrix.
第二十四页,共二十五页,编辑于2023年,星期五!NOTE:ThekeyprobleminSORishowtochoosesuchawthatSORconvergesfastest---theproblemofhowtochoosethebestrelaxedfactorw.Presently,theproblemhasbeensolvedforafewspecialmatrices.Forthegeneralcase,successivesearchingmethodisused.Atthestart,chooseoneormoredifferentwtotrySOR.Thenmodifywaccordingtothespeedofconvergenceandsuccessivelyfindthebestw.Finallyfixwandcontinueiteration.
Intheory,byiterationwecangetapproximatesolutiontoanyaccuracyexpected.Actually,however,duetothelimitofcomputerwordlength,wecan’tarrive
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 2025-2030民办国际高中升学指导服务与价值创造研究报告
- 2025-2030民办体育培训机构市场调研及运营优化与盈利预测报告
- 2025-2030民办中小学校行业国际比较与本土化发展策略研究报告
- 2025-2030民办中小学教育市场融资模式与资本运作研究报告
- 2025-2030民办中小学教育产业发展现状与投资机会研究报告
- 2025-2030民办中小学寄宿制模式运营效率与成本分析报告
- 2025-2030母婴社区运营用户活跃度提升与商业化路径研究报告
- 2025-2030母婴电商平台早教内容生态建设与用户粘性提升策略
- 园林公园设计题库及答案
- 2025企业合作伙伴之间的协议书合同范本
- 华为BEM战略解码体系完整版
- 深圳港危险品海运出口流程
- 设计质量保证措施三篇
- 安全生产责任制考核标准
- 《以奋斗者为本》摘要
- GB/T 7714-2015信息与文献参考文献著录规则
- 公共事业管理概论期末考试试题
- CB/T 3780-1997管子吊架
- 智力残疾康复训练课件
- 高粱高产栽培技术课件
- 山西省卫生院社区卫生服务中心信息名单目录
评论
0/150
提交评论