sim0004.dvi

Size: px
Start display at page:

Download "sim0004.dvi"

Transcription

1 4 : 1 f(x) Z b a dxf(x) (1) ( Double Exponential method=de ) 1 DE N = n T n h h =(b a)=n T n = b a f(a) +f(b) n f + f(a + j b a n )g n j=1 = b a f(a) +f(b) n f + f(a +j b a )g; n n+1 j=1 T n+1 = b a f(a) +f(b) n+1 f + f(a + j b a )g () n+1 n+1 j=

2 T n+1 = T n + b a n f(a +(j 1) b a ) (3) n+1 n+1 j=1 T 0 =(b a)(f(a) +f(b))= 1. f(x) ffl n = 1 h = b a, T = h(f(a) +f(b))=.. n=n h=h/ s=0 i =1; 3; ;n 1 s = s + f(a + ih) newt = T=+hs if jnewt T j <ffljnewt j goto (3) T = newt 3. newt f(x) =e x [0; 1] ffl =10 6 Fortran external f eps=1.0e-6 b=1.0 a=0.0 n=1 h=b-a t=h*(f(a)+f(b))/.0 do k=1,15 n=*n h=h/.0 40

3 s=0.0 do i=1,n-1, s=s+f(a+real(i)*h) enddo tn=t/.0+h*s if (abs(tn-t).lt.eps*abs(t)) goto 1 t=tn enddo 1 write(*,*) tn,k end real function f(x) f=exp(x) end 10 1:7188 e 1=1: C #include <stdio.h> #include <math.h> float f(float); main() int i, k, n; float a, b, h, s, t, x, tn, eps; eps = 1.0e-6; b = 1.0; a = 0.0; n = 1; 41

4 h = b - a; t = h * (f(a) + f(b)) /.0; for(k = 1; k <= 15; k++) n = * n; h = h /.0; s = 0.0; for(i = 1; i <= n - 1; i += ) s = s + f(a + (float)i * h); } tn = t /.0 + h * s; if(fabs(tn - t) < eps * fabs(t)) break; } t = tn; } printf("%1.8f %d n", tn, k); float f(float x) return exp(x); } Fortran90 real(8),external::f real(8)::eps,a,b,h,s,tn,t eps=1.0d-10 b=1.0_8 a=0.0_8 n=1 h=b-a t=h*(f(a)+f(b))/.0_8 do k=1,30 n=*n h=h/.0_8 s=0.0_8 4

5 do i=1,n-1, s=s+f(a+i*h) enddo tn=t/.0_8+h*s if (abs(tn-t) < eps*abs(t)) exit t=tn enddo print*,tn,k end real(8) function real(8)::x f=exp(x) end f(x) R dx cos(x) ( sin() ' 0: ) 0 3 x 1 ;x ;x 3 f 1 ;f ;f 3 f(x) = a(x x ) + b(x x )+c h = x 3 x f 1 = ah bh + c f = c y = x x, g(y) =f(x) f 3 = ah + bh + c (4) a = f 1 + f 3 f h ; b = f 3 f 1 h ; c = f (5) Z h h g(y)dy = h 3 [f 1 +4f + f 3 ] (6) 43

6 S N S N = h 3 N j=0 [f(x j )+f(x j+ )+4f(x j+1 )] = h N N 3 [f(a)+f(b)+4 f(x j )+ f(x j )] (7) j=1 N 4 N = n (n =1; ; ) n p N = n T n ;S n S n+1 = 4 3 T n T n (8) h =(b a)= n T n T n = 4h 3 [f(a)+f(b) h 3 + [f(a) +f(b) N j=1 N + j=1 f(a + jh)] j=1 f(a +jh)] = h N N 3 [f(a) +f(b)+4 f(x j )+ f(x j )] (9) j=1 S n 1. ffl =10 p, N := ; h := (b a)=; T := hff(a) +f(b) +f((a + b)=)g=; S := hff(a) +f(b)+4f((a + b)=)g=3. Loop N := N;h = h= s =0 j=1 ffl Loop(i =1; 3; 5; ;N 1) s=s+f(a+ih) ffl 44

7 newt=t/+h s news=(4newt-t)/3 If jnews Sj=jnewSj <fflgoto 3 T = newt; S = news 3. news Fortran external f eps=1.0e-6 n= b=1.0 a=0.0 h=(b-a)/.0 xi=(a+b)/.0 t=h*(f(a)+f(b)+.0*f(xi))/.0 ss=h*(f(a)+f(b)+4.0*f(xi))/3.0 do k=1,0 n=*n h=h/.0 s=0.0 do i=1,n-1, s=s+f(a+real(i)*h) enddo tn=t/.0+h*s sn=(4.0*tn-t)/3.0 if (abs(sn-ss).lt.eps*abs(sn)) goto 3 write(*,*) sn-ss,sn,k t=tn ss=sn enddo 45

8 3 write(*,*) sn,k end real function f(x) f=exp(x) end C #include <stdio.h> #include <math.h> float f(float); main() int i, k, n; float a, b, h, s, t; float xi, ss, sn, tt, tn, eps; eps = 1.0e-6; n = ; b = 1.0; a = 0.0; h = (b - a) /.0; xi = (a + b) /.0; t = h * (f(a) + f(b) +.0 * f(xi)) /.0; ss = h * (f(a) + f(b) * f(xi)) / 3.0; for(k = 1; k <= 0; k++) n = * n; h = h /.0; s = 0.0; for(i = 1; i <= n - 1; i += ) s = s + f(a + (float)i * h); } tn = t /.0 + h * s; sn = (4.0 * tn - t) / 3.0; 46

9 if(fabs(sn - ss) < eps * fabs(sn)) break; t = tn; ss = sn; } printf("%1.8f %d n", sn, k); } float f(float x) return exp(x); } Fortran 90 real(8),external::f real(8)::eps,a,b,h,xi,t,ss,tn,sn,s eps=1.0d-10 n= b=1.0_8 a=0.0_8 h=(b-a)/.0_8 xi=(a+b)/.0_8 t=h*(f(a)+f(b)+.0_8*f(xi))/.0_8 ss=h*(f(a)+f(b)+4.0_8*f(xi))/3.0_8 do k=1,0 n=*n h=h/.0_8 s=0.0_8 do i=1,n-1, s=s+f(a+i*h) enddo 47

