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

untitled

untitled 40 4 4.3 I (1) I f (x) C [x 0 x 1 ] f (x) f 1 (x) (3.18) f (x) ; f 1 (x) = 1! f 00 ((x))(x ; x 0 )(x ; x 1 ) (x 0 (x) x 1 ) (4.8) (3.18) x (x) x 0 x 1 Z x1 f (x) dx ; Z x1 f 1 (x) dx = Z x1 = 1 1 Z x1

More information

di-problem.dvi

di-problem.dvi III 005/06/6 by. : : : : : : : : : : : : : : : : : : : : :. : : : : : : : : : : : : : : : : : : : : : : : : : : 3 3. : : : : : : : : : : : : : : 4 4. : : : : : : : : : : : : : : : : : : : : : : 5 5. :

More information

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

C 2 2.1? 3x 2 + 2x + 5 = 0 (1) 1

C 2 2.1? 3x 2 + 2x + 5 = 0 (1) 1 2006 7 18 1 2 C 2 2.1? 3x 2 + 2x + 5 = 0 (1) 1 2 7x + 4 = 0 (2) 1 1 x + x + 5 = 0 2 sin x x = 0 e x + x = 0 x = cos x (3) x + 5 + log x? 0.1% () 2.2 p12 3 x 3 3x 2 + 9x 8 = 0 (4) 1 [ ] 1/3 [ 2 1 ( x 1

More information

Design of highly accurate formulas for numerical integration in weighted Hardy spaces with the aid of potential theory 1 Ken ichiro Tanaka 1 Ω R m F I = F (t) dt (1.1) Ω m m 1 m = 1 1 Newton-Cotes Gauss

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

) ] [ h m x + y + + V x) φ = Eφ 1) z E = i h t 13) x << 1) N n n= = N N + 1) 14) N n n= = N N + 1)N + 1) 6 15) N n 3 n= = 1 4 N N + 1) 16) N n 4

) ] [ h m x + y + + V x) φ = Eφ 1) z E = i h t 13) x << 1) N n n= = N N + 1) 14) N n n= = N N + 1)N + 1) 6 15) N n 3 n= = 1 4 N N + 1) 16) N n 4 1. k λ ν ω T v p v g k = π λ ω = πν = π T v p = λν = ω k v g = dω dk 1) ) 3) 4). p = hk = h λ 5) E = hν = hω 6) h = h π 7) h =6.6618 1 34 J sec) hc=197.3 MeV fm = 197.3 kev pm= 197.3 ev nm = 1.97 1 3 ev

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 kotaro@math.titech.ac.jp 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

°ÌÁê¿ô³ØII

°ÌÁê¿ô³ØII July 14, 2007 Brouwer f f(x) = x x f(z) = 0 2 f : S 2 R 2 f(x) = f( x) x S 2 3 3 2 - - - 1. X x X U(x) U(x) x U = {U(x) x X} X 1. U(x) A U(x) x 2. A U(x), A B B U(x) 3. A, B U(x) A B U(x) 4. A U(x),

More information

