2013年4月11日 星期四

2.1 the besection method 習題組 2.1 NO.1

Numerical Analysis數值分析筆記

2.1 The Bisection Method /

習題組 2.1 /



NO.1.
use the bisetion method to find the $p_3$ for $f(x)=\sqrt{x}-\cos x $ on $[0,1]$.


2.1 NO.01


C 式語言:

    1. #include <stdio.h>
    2. #include <stdlib.h>
    3. #include <math.h>       /**/
    4. float f(float x);
    5. int sig(float v);
    6. int main(void)
    7.     int i=0,N=100;
    8.     float a=0.0,b=1.0,p=(a+b)/2,FA=0.0,FP=0.0;
    9.     float TOL=0.00001;
    10.    
    11.     printf("n  an         bn         pn         f(pn)\n");
    12.     /*Step1*/
    13.     i=1;
    14.     FA=f(a);
    15.    
    16.     /*Step2*/
    17.     while(i<=N)
    18.     {    /*Step3*/
    19.          p=a+(b-a)/2;
    20.          FP=f(p);
    21.         
    22.     printf("%2d  %.9f  %.9f  %.9f  %+.9f\n",i,a,b,p,f(p));    
    23.         
    24.          /*Step4*/
    25.          if(FP==0 || (b-a)/2<TOL)
    26.          {printf("n=%d, p=%+f\n",i,p);break;}
    27.         
    28.          /*Step5*/
    29.          i=i+1;
    30.         
    31.          /*Step6*/
    32.          if(sig(FA)*sig(FP)>0){a=p;FA=FP;}
    33.          else b=p;
    34.          }
    35.     printf("method failed after N=%d iterations.",N);
    36.    
    37.    
    38.    
    39. system("PAUSE");
    40. return 0;       
    41.    }
    42.   
    43.   
    44. float f(float x)
    45. {
    46.       return sqrt(x)-cos(x);
    47.       }
    48.      
    49. int sig(float u)
    50. {   
    51.      if(u>0){return 1;}
    52.      else if(u<0){return -1;}
    53.      else {return 0;}
    54.      }

    c語言執行結果:

     2.1  BisectionNO.1

    沒有留言:

    張貼留言

    教學用,若不慎侵犯絕非故意,請留言通知必於第一時間移除,謝謝。