10 tn=t/.0_8+h*s sn=(4.0_8*tn-t)/3.0_8 if(abs(sn-ss) < eps*abs(sn)) exit print*,sn-ss,sn,k t=tn ss=sn enddo print*,sn,k end real(8)function f(x) real(8)::x f=exp(x) end s S notation R 0 dx cos(x) =4 0 dx p (1 + 4x )(1 + 3x ) ( ) ( ) 4 DE Mathematica 3 R 1 dx= p 1 x x = sin ß DE (Double Exponential Formula) 48

11 4 I n = 0 dxx n e x (n =1; ; ) (1) I n () (1) I 1 ; ;I 15 (3) lim n!1 I n (4) I 1 ; ;I DE f(x) I = dtg(t) (10) h 1 I h = h g(ih) (11) i= 5 I = R 1 dte t = p ß (11) (h =0:5) (1) x = '(t) (1) (; 1) I = f('(t))' 0 (t) (13) (13) 1 I h = h f('(ih))' 0 (ih) (14) i= I (N ) h N + = h f('(ih))' 0 (ih) : N = N + + N +1 (15) i= N '(t) I = dοf(ο) (16) 49

12 3 (15) I (N ) h N + ο = '(t) =tanh( ß sinh t) (17) = h f(tanh( ß ß sinh(ih))) cosh(ih) cosh i= N ( ß sinh(ih)) (18) (17) (13) jtj f('(t))' 0 (t) ο A exp[ c exp jtj] (19) 4 (19) DE (Double Exponential Formula) 4. DE h h= 1 I h= = 1 fi h + h f('((j +1)h=))' 0 ((j +1)h=)g (0) j= I h = I I h I h ο exp( C=h) I h= ο exp( C=h) ο ( I h ) DE I h= I h I h ο I h= I h q j Ih= jοji h= I h j ffl p ji h= I h j <c 1 ffl (1) c 1 c 1 =0: DE (13) t = fi (19) Z dtf('(t))' 0 (t) ο A dt exp[ e t ]» A 1 e s ds ο e fi f('(fi))' 0 (fi) () fi fi e fi e fi jf('(fi))' 0 (fi)j <ffl (3) 3 x =(b a)ο= +(b + a)= (1) (16) 4 50

13 t = fi DE (18) cosh ((ß=) sinh(ih)) ο (1=4) exp[ ß exp jihj] 3 7: 10 7 jihj ο4:73 I = dxf(x); f(x) =(1 x ) ff ;ff > (4) ff -1 ff <0 (13) f('(t)) (19) ' 0 (t) ff -1 f DE 5 DE DE f(x) I = dtg(t) (5) h 1 I h = h g(ih) (6) i= 6 E D = I h I (7) 1=h D(d) =fx CjjImzj <dg d D(d) f(z) (1) c (0 <c<d) Λ(f;c) = dxfjf(x + ic)j + jf(x ic)jg lim Λ(f;c) < 1 c!d 0 5 FORTRAN ) 6 51