, 1 ( f n (x))dx d dx ( f n (x)) 1 f n (x)dx d dx f n(x) lim f n (x) = [, 1] x f n (x) = n x x 1 f n (x) = x f n (x) = x 1 x n n f n(x) = [, 1] f n (x

, 1 ( f n (x))dx d dx ( f n (x)) 1 f n (x)dx d dx f n(x) lim f n (x) = [, 1] x f n (x) = n x x 1 f n (x) = x f n (x) = x 1 x n n f n(x) = [, 1] f n (x 1 1.1 4n 2 x, x 1 2n f n (x) = 4n 2 ( 1 x), 1 x 1 n 2n n, 1 x n n 1 1 f n (x)dx = 1, n = 1, 2,.. 1 lim 1 lim 1 f n (x)dx = 1 lim f n(x) = ( lim f n (x))dx = f n (x)dx 1 ( lim f n (x))dx d dx ( lim f d

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

c-all.dvi

c-all.dvi III(994) (994) from PSL (9947) & (9922) c (99,992,994,996) () () 2 3 4 (2) 2 Euler 22 23 Euler 24 (3) 3 32 33 34 35 Poisson (4) 4 (5) 5 52 ( ) 2 Turbo 2 d 2 y=dx 2 = y y = a sin x + b cos x x = y = Fortran

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

x h = (b a)/n [x i, x i+1 ] = [a+i h, a+ (i + 1) h] A(x i ) A(x i ) = h 2 {f(x i) + f(x i+1 ) = h {f(a + i h) + f(a + (i + 1) h), (2) 2 a b n A(x i )

x h = (b a)/n [x i, x i+1 ] = [a+i h, a+ (i + 1) h] A(x i ) A(x i ) = h 2 {f(x i) + f(x i+1 ) = h {f(a + i h) + f(a + (i + 1) h), (2) 2 a b n A(x i ) 1 f(x) a b f(x)dx = n A(x i ) (1) ix [a, b] n i A(x i ) x i 1 f(x) [a, b] n h = (b a)/n y h = (b-a)/n y = f (x) h h a a+h a+2h a+(n-1)h b x 1: 1 x h = (b a)/n [x i, x i+1 ] = [a+i h, a+ (i + 1) h] A(x

More information

all.dvi

all.dvi fortran 1996 4 18 2007 6 11 2012 11 12 1 3 1.1..................................... 3 1.2.............................. 3 2 fortran I 5 2.1 write................................ 5 2.2.................................

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

C による数値計算法入門 ( 第 2 版 ) 新装版 サンプルページ この本の定価 判型などは, 以下の URL からご覧いただけます. このサンプルページの内容は, 新装版 1 刷発行時のものです.

C による数値計算法入門 ( 第 2 版 ) 新装版 サンプルページ この本の定価 判型などは, 以下の URL からご覧いただけます.  このサンプルページの内容は, 新装版 1 刷発行時のものです. C による数値計算法入門 ( 第 2 版 ) 新装版 サンプルページ この本の定価 判型などは, 以下の URL からご覧いただけます. http://www.morikita.co.jp/books/mid/009383 このサンプルページの内容は, 新装版 1 刷発行時のものです. i 2 22 2 13 ( ) 2 (1) ANSI (2) 2 (3) Web http://www.morikita.co.jp/books/mid/009383

More information

di-problem.dvi

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

More information

joho09.ppt

joho09.ppt s M B e E s: (+ or -) M: B: (=2) e: E: ax 2 + bx + c = 0 y = ax 2 + bx + c x a, b y +/- [a, b] a, b y (a+b) / 2 1-2 1-3 x 1 A a, b y 1. 2. a, b 3. for Loop (b-a)/ 4. y=a*x*x + b*x + c 5. y==0.0 y (y2)

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

main.dvi

main.dvi Chpter 5 5. [; ] f(x) 3 f(x) = X + ( n cos nx + b n nx ) (5:) n= (5.) ; ;...;b ;b ;... n; m > 3 Z Z Z mx cos mx mx nx nx cos ( : n 6= m dx = : n = m ( : n 6= m dx = : n = m nx cos dx = (5.) (5.) (5.) 3

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

di-problem.dvi

di-problem.dvi 2005/04/4 by. : : : : : : : : : : : : : : : : : : : : : : : : : : 2 2. : : : : : : : : : : : : : : : : : : : : : : 3 3. : : : : : : : : : : : : : : : : : : : : : : : : : 4 4. : : : : : : : : : : : : :

More information

1 yousuke.itoh/lecture-notes.html [0, π) f(x) = x π 2. [0, π) f(x) = x 2π 3. [0, π) f(x) = x 2π 1.2. Euler α

1   yousuke.itoh/lecture-notes.html [0, π) f(x) = x π 2. [0, π) f(x) = x 2π 3. [0, π) f(x) = x 2π 1.2. Euler α 1 http://sasuke.hep.osaka-cu.ac.jp/ yousuke.itoh/lecture-notes.html 1.1. 1. [, π) f(x) = x π 2. [, π) f(x) = x 2π 3. [, π) f(x) = x 2π 1.2. Euler dx = 2π, cos mxdx =, sin mxdx =, cos nx cos mxdx = πδ mn,

More information

2012 IA 8 I p.3, 2 p.19, 3 p.19, 4 p.22, 5 p.27, 6 p.27, 7 p

2012 IA 8 I p.3, 2 p.19, 3 p.19, 4 p.22, 5 p.27, 6 p.27, 7 p 2012 IA 8 I 1 10 10 29 1. [0, 1] n x = 1 (n = 1, 2, 3,...) 2 f(x) = n 0 [0, 1] 2. 1 x = 1 (n = 1, 2, 3,...) 2 f(x) = n 0 [0, 1] 1 0 f(x)dx 3. < b < c [, c] b [, c] 4. [, b] f(x) 1 f(x) 1 f(x) [, b] 5.

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

08 p Boltzmann I P ( ) principle of equal probability P ( ) g ( )g ( 0 ) (4 89) (4 88) eq II 0 g ( 0 ) 0 eq Taylor eq (4 90) g P ( ) g ( ) g ( 0

08 p Boltzmann I P ( ) principle of equal probability P ( ) g ( )g ( 0 ) (4 89) (4 88) eq II 0 g ( 0 ) 0 eq Taylor eq (4 90) g P ( ) g ( ) g ( 0 08 p. 8 4 k B log g() S() k B : Boltzmann T T S k B g g heat bath, thermal reservoir... 4. I II II System I System II II I I 0 + 0 const. (4 85) g( 0 ) g ( )g ( ) g ( )g ( 0 ) (4 86) g ( )g ( 0 ) 0 (4

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

- II

- II - II- - -.................................................................................................... 3.3.............................................. 4 6...........................................

More information

18 ( ) I II III A B C(100 ) 1, 2, 3, 5 I II A B (100 ) 1, 2, 3 I II A B (80 ) 6 8 I II III A B C(80 ) 1 n (1 + x) n (1) n C 1 + n C

18 ( ) I II III A B C(100 ) 1, 2, 3, 5 I II A B (100 ) 1, 2, 3 I II A B (80 ) 6 8 I II III A B C(80 ) 1 n (1 + x) n (1) n C 1 + n C 8 ( ) 8 5 4 I II III A B C( ),,, 5 I II A B ( ),, I II A B (8 ) 6 8 I II III A B C(8 ) n ( + x) n () n C + n C + + n C n = 7 n () 7 9 C : y = x x A(, 6) () A C () C P AP Q () () () 4 A(,, ) B(,, ) C(,,

More information

8.1 Fubini 8.2 Fubini 9 (0%) 10 (50%) Carathéodory 10.3 Fubini 1 Introduction 1 (1) (2) {f n (x)} n=1 [a, b] K > 0 n, x f n (x) K < ( ) x [a

8.1 Fubini 8.2 Fubini 9 (0%) 10 (50%) Carathéodory 10.3 Fubini 1 Introduction 1 (1) (2) {f n (x)} n=1 [a, b] K > 0 n, x f n (x) K < ( ) x [a % 100% 1 Introduction 2 (100%) 2.1 2.2 2.3 3 (100%) 3.1 3.2 σ- 4 (100%) 4.1 4.2 5 (100%) 5.1 5.2 5.3 6 (100%) 7 (40%) 8 Fubini (90%) 2007.11.5 1 8.1 Fubini 8.2 Fubini 9 (0%) 10 (50%) 10.1 10.2 Carathéodory

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 1 [1] ( 2,625 [2] ( 2, ( ) /

1 1 [1] ( 2,625 [2] ( 2, ( ) / [] (,65 [] (,3 ( ) 67 84 76 7 8 6 7 65 68 7 75 73 68 7 73 7 7 59 67 68 65 75 56 6 58 /=45 /=45 6 65 63 3 4 3/=36 4/=8 66 7 68 7 7/=38 /=5 7 75 73 8 9 8/=364 9/=864 76 8 78 /=45 /=99 8 85 83 /=9 /= ( )

More information

(1) (2) (3) (4) 1

(1) (2) (3) (4) 1 8 3 4 3.................................... 3........................ 6.3 B [, ].......................... 8.4........................... 9........................................... 9.................................

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

[] x < T f(x), x < T f(x), < x < f(x) f(x) f(x) f(x + nt ) = f(x) x < T, n =, 1,, 1, (1.3) f(x) T x 2 f(x) T 2T x 3 f(x), f() = f(t ), f(x), f() f(t )

[] x < T f(x), x < T f(x), < x < f(x) f(x) f(x) f(x + nt ) = f(x) x < T, n =, 1,, 1, (1.3) f(x) T x 2 f(x) T 2T x 3 f(x), f() = f(t ), f(x), f() f(t ) 1 1.1 [] f(x) f(x + T ) = f(x) (1.1), f(x), T f(x) x T 1 ) f(x) = sin x, T = 2 sin (x + 2) = sin x, sin x 2 [] n f(x + nt ) = f(x) (1.2) T [] 2 f(x) g(x) T, h 1 (x) = af(x)+ bg(x) 2 h 2 (x) = f(x)g(x)

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: hara@math.kyushu-u.ac.jp, 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

t = h x z z = h z = t (x, z) (v x (x, z, t), v z (x, z, t)) ρ v x x + v z z = 0 (1) 2-2. (v x, v z ) φ(x, z, t) v x = φ x, v z

t = h x z z = h z = t (x, z) (v x (x, z, t), v z (x, z, t)) ρ v x x + v z z = 0 (1) 2-2. (v x, v z ) φ(x, z, t) v x = φ x, v z I 1 m 2 l k 2 x = 0 x 1 x 1 2 x 2 g x x 2 x 1 m k m 1-1. L x 1, x 2, ẋ 1, ẋ 2 ẋ 1 x = 0 1-2. 2 Q = x 1 + x 2 2 q = x 2 x 1 l L Q, q, Q, q M = 2m µ = m 2 1-3. Q q 1-4. 2 x 2 = h 1 x 1 t = 0 2 1 t x 1 (t)

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

さくらの個別指導 ( さくら教育研究所 ) A a 1 a 2 a 3 a n {a n } a 1 a n n n 1 n n 0 a n = 1 n 1 n n O n {a n } n a n α {a n } α {a

さくらの個別指導 ( さくら教育研究所 ) A a 1 a 2 a 3 a n {a n } a 1 a n n n 1 n n 0 a n = 1 n 1 n n O n {a n } n a n α {a n } α {a ... A a a a 3 a n {a n } a a n n 3 n n n 0 a n = n n n O 3 4 5 6 n {a n } n a n α {a n } α {a n } α α {a n } a n n a n α a n = α n n 0 n = 0 3 4. ()..0.00 + (0.) n () 0. 0.0 0.00 ( 0.) n 0 0 c c c c c

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

body.dvi

body.dvi ..1 f(x) n = 1 b n = 1 f f(x) cos nx dx, n =, 1,,... f(x) sin nx dx, n =1,, 3,... f(x) = + ( n cos nx + b n sin nx) n=1 1 1 5 1.1........................... 5 1.......................... 14 1.3...........................

More information

main.dvi

main.dvi 9 5.4.3 9 49 5 9 9. 9.. z (z) = e t t z dt (9.) z z = x> (x +)= e t t x dt = e t t x e t t x dt = x(x) (9.) t= +x x n () = (n +) =!= e t dt = (9.3) z

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

f(x) = f(x ) + α(x)(x x ) α(x) x = x. x = f (y), x = f (y ) y = f f (y) = f f (y ) + α(f (y))(f (y) f (y )) f (y) = f (y ) + α(f (y)) (y y ) ( (2) ) f

f(x) = f(x ) + α(x)(x x ) α(x) x = x. x = f (y), x = f (y ) y = f f (y) = f f (y ) + α(f (y))(f (y) f (y )) f (y) = f (y ) + α(f (y)) (y y ) ( (2) ) f 22 A 3,4 No.3 () (2) (3) (4), (5) (6) (7) (8) () n x = (x,, x n ), = (,, n ), x = ( (x i i ) 2 ) /2 f(x) R n f(x) = f() + i α i (x ) i + o( x ) α,, α n g(x) = o( x )) lim x g(x) x = y = f() + i α i(x )

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

Quiz x y i, j, k 3 A A i A j A k x y z A x A y A z x y z A A A A A A x y z P (x, y,z) r x i y j zk P r r r r r r x y z P ( x 1, y 1, z 1 )

Quiz x y i, j, k 3 A A i A j A k x y z A x A y A z x y z A A A A A A x y z P (x, y,z) r x i y j zk P r r r r r r x y z P ( x 1, y 1, z 1 ) Quiz x y i, j, k 3 A A i A j A k x y z A x A y A z x y z A A A A A A x y z P (x, y,z) x i y j zk P x y z P ( x 1, y 1, z 1 ) Q ( x, y, z ) 1 OP x1i y1 j z1k OQ x i y j z k 1 P Q PQ 1 PQ x x y y z z 1 1

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

mugensho.dvi

mugensho.dvi 1 1 f (t) lim t a f (t) = 0 f (t) t a 1.1 (1) lim(t 1) 2 = 0 t 1 (t 1) 2 t 1 (2) lim(t 1) 3 = 0 t 1 (t 1) 3 t 1 2 f (t), g(t) t a lim t a f (t) g(t) g(t) f (t) = o(g(t)) (t a) = 0 f (t) (t 1) 3 1.2 lim

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

II K116 : January 14, ,. A = (a ij ) ij m n. ( ). B m n, C n l. A = max{ a ij }. ij A + B A + B, AC n A C (1) 1. m n (A k ) k=1,... m n A, A k k

II K116 : January 14, ,. A = (a ij ) ij m n. ( ). B m n, C n l. A = max{ a ij }. ij A + B A + B, AC n A C (1) 1. m n (A k ) k=1,... m n A, A k k : January 14, 28..,. A = (a ij ) ij m n. ( ). B m n, C n l. A = max{ a ij }. ij A + B A + B, AC n A C (1) 1. m n (A k ) k=1,... m n A, A k k, A. lim k A k = A. A k = (a (k) ij ) ij, A k = (a ij ) ij, i,

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

2009 IA I 22, 23, 24, 25, 26, a h f(x) x x a h

2009 IA I 22, 23, 24, 25, 26, a h f(x) x x a h 009 IA I, 3, 4, 5, 6, 7 7 7 4 5 h fx) x x h 4 5 4 5 1 3 1.1........................... 3 1........................... 4 1.3..................................... 6 1.4.............................. 8 1.4.1..............................

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

no35.dvi

no35.dvi p.16 1 sin x, cos x, tan x a x a, a>0, a 1 log a x a III 2 II 2 III III [3, p.36] [6] 2 [3, p.16] sin x sin x lim =1 ( ) [3, p.42] x 0 x ( ) sin x e [3, p.42] III [3, p.42] 3 3.1 5 8 *1 [5, pp.48 49] 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

2014 S hara/lectures/lectures-j.html r 1 S phone: ,

2014 S hara/lectures/lectures-j.html r 1 S phone: , 14 S1-1+13 http://www.math.kyushu-u.ac.jp/ hara/lectures/lectures-j.html r 1 S1-1+13 14.4.11. 19 phone: 9-8-4441, e-mail: hara@math.kyushu-u.ac.jp Office hours: 1 4/11 web download. I. 1. ϵ-δ 1. 3.1, 3..

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

untitled

untitled 0. =. =. (999). 3(983). (980). (985). (966). 3. := :=. A A. A A. := := 4 5 A B A B A B. A = B A B A B B A. A B A B, A B, B. AP { A, P } = { : A, P } = { A P }. A = {0, }, A, {0, }, {0}, {}, A {0}, {}.

More information

chap03.dvi

chap03.dvi 99 3 (Coriolis) cm m (free surface wave) 3.1 Φ 2.5 (2.25) Φ 100 3 r =(x, y, z) x y z F (x, y, z, t) =0 ( DF ) Dt = t + Φ F =0 onf =0. (3.1) n = F/ F (3.1) F n Φ = Φ n = 1 F F t Vn on F = 0 (3.2) Φ (3.1)

More information

.1 1,... ( )

.1 1,... ( ) 1 δ( ε )δ 2 f(b) f(a) slope f (c) = f(b) f(a) b a a c b 1 213 3 21. 2 [e-mail] nobuo@math.kyoto-u.ac.jp, [URL] http://www.math.kyoto-u.ac.jp/ nobuo 1 .1 1,... ( ) 2.1....................................

More information

5. [1 ] 1 [], u(x, t) t c u(x, t) x (5.3) ξ x + ct, η x ct (5.4),u(x, t) ξ, η u(ξ, η), ξ t,, ( u(ξ,η) ξ η u(x, t) t ) u(x, t) { ( u(ξ, η) c t ξ ξ { (

5. [1 ] 1 [], u(x, t) t c u(x, t) x (5.3) ξ x + ct, η x ct (5.4),u(x, t) ξ, η u(ξ, η), ξ t,, ( u(ξ,η) ξ η u(x, t) t ) u(x, t) { ( u(ξ, η) c t ξ ξ { ( 5 5.1 [ ] ) d f(t) + a d f(t) + bf(t) : f(t) 1 dt dt ) u(x, t) c u(x, t) : u(x, t) t x : ( ) ) 1 : y + ay, : y + ay + by : ( ) 1 ) : y + ay, : yy + ay 3 ( ): ( ) ) : y + ay, : y + ay b [],,, [ ] au xx

More information

difgeo1.dvi

difgeo1.dvi 1 http://matlab0.hwe.oita-u.ac.jp/ matsuo/difgeo.pdf ver.1 8//001 1 1.1 a A. O 1 e 1 ; e ; e e 1 ; e ; e x 1 ;x ;x e 1 ; e ; e X x x x 1 ;x ;x X (x 1 ;x ;x ) 1 1 x x X e e 1 O e x x 1 x x = x 1 e 1 + x

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