14 () c (0 <c<d) Z c lim x!±1 c dyjf(x + iy)j =0 h>0 je D j» exp( ßd=h) Λ(f:d 0) (8) 1 exp( ßd=h) ( (N +1=)h ± ic; (N +1=)h; ±ci) (±(N +1=)h ci; ±(N +1=)h + ci) R f(z) cot(ßz=h) cot(ßz=h) z = kh (k h=ß z 0 = kh cot(ßz=h) ' h cos (ßz 0 =h)=(ß(z z 0 )) Res[cot(ßz=h)] = h=ß Z 1 N dzf(z) cot( piz i h )=h f(kh) R k= N N!1 I h () Z I h = 1 1 ß(x + ic) ß(x ic) dx[ f(x + ic) cot + f(x ic)cot ] i h h () Z I = 1 1 dxff(x + ic) +f(x ic)g I h I = dx[f(x + ic)g(x + ic) f(x ic)g(x ic)] 1 g(x) =i(1 cot ßz h )= ßx exp h 1 exp ßx h I h I» g(ic) dxfjf(x + ic)j + jf(x ic)jg = g(ic) (f; c) c! d 0 (6) I Λ h = h N k= N f(kh) (9) 5

15 I Λ h E D je I j=je D jο1 N E I = h f(kh) E I = I Λ h I h (30) jkj>n f(x) x!±1 w(z) D(d) 0 w(z) H(w; d) H(w; d) =ff(z)jf(z) : regular D(d); H sup jf(z)=w(z)j < 1g zd(d) f(z) H(w; d) je I j»hh jkj>n w(kh) Λ(f;c) jfj»hjwj Λ(f; c)» HΛ(w; c) 1.. f(z) H(w; d) ji Λ h Ij»jE Dj + je I j»h[g(d)λ(w; d 0) + h Λ(w; d 0) < 1 jkj>n w(kh)] (31) d<ß= w(z) =w DE (z) = d ß dz tanh(ß sinh z) = cosh(z) cosh ( ß sinh(z)) (3) x!±1 cosh x ' sinh x ' exp[jxj]= w DE (x) ' ß exp[ ß exp[jxj] +jxj] (33) je D j'je I j (8) ßd=h =(ß=) exp(nh) ji Λ h Ij»C0 H exp[ CN= ln N] (34) (; 1) I = f('(t))' 0 (t) (35) 53

16 (13) 1 I h = h f('(ih))' 0 (ih) (36) i= I (N ) h N + = h f('(ih))' 0 (ih) : N = N + + N +1 (37) i= N '(t) 7 I = dοf(ο) (38) ο = '(t) = tanh( ß ß sinh t) = cosh(ih) cosh ( ß sinh(ih)) (39) (37) I (N ) h N + = h f(tanh( ß ß sinh(ih))) cosh(ih) cosh i= N ( ß sinh(ih)) (40) (39) (35) jtj f('(t))' 0 (t) ο A exp[ c exp jtj] (41) (41) DE (Double Exponential Formula) 7 x =(b a)ο= +(b + a)= R b a f (x)dx (16) 54

1 1.1 ( ). z = a + bi, a, b R 0 a, b 0 a 2 + b 2 0 z = a + bi = ( ) a 2 + b 2 a a 2 + b + b 2 a 2 + b i 2 r = a 2 + b 2 θ cos θ = a a 2 + b 2, sin θ =

1 1.1 ( ). z = a + bi, a, b R 0 a, b 0 a 2 + b 2 0 z = a + bi = ( ) a 2 + b 2 a a 2 + b + b 2 a 2 + b i 2 r = a 2 + b 2 θ cos θ = a a 2 + b 2, sin θ = 1 1.1 ( ). z = + bi,, b R 0, b 0 2 + b 2 0 z = + bi = ( ) 2 + b 2 2 + b + b 2 2 + b i 2 r = 2 + b 2 θ cos θ = 2 + b 2, sin θ = b 2 + b 2 2π z = r(cos θ + i sin θ) 1.2 (, ). 1. < 2. > 3. ±,, 1.3 ( ). A

More information

(1) (2) (3) (4) HB B ( ) (5) (6) (7) 40 (8) (9) (10)

(1) (2) (3) (4) HB B ( ) (5) (6) (7) 40 (8) (9) (10) 2017 12 9 4 1 30 4 10 3 1 30 3 30 2 1 30 2 50 1 1 30 2 10 (1) (2) (3) (4) HB B ( ) (5) (6) (7) 40 (8) (9) (10) (1) i 23 c 23 0 1 2 3 4 5 6 7 8 9 a b d e f g h i (2) 23 23 (3) 23 ( 23 ) 23 x 1 x 2 23 x

More information

I A A441 : April 21, 2014 Version : Kawahira, Tomoki TA (Kondo, Hirotaka ) Google

I A A441 : April 21, 2014 Version : Kawahira, Tomoki TA (Kondo, Hirotaka ) Google I4 - : April, 4 Version :. Kwhir, Tomoki TA (Kondo, Hirotk) Google http://www.mth.ngoy-u.c.jp/~kwhir/courses/4s-biseki.html pdf 4 4 4 4 8 e 5 5 9 etc. 5 6 6 6 9 n etc. 6 6 6 3 6 3 7 7 etc 7 4 7 7 8 5 59

More information

DVIOUT

DVIOUT A. A. A-- [ ] f(x) x = f 00 (x) f 0 () =0 f 00 () > 0= f(x) x = f 00 () < 0= f(x) x = A--2 [ ] f(x) D f 00 (x) > 0= y = f(x) f 00 (x) < 0= y = f(x) P (, f()) f 00 () =0 A--3 [ ] y = f(x) [, b] x = f (y)

More information

211 [email protected] 1 R *1 n n R n *2 R n = {(x 1,..., x n ) x 1,..., x n R}. R R 2 R 3 R n R n R n D D R n *3 ) (x 1,..., x n ) f(x 1,..., x n ) f D *4 n 2 n = 1 ( ) 1 f D R n f : D R 1.1. (x,

More information

000 001

000 001 all-round catalogue vol.2 000 001 002 003 AA0102 AA0201 AA0701 AA0801 artistic brushes AA0602 AB2701 AB2702 AB2703 AB2704 AA0301 AH3001 AH3011 AH3101 AH3201 AH3111 AB3201 AB3202 AB2601 AB2602 AB0701 artistic

More information

, x R, f (x),, df dx : R R,, f : R R, f(x) ( ).,, f (a) d f dx (a), f (a) d3 f dx 3 (a),, f (n) (a) dn f dx n (a), f d f dx, f d3 f dx 3,, f (n) dn f

, x R, f (x),, df dx : R R,, f : R R, f(x) ( ).,, f (a) d f dx (a), f (a) d3 f dx 3 (a),, f (n) (a) dn f dx n (a), f d f dx, f d3 f dx 3,, f (n) dn f ,,,,.,,,. R f : R R R a R, f(a + ) f(a) lim 0 (), df dx (a) f (a), f(x) x a, f (a), f(x) x a ( ). y f(a + ) y f(x) f(a+) f(a) f(a + ) f(a) f(a) x a 0 a a + x 0 a a + x y y f(x) 0 : 0, f(a+) f(a)., f(x)

More information

i

i i 3 4 4 7 5 6 3 ( ).. () 3 () (3) (4) /. 3. 4/3 7. /e 8. a > a, a = /, > a >. () a >, a =, > a > () a > b, a = b, a < b. c c n a n + b n + c n 3c n..... () /3 () + (3) / (4) /4 (5) m > n, a b >, m > n,

More information

1 1 sin cos P (primary) S (secondly) 2 P S A sin(ω2πt + α) A ω 1 ω α V T m T m 1 100Hz m 2 36km 500Hz. 36km 1

1 1 sin cos P (primary) S (secondly) 2 P S A sin(ω2πt + α) A ω 1 ω α V T m T m 1 100Hz m 2 36km 500Hz. 36km 1 sin cos P (primary) S (secondly) 2 P S A sin(ω2πt + α) A ω ω α 3 3 2 2V 3 33+.6T m T 5 34m Hz. 34 3.4m 2 36km 5Hz. 36km m 34 m 5 34 + m 5 33 5 =.66m 34m 34 x =.66 55Hz, 35 5 =.7 485.7Hz 2 V 5Hz.5V.5V V

More information

0 1-4. 1-5. (1) + b = b +, (2) b = b, (3) + 0 =, (4) 1 =, (5) ( + b) + c = + (b + c), (6) ( b) c = (b c), (7) (b + c) = b + c, (8) ( + b)c = c + bc (9

0 1-4. 1-5. (1) + b = b +, (2) b = b, (3) + 0 =, (4) 1 =, (5) ( + b) + c = + (b + c), (6) ( b) c = (b c), (7) (b + c) = b + c, (8) ( + b)c = c + bc (9 1-1. 1, 2, 3, 4, 5, 6, 7,, 100,, 1000, n, m m m n n 0 n, m m n 1-2. 0 m n m n 0 2 = 1.41421356 π = 3.141516 1-3. 1 0 1-4. 1-5. (1) + b = b +, (2) b = b, (3) + 0 =, (4) 1 =, (5) ( + b) + c = + (b + c),

More information

di-problem.dvi

di-problem.dvi 005/05/05 by. I : : : : : : : : : : : : : : : : : : : : : : : : :. II : : : : : : : : : : : : : : : : : : : : : : : : : 3 3. III : : : : : : : : : : : : : : : : : : : : : : : : 4 4. : : : : : : : : : :

More information

x () g(x) = f(t) dt f(x), F (x) 3x () g(x) g (x) f(x), F (x) (3) h(x) = x 3x tf(t) dt.9 = {(x, y) ; x, y, x + y } f(x, y) = xy( x y). h (x) f(x), F (x

x () g(x) = f(t) dt f(x), F (x) 3x () g(x) g (x) f(x), F (x) (3) h(x) = x 3x tf(t) dt.9 = {(x, y) ; x, y, x + y } f(x, y) = xy( x y). h (x) f(x), F (x [ ] IC. f(x) = e x () f(x) f (x) () lim f(x) lim f(x) x + x (3) lim f(x) lim f(x) x + x (4) y = f(x) ( ) ( s46). < a < () a () lim a log xdx a log xdx ( ) n (3) lim log k log n n n k=.3 z = log(x + y ),

More information

1. 1 BASIC PC BASIC BASIC BASIC Fortran WS PC (1.3) 1 + x 1 x = x = (1.1) 1 + x = (1.2) 1 + x 1 = (1.

1. 1 BASIC PC BASIC BASIC BASIC Fortran WS PC (1.3) 1 + x 1 x = x = (1.1) 1 + x = (1.2) 1 + x 1 = (1. Section Title Pages Id 1 3 7239 2 4 7239 3 10 7239 4 8 7244 5 13 7276 6 14 7338 7 8 7338 8 7 7445 9 11 7580 10 10 7590 11 8 7580 12 6 7395 13 z 11 7746 14 13 7753 15 7 7859 16 8 7942 17 8 Id URL http://km.int.oyo.co.jp/showdocumentdetailspage.jsp?documentid=

More information

. sinh x sinh x) = e x e x = ex e x = sinh x 3) y = cosh x, y = sinh x y = e x, y = e x 6 sinhx) coshx) 4 y-axis x-axis : y = cosh x, y = s

. sinh x sinh x) = e x e x = ex e x = sinh x 3) y = cosh x, y = sinh x y = e x, y = e x 6 sinhx) coshx) 4 y-axis x-axis : y = cosh x, y = s . 00 3 9 [] sinh x = ex e x, cosh x = ex + e x ) sinh cosh 4 hyperbolic) hyperbola) = 3 cosh x cosh x) = e x + e x = cosh x ) . sinh x sinh x) = e x e x = ex e x = sinh x 3) y = cosh x, y = sinh x y =

More information

4................................. 4................................. 4 6................................. 6................................. 9.................................................... 3..3..........................

More information

1.1 ft t 2 ft = t 2 ft+ t = t+ t 2 1.1 d t 2 t + t 2 t 2 = lim t 0 t = lim t 0 = lim t 0 t 2 + 2t t + t 2 t 2 t + t 2 t 2t t + t 2 t 2t + t = lim t 0

1.1 ft t 2 ft = t 2 ft+ t = t+ t 2 1.1 d t 2 t + t 2 t 2 = lim t 0 t = lim t 0 = lim t 0 t 2 + 2t t + t 2 t 2 t + t 2 t 2t t + t 2 t 2t + t = lim t 0 A c 2008 by Kuniaki Nakamitsu 1 1.1 t 2 sin t, cos t t ft t t vt t xt t + t xt + t xt + t xt t vt = xt + t xt t t t vt xt + t xt vt = lim t 0 t lim t 0 t 0 vt = dxt ft dft dft ft + t ft = lim t 0 t 1.1

More information

II No.01 [n/2] [1]H n (x) H n (x) = ( 1) r n! r!(n 2r)! (2x)n 2r. r=0 [2]H n (x) n,, H n ( x) = ( 1) n H n (x). [3] H n (x) = ( 1) n dn x2 e dx n e x2

II No.01 [n/2] [1]H n (x) H n (x) = ( 1) r n! r!(n 2r)! (2x)n 2r. r=0 [2]H n (x) n,, H n ( x) = ( 1) n H n (x). [3] H n (x) = ( 1) n dn x2 e dx n e x2 II No.1 [n/] [1]H n x) H n x) = 1) r n! r!n r)! x)n r r= []H n x) n,, H n x) = 1) n H n x) [3] H n x) = 1) n dn x e dx n e x [4] H n+1 x) = xh n x) nh n 1 x) ) d dx x H n x) = H n+1 x) d dx H nx) = nh

More information

( ) a, b c a 2 + b 2 = c 2. 2 1 2 2 : 2 2 = p q, p, q 2q 2 = p 2. p 2 p 2 2 2 q 2 p, q (QED)

( ) a, b c a 2 + b 2 = c 2. 2 1 2 2 : 2 2 = p q, p, q 2q 2 = p 2. p 2 p 2 2 2 q 2 p, q (QED) rational number p, p, (q ) q ratio 3.14 = 3 + 1 10 + 4 100 ( ) a, b c a 2 + b 2 = c 2. 2 1 2 2 : 2 2 = p q, p, q 2q 2 = p 2. p 2 p 2 2 2 q 2 p, q (QED) ( a) ( b) a > b > 0 a < nb n A A B B A A, B B A =

More information

1/68 A. 電気所 ( 発電所, 変電所, 配電塔 ) における変圧器の空き容量一覧 平成 31 年 3 月 6 日現在 < 留意事項 > (1) 空容量は目安であり 系統接続の前には 接続検討のお申込みによる詳細検討が必要となります その結果 空容量が変更となる場合があります (2) 特に記載

1/68 A. 電気所 ( 発電所, 変電所, 配電塔 ) における変圧器の空き容量一覧 平成 31 年 3 月 6 日現在 < 留意事項 > (1) 空容量は目安であり 系統接続の前には 接続検討のお申込みによる詳細検討が必要となります その結果 空容量が変更となる場合があります (2) 特に記載 1/68 A. 電気所 ( 発電所, 変電所, 配電塔 ) における変圧器の空き容量一覧 平成 31 年 3 月 6 日現在 < 留意事項 > (1) 空容量は目安であり 系統接続の前には 接続検討のお申込みによる詳細検討が必要となります その結果 空容量が変更となる場合があります (2) 特に記載のない限り 熱容量を考慮した空き容量を記載しております その他の要因 ( 電圧や系統安定度など ) で連系制約が発生する場合があります

More information

C 2 / 21 1 y = x 1.1 lagrange.c 1 / Laglange / 2 #include <stdio.h> 3 #include <math.h> 4 int main() 5 { 6 float x[10], y[10]; 7 float xx, pn, p; 8 in

C 2 / 21 1 y = x 1.1 lagrange.c 1 / Laglange / 2 #include <stdio.h> 3 #include <math.h> 4 int main() 5 { 6 float x[10], y[10]; 7 float xx, pn, p; 8 in C 1 / 21 C 2005 A * 1 2 1.1......................................... 2 1.2 *.......................................... 3 2 4 2.1.............................................. 4 2.2..............................................

More information

() Remrk I = [0, ] [x i, x i ]. (x : ) f(x) = 0 (x : ) ξ i, (f) = f(ξ i )(x i x i ) = (x i x i ) = ξ i, (f) = f(ξ i )(x i x i ) = 0 (f) 0.

() Remrk I = [0, ] [x i, x i ]. (x : ) f(x) = 0 (x : ) ξ i, (f) = f(ξ i )(x i x i ) = (x i x i ) = ξ i, (f) = f(ξ i )(x i x i ) = 0 (f) 0. () 6 f(x) [, b] 6. Riemnn [, b] f(x) S f(x) [, b] (Riemnn) = x 0 < x < x < < x n = b. I = [, b] = {x,, x n } mx(x i x i ) =. i [x i, x i ] ξ i n (f) = f(ξ i )(x i x i ) i=. (ξ i ) (f) 0( ), ξ i, S, ε >

More information

x A Aω ẋ ẋ 2 + ω 2 x 2 = ω 2 A 2. (ẋ, ωx) ζ ẋ + iωx ζ ζ dζ = ẍ + iωẋ = ẍ + iω(ζ iωx) dt dζ dt iωζ = ẍ + ω2 x (2.1) ζ ζ = Aωe iωt = Aω cos ωt + iaω sin

x A Aω ẋ ẋ 2 + ω 2 x 2 = ω 2 A 2. (ẋ, ωx) ζ ẋ + iωx ζ ζ dζ = ẍ + iωẋ = ẍ + iω(ζ iωx) dt dζ dt iωζ = ẍ + ω2 x (2.1) ζ ζ = Aωe iωt = Aω cos ωt + iaω sin 2 2.1 F (t) 2.1.1 mẍ + kx = F (t). m ẍ + ω 2 x = F (t)/m ω = k/m. 1 : (ẋ, x) x = A sin ωt, ẋ = Aω cos ωt 1 2-1 x A Aω ẋ ẋ 2 + ω 2 x 2 = ω 2 A 2. (ẋ, ωx) ζ ẋ + iωx ζ ζ dζ = ẍ + iωẋ = ẍ + iω(ζ iωx) dt dζ

More information

θ (t) ω cos θ(t) = ( : θ, θ. ( ) ( ) ( 5) l () θ (t) = ω sin θ(t). ω := g l.. () θ (t) θ (t)θ (t) + ω θ (t) sin θ(t) =. [ ] d dt θ (t) ω cos θ(t

θ (t) ω cos θ(t) = ( : θ, θ. ( ) ( ) ( 5) l () θ (t) = ω sin θ(t). ω := g l.. () θ (t) θ (t)θ (t) + ω θ (t) sin θ(t) =. [ ] d dt θ (t) ω cos θ(t 7 8, /3/, 5// http://nalab.mind.meiji.ac.jp/~mk/labo/text/furiko/ l (, simple pendulum) m g mlθ (t) = mg sin θ(t) () θ (t) + ω sin θ(t) =, ω := ( m ) ( θ ) sin θ θ θ (t) + ω θ(t) = ( ) ( ) g l θ(t) = C

More information

lim lim lim lim 0 0 d lim 5. d 0 d d d d d d 0 0 lim lim 0 d

lim lim lim lim 0 0 d lim 5. d 0 d d d d d d 0 0 lim lim 0 d lim 5. 0 A B 5-5- A B lim 0 A B A 5. 5- 0 5-5- 0 0 lim lim 0 0 0 lim lim 0 0 d lim 5. d 0 d d d d d d 0 0 lim lim 0 d 0 0 5- 5-3 0 5-3 5-3b 5-3c lim lim d 0 0 5-3b 5-3c lim lim lim d 0 0 0 3 3 3 3 3 3

More information

y π π O π x 9 s94.5 y dy dx. y = x + 3 y = x logx + 9 s9.6 z z x, z y. z = xy + y 3 z = sinx y 9 s x dx π x cos xdx 9 s93.8 a, fx = e x ax,. a =

y π π O π x 9 s94.5 y dy dx. y = x + 3 y = x logx + 9 s9.6 z z x, z y. z = xy + y 3 z = sinx y 9 s x dx π x cos xdx 9 s93.8 a, fx = e x ax,. a = [ ] 9 IC. dx = 3x 4y dt dy dt = x y u xt = expλt u yt λ u u t = u u u + u = xt yt 6 3. u = x, y, z = x + y + z u u 9 s9 grad u ux, y, z = c c : grad u = u x i + u y j + u k i, j, k z x, y, z grad u v =

More information

S I. dy fx x fx y fx + C 3 C dy fx 4 x, y dy v C xt y C v e kt k > xt yt gt [ v dt dt v e kt xt v e kt + C k x v + C C k xt v k 3 r r + dr e kt S dt d

S I. dy fx x fx y fx + C 3 C dy fx 4 x, y dy v C xt y C v e kt k > xt yt gt [ v dt dt v e kt xt v e kt + C k x v + C C k xt v k 3 r r + dr e kt S dt d S I.. http://ayapin.film.s.dendai.ac.jp/~matuda /TeX/lecture.html PDF PS.................................... 3.3.................... 9.4................5.............. 3 5. Laplace................. 5....

More information

4.6 (E i = ε, ε + ) T Z F Z = e βε + e β(ε+ ) = e βε (1 + e β ) F = kt log Z = kt log[e βε (1 + e β )] = ε kt ln(1 + e β ) (4.18) F (T ) S = T = k = k

4.6 (E i = ε, ε + ) T Z F Z = e βε + e β(ε+ ) = e βε (1 + e β ) F = kt log Z = kt log[e βε (1 + e β )] = ε kt ln(1 + e β ) (4.18) F (T ) S = T = k = k 4.6 (E i = ε, ε + ) T Z F Z = e ε + e (ε+ ) = e ε ( + e ) F = kt log Z = kt loge ε ( + e ) = ε kt ln( + e ) (4.8) F (T ) S = T = k = k ln( + e ) + kt e + e kt 2 + e ln( + e ) + kt (4.20) /kt T 0 = /k (4.20)

More information

W u = u(x, t) u tt = a 2 u xx, a > 0 (1) D := {(x, t) : 0 x l, t 0} u (0, t) = 0, u (l, t) = 0, t 0 (2)

W u = u(x, t) u tt = a 2 u xx, a > 0 (1) D := {(x, t) : 0 x l, t 0} u (0, t) = 0, u (l, t) = 0, t 0 (2) 3 215 4 27 1 1 u u(x, t) u tt a 2 u xx, a > (1) D : {(x, t) : x, t } u (, t), u (, t), t (2) u(x, ) f(x), u(x, ) t 2, x (3) u(x, t) X(x)T (t) u (1) 1 T (t) a 2 T (t) X (x) X(x) α (2) T (t) αa 2 T (t) (4)

More information

I y = f(x) a I a x I x = a + x 1 f(x) f(a) x a = f(a + x) f(a) x (11.1) x a x 0 f(x) f(a) f(a + x) f(a) lim = lim x a x a x 0 x (11.2) f(x) x

I y = f(x) a I a x I x = a + x 1 f(x) f(a) x a = f(a + x) f(a) x (11.1) x a x 0 f(x) f(a) f(a + x) f(a) lim = lim x a x a x 0 x (11.2) f(x) x 11 11.1 I y = a I a x I x = a + 1 f(a) x a = f(a +) f(a) (11.1) x a 0 f(a) f(a +) f(a) = x a x a 0 (11.) x = a a f (a) d df f(a) (a) I dx dx I I I f (x) d df dx dx (x) [a, b] x a ( 0) x a (a, b) () [a,

More information

i 6 3 ii 3 7 8 9 3 6 iii 5 8 5 3 7 8 v...................................................... 5.3....................... 7 3........................ 3.................3.......................... 8 3 35

More information

1 4 2 EP) (EP) (EP)

1 4 2 EP) (EP) (EP) 2003 2004 2 27 1 1 4 2 EP) 5 3 6 3.1.............................. 6 3.2.............................. 6 3.3 (EP)............... 7 4 8 4.1 (EP).................... 8 4.1.1.................... 18 5 (EP)

More information

( 12 ( ( ( ( Levi-Civita grad div rot ( ( = 4 : 6 3 1 1.1 f(x n f (n (x, d n f(x (1.1 dxn f (2 (x f (x 1.1 f(x = e x f (n (x = e x d dx (fg = f g + fg (1.2 d dx d 2 dx (fg = f g + 2f g + fg 2... d n n

More information

r 1 m A r/m i) t ii) m i) t B(t; m) ( B(t; m) = A 1 + r ) mt m ii) B(t; m) ( B(t; m) = A 1 + r ) mt m { ( = A 1 + r ) m } rt r m n = m r m n B

r 1 m A r/m i) t ii) m i) t B(t; m) ( B(t; m) = A 1 + r ) mt m ii) B(t; m) ( B(t; m) = A 1 + r ) mt m { ( = A 1 + r ) m } rt r m n = m r m n B 1 1.1 1 r 1 m A r/m i) t ii) m i) t Bt; m) Bt; m) = A 1 + r ) mt m ii) Bt; m) Bt; m) = A 1 + r ) mt m { = A 1 + r ) m } rt r m n = m r m n Bt; m) Aert e lim 1 + 1 n 1.1) n!1 n) e a 1, a 2, a 3,... {a n

More information

USB 0.6 https://duet.doshisha.ac.jp/info/index.jsp 2 ID TA DUET 24:00 DUET XXX -YY.c ( ) XXX -YY.txt() XXX ID 3 YY ID 5 () #define StudentID 231

USB 0.6 https://duet.doshisha.ac.jp/info/index.jsp 2 ID TA DUET 24:00 DUET XXX -YY.c ( ) XXX -YY.txt() XXX ID 3 YY ID 5 () #define StudentID 231 0 0.1 ANSI-C 0.2 web http://www1.doshisha.ac.jp/ kibuki/programming/resume p.html 0.3 2012 1 9/28 0 [ 01] 2 10/5 1 C 2 3 10/12 10 1 2 [ 02] 4 10/19 3 5 10/26 3 [ 03] 6 11/2 3 [ 04] 7 11/9 8 11/16 4 9 11/30

More information

1 Introduction 1 (1) (2) (3) () {f n (x)} n=1 [a, b] K > 0 n, x f n (x) K < ( ) x [a, b] lim f n (x) f(x) (1) f(x)? (2) () f(x)? b lim a f n (x)dx = b

1 Introduction 1 (1) (2) (3) () {f n (x)} n=1 [a, b] K > 0 n, x f n (x) K < ( ) x [a, b] lim f n (x) f(x) (1) f(x)? (2) () f(x)? b lim a f n (x)dx = b 1 Introduction 2 2.1 2.2 2.3 3 3.1 3.2 σ- 4 4.1 4.2 5 5.1 5.2 5.3 6 7 8. Fubini,,. 1 1 Introduction 1 (1) (2) (3) () {f n (x)} n=1 [a, b] K > 0 n, x f n (x) K < ( ) x [a, b] lim f n (x) f(x) (1) f(x)?

More information

y = f(x) y = f( + h) f(), x = h dy dx f () f (derivtive) (differentition) (velocity) p(t) =(x(t),y(t),z(t)) ( dp dx dt = dt, dy dt, dz ) dt f () > f x

y = f(x) y = f( + h) f(), x = h dy dx f () f (derivtive) (differentition) (velocity) p(t) =(x(t),y(t),z(t)) ( dp dx dt = dt, dy dt, dz ) dt f () > f x I 5 2 6 3 8 4 Riemnn 9 5 Tylor 8 6 26 7 3 8 34 f(x) x = A = h f( + h) f() h A (differentil coefficient) f f () y = f(x) y = f( + h) f(), x = h dy dx f () f (derivtive) (differentition) (velocity) p(t)

More information

I, II 1, A = A 4 : 6 = max{ A, } A A 10 10%

I, II 1, A = A 4 : 6 = max{ A, } A A 10 10% 1 2006.4.17. A 3-312 tel: 092-726-4774, e-mail: [email protected], http://www.math.kyushu-u.ac.jp/ hara/lectures/lectures-j.html Office hours: B A I ɛ-δ ɛ-δ 1. 2. A 1. 1. 2. 3. 4. 5. 2. ɛ-δ 1. ɛ-n

More information

Chap9.dvi

Chap9.dvi .,. f(),, f(),,.,. () lim 2 +3 2 9 (2) lim 3 3 2 9 (4) lim ( ) 2 3 +3 (5) lim 2 9 (6) lim + (7) lim (8) lim (9) lim (0) lim 2 3 + 3 9 2 2 +3 () lim sin 2 sin 2 (2) lim +3 () lim 2 2 9 = 5 5 = 3 (2) lim

More information

master.dvi

master.dvi 4 Maxwell- Boltzmann N 1 4.1 T R R 5 R (Heat Reservor) S E R 20 E 4.2 E E R E t = E + E R E R Ω R (E R ) S R (E R ) Ω R (E R ) = exp[s R (E R )/k] E, E E, E E t E E t E exps R (E t E) exp S R (E t E )

More information

1

1 1 1 7 1.1.................................. 11 2 13 2.1............................ 13 2.2............................ 17 2.3.................................. 19 3 21 3.1.............................

More information

I No. sin cos sine, cosine : trigonometric function π : π =.4 : n =, ±, ±, sin + nπ = sin cos + nπ = cos sin = sin : cos = cos :. sin. sin. sin + π si

I No. sin cos sine, cosine : trigonometric function π : π =.4 : n =, ±, ±, sin + nπ = sin cos + nπ = cos sin = sin : cos = cos :. sin. sin. sin + π si I 8 No. : No. : No. : No.4 : No.5 : No.6 : No.7 : No.8 : No.9 : No. : I No. sin cos sine, cosine : trigonometric function π : π =.4 : n =, ±, ±, sin + nπ = sin cos + nπ = cos sin = sin : cos = cos :. sin.

More information

S I. dy fx x fx y fx + C 3 C vt dy fx 4 x, y dy yt gt + Ct + C dt v e kt xt v e kt + C k x v k + C C xt v k 3 r r + dr e kt S Sr πr dt d v } dt k e kt

S I. dy fx x fx y fx + C 3 C vt dy fx 4 x, y dy yt gt + Ct + C dt v e kt xt v e kt + C k x v k + C C xt v k 3 r r + dr e kt S Sr πr dt d v } dt k e kt S I. x yx y y, y,. F x, y, y, y,, y n http://ayapin.film.s.dendai.ac.jp/~matuda n /TeX/lecture.html PDF PS yx.................................... 3.3.................... 9.4................5..............

More information

2011de.dvi

2011de.dvi 211 ( 4 2 1. 3 1.1............................... 3 1.2 1- -......................... 13 1.3 2-1 -................... 19 1.4 3- -......................... 29 2. 37 2.1................................ 37

More information

< 1 > (1) f 0 (a) =6a ; g 0 (a) =6a 2 (2) y = f(x) x = 1 f( 1) = 3 ( 1) 2 =3 ; f 0 ( 1) = 6 ( 1) = 6 ; ( 1; 3) 6 x =1 f(1) = 3 ; f 0 (1) = 6 ; (1; 3)

< 1 > (1) f 0 (a) =6a ; g 0 (a) =6a 2 (2) y = f(x) x = 1 f( 1) = 3 ( 1) 2 =3 ; f 0 ( 1) = 6 ( 1) = 6 ; ( 1; 3) 6 x =1 f(1) = 3 ; f 0 (1) = 6 ; (1; 3) < 1 > (1) f 0 (a) =6a ; g 0 (a) =6a 2 (2) y = f(x) x = 1 f( 1) = 3 ( 1) 2 =3 ; f 0 ( 1) = 6 ( 1) = 6 ; ( 1; 3) 6 x =1 f(1) = 3 ; f 0 (1) = 6 ; (1; 3) 6 y = g(x) x = 1 g( 1) = 2 ( 1) 3 = 2 ; g 0 ( 1) =

More information

meiji_resume_1.PDF

meiji_resume_1.PDF β β β (q 1,q,..., q n ; p 1, p,..., p n ) H(q 1,q,..., q n ; p 1, p,..., p n ) Hψ = εψ ε k = k +1/ ε k = k(k 1) (x, y, z; p x, p y, p z ) (r; p r ), (θ; p θ ), (ϕ; p ϕ ) ε k = 1/ k p i dq i E total = E

More information

I No. sin cos sine, cosine : trigonometric function π : π =.4 : n = 0, ±, ±, sin + nπ = sin cos + nπ = cos : parity sin = sin : odd cos = cos : even.

I No. sin cos sine, cosine : trigonometric function π : π =.4 : n = 0, ±, ±, sin + nπ = sin cos + nπ = cos : parity sin = sin : odd cos = cos : even. I 0 No. : No. : No. : No.4 : No.5 : No.6 : No.7 : No.8 : No.9 : No.0 : I No. sin cos sine, cosine : trigonometric function π : π =.4 : n = 0, ±, ±, sin + nπ = sin cos + nπ = cos : parity sin = sin : odd

More information

lecture

lecture 5 3 3. 9. 4. x, x. 4, f(x, ) :=x x + =4,x,.. 4 (, 3) (, 5) (3, 5), (4, 9) 95 9 (g) 4 6 8 (cm).9 3.8 6. 8. 9.9 Phsics 85 8 75 7 65 7 75 8 85 9 95 Mathematics = ax + b 6 3 (, 3) 3 ( a + b). f(a, b) ={3 (a

More information

[1] #include<stdio.h> main() { printf("hello, world."); return 0; } (G1) int long int float ± ±

[1] #include<stdio.h> main() { printf(hello, world.); return 0; } (G1) int long int float ± ± [1] #include printf("hello, world."); (G1) int -32768 32767 long int -2147483648 2147483647 float ±3.4 10 38 ±3.4 10 38 double ±1.7 10 308 ±1.7 10 308 char [2] #include int a, b, c, d,

More information

Fubini

Fubini 3............................... 3................................ 5.3 Fubini........................... 7.4.............................5..........................6.............................. 3.7..............................

More information

grad φ(p ) φ P grad φ(p ) p P p φ P p l t φ l t = 0 g (0) g (0) (31) grad φ(p ) p grad φ φ (P, φ(p )) xy (x, y) = (ξ(t), η(t)) ( )

grad φ(p ) φ P grad φ(p ) p P p φ P p l t φ l t = 0 g (0) g (0) (31) grad φ(p ) p grad φ φ (P, φ(p )) xy (x, y) = (ξ(t), η(t)) ( ) 2 9 2 5 2.2.3 grad φ(p ) φ P grad φ(p ) p P p φ P p l t φ l t = g () g () (3) grad φ(p ) p grad φ φ (P, φ(p )) y (, y) = (ξ(t), η(t)) ( ) ξ (t) (t) := η (t) grad f(ξ(t), η(t)) (t) g(t) := f(ξ(t), η(t))

More information

[ ] 0.1 lim x 0 e 3x 1 x IC ( 11) ( s114901) 0.2 (1) y = e 2x (x 2 + 1) (2) y = x/(x 2 + 1) 0.3 dx (1) 1 4x 2 (2) e x sin 2xdx (3) sin 2 xdx ( 11) ( s

[ ] 0.1 lim x 0 e 3x 1 x IC ( 11) ( s114901) 0.2 (1) y = e 2x (x 2 + 1) (2) y = x/(x 2 + 1) 0.3 dx (1) 1 4x 2 (2) e x sin 2xdx (3) sin 2 xdx ( 11) ( s [ ]. lim e 3 IC ) s49). y = e + ) ) y = / + ).3 d 4 ) e sin d 3) sin d ) s49) s493).4 z = y z z y s494).5 + y = 4 =.6 s495) dy = 3e ) d dy d = y s496).7 lim ) lim e s49).8 y = e sin ) y = sin e 3) y =

More information

欧州特許庁米国特許商標庁との共通特許分類 CPC (Cooperative Patent Classification) 日本パテントデータサービス ( 株 ) 国際部 2019 年 7 月 31 日 CPC 版が発効します 原文及び詳細はCPCホームページのCPC Revision

欧州特許庁米国特許商標庁との共通特許分類 CPC (Cooperative Patent Classification) 日本パテントデータサービス ( 株 ) 国際部 2019 年 7 月 31 日 CPC 版が発効します 原文及び詳細はCPCホームページのCPC Revision 欧州特許庁米国特許商標庁との共通特許分類 CPC (Cooperative Patent Classification) 日本パテントデータサービス ( 株 ) 国際部 2019 年 7 月 31 日 CPC 2019.08 版が発効します 原文及び詳細はCPCホームページのCPC Revisions(CPCの改訂 ) をご覧ください https://www.cooperativepatentclassification.org/cpcrevisions/noticeofchanges.html

More information

£Ã¥×¥í¥°¥é¥ß¥ó¥°ÆþÌç (2018) - Â裱£²²ó ¡Ý½ÉÂꣲ¤Î²òÀ⡤±é½¬£²¡Ý

£Ã¥×¥í¥°¥é¥ß¥ó¥°ÆþÌç (2018) - Â裱£²²ó  ¡Ý½ÉÂꣲ¤Î²òÀ⡤±é½¬£²¡Ý (2018) 2018 7 5 f(x) [ 1, 1] 3 3 1 3 f(x) dx c i f(x i ) 1 0 i=1 = 5 ) ( ) 3 ( 9 f + 8 5 9 f(0) + 5 3 9 f 5 1 1 + sin(x) θ ( 1 θ dx = tan 1 + sin x 2 π ) + 1 4 1 3 [a, b] f a, b double G3(double (*f)(),

More information

( z = x 3 y + y ( z = cos(x y ( 8 ( s8.7 y = xe x ( 8 ( s83.8 ( ( + xdx ( cos 3 xdx t = sin x ( 8 ( s84 ( 8 ( s85. C : y = x + 4, l : y = x + a,

( z = x 3 y + y ( z = cos(x y ( 8 ( s8.7 y = xe x ( 8 ( s83.8 ( ( + xdx ( cos 3 xdx t = sin x ( 8 ( s84 ( 8 ( s85. C : y = x + 4, l : y = x + a, [ ] 8 IC. y d y dx = ( dy dx ( p = dy p y dx ( ( ( 8 ( s8. 3 A A = ( A ( A (3 A P A P AP.3 π y(x = { ( 8 ( s8 x ( π < x x ( < x π y(x π π O π x ( 8 ( s83.4 f (x, y, z grad(f ( ( ( f f f grad(f = i + j

More information

sin cos No. sine, cosine : trigonometric function π : π = 3.4 : n = 0, ±, ±, sin + nπ = sin cos + nπ = cos : parity sin = sin : odd cos = cos : even.

sin cos No. sine, cosine : trigonometric function π : π = 3.4 : n = 0, ±, ±, sin + nπ = sin cos + nπ = cos : parity sin = sin : odd cos = cos : even. 08 No. : No. : No.3 : No.4 : No.5 : No.6 : No.7 : No.8 : No.9 : No.0 : No. : sin cos No. sine, cosine : trigonometric function π : π = 3.4 : n = 0, ±, ±, sin + nπ = sin cos + nπ = cos : parity sin = sin

More information

IS-LM (interest) 100 (net rate of interest) (rate of interest) ( ) = 100 (2.1) (gross rate of interest) ( ) = 100 (2.2)

IS-LM (interest) 100 (net rate of interest) (rate of interest) ( ) = 100 (2.1) (gross rate of interest) ( ) = 100 (2.2) 1 2 2 2 2.1 IS-LM 1 2.2 1 1 (interest) 100 (net rate of interest) (rate of interest) ( ) = 100 (2.1) (gross rate of interest) ( ) = 100 (2.2) 1 1. 2. 1 1 ( ) 2.3. 3 2.3 1 (yield to maturity) (rate of return)

More information

x ( ) x dx = ax

x ( ) x dx = ax x ( ) x dx = ax 1 dx = a x log x = at + c x(t) = e at C (C = e c ) a > 0 t a < 0 t 0 (at + b ) h dx = lim x(t + h) x(t) h 0 h x(t + h) x(t) h x(t) t x(t + h) x(t) ax(t) h x(t + h) x(t) + ahx(t) 0, h, 2h,

More information

Fourier (a) C, (b) C, (c) f 2 (a), (b) (c) (L 2 ) (a) C x : f(x) = a 0 2 + (a n cos nx + b n sin nx). ( N ) a 0 f(x) = lim N 2 + (a n cos nx + b n sin

Fourier (a) C, (b) C, (c) f 2 (a), (b) (c) (L 2 ) (a) C x : f(x) = a 0 2 + (a n cos nx + b n sin nx). ( N ) a 0 f(x) = lim N 2 + (a n cos nx + b n sin ( ) 205 6 Fourier f : R C () (2) f(x) = a 0 2 + (a n cos nx + b n sin nx), n= a n = f(x) cos nx dx, b n = π π f(x) sin nx dx a n, b n f Fourier, (3) f Fourier or No. ) 5, Fourier (3) (4) f(x) = c n = n=

More information

IA 2013 : :10722 : 2 : :2 :761 :1 (23-27) : : ( / ) (1 /, ) / e.g. (Taylar ) e x = 1 + x + x xn n! +... sin x = x x3 6 + x5 x2n+1 + (

IA 2013 : :10722 : 2 : :2 :761 :1 (23-27) : : ( / ) (1 /, ) / e.g. (Taylar ) e x = 1 + x + x xn n! +... sin x = x x3 6 + x5 x2n+1 + ( IA 2013 : :10722 : 2 : :2 :761 :1 23-27) : : 1 1.1 / ) 1 /, ) / e.g. Taylar ) e x = 1 + x + x2 2 +... + xn n! +... sin x = x x3 6 + x5 x2n+1 + 1)n 5! 2n + 1)! 2 2.1 = 1 e.g. 0 = 0.00..., π = 3.14..., 1

More information

数学の基礎訓練I

数学の基礎訓練I I 9 6 13 1 1 1.1............... 1 1................ 1 1.3.................... 1.4............... 1.4.1.............. 1.4................. 3 1.4.3........... 3 1.4.4.. 3 1.5.......... 3 1.5.1..............

More information