i PowerBookG4 Maple 9 L A T E X Maple Maple 9 Waterloo Maple Inc. Macintosh, Power Macintosh Apple Computer, Inc. UNIX AT&T X Window System Microsoft
|
|
|
- そうすけ こうい
- 7 years ago
- Views:
Transcription
1 Maple Copyright 005 Shigeto R. Nishitani Department of Informatics, Kwansei Gakuin University, Sanda, Japan [email protected] 7 5 3
2 i PowerBookG4 Maple 9 L A T E X Maple Maple 9 Waterloo Maple Inc. Macintosh, Power Macintosh Apple Computer, Inc. UNIX AT&T X Window System Microsoft Windoes Microsoft Corporation Maple Copyright c 005 v.0 ( ) ( ) Maple : Essentials and Applications on Numerical Recipe Copyright c 005 by Shigeto R. Nishitani. This material may be distributed only subject to the terms and conditions set forth in the Open Publication License, v.0 or later (the latest version is presently available at Distribution of the work or derivative of the work in any standard (paper) book form is prohibited unless prior permission is obtained from the copyright holder.
3
4 iii Maple Maple proc Maple Maple
5 iv.6 Maple Maple linux
6 . Maple.. Maple PC user interface Java base OS linux xmaple GUI maple maple terminal character.. (">") [enter] enter return [shift+enter] shift enter > +;[ enter] > factor(x^-3*x+);[ shift+enter] > 3/+5/3;[ shift+enter] > 00!;[ enter] (x ) (x ) \ \ > plot(tanh(x),x=-5..5);[ enter]
7 x 0.5 > eq:=sin(x)*cos(y):[ shift+enter] > plot3d(eq,x=-pi..pi,y=-pi..pi);[ enter] y x 3 enter shift+enter enter shift+enter shift+enter ( ) enter enter [enter] [shift+enter]
8 .. 3 (">") [shift+enter]..3 enter π +π > plot(sin(x),x=-pi..pi); Error, (in plot) range values must be real constants ( (plot ) ) Maple pi Pi > plot(sin(x),x=-pi..pi); x Maple
9 4 >?plot; plot index help Help Calling Sequence: Parameters: Description: Examples: See Also: Windows Examples Maple
10 > mass:=0; mass := 0 > force:=-mass*accel; force := 0 accel % > exp:=%; exp := 0 accel > restart; > mass:= mass ; > force:=-mass*accel; mass := mass force := mass accel subs > subs(mass=0,accel=4,force); > force; 40 mass accel
11 6 > x:=;y:=3; > f:= x+y ;g:=x+y; x := y := 3 f := x + y g := 5 restart free.. (trigonometric functions) log ln > log[](5); ln(5) ln() evalf(evaluate float ) > evalf(%); Maple help index keywords? inifcns -? index[package] - (DETools), (linalg), (plots)? index[function] - Maple > with(plots): Warning, the name changecoords has been redefined
12 i) ii) unapply > f:=x->-x*ln(exp(-/x)/(-exp(-/x))); f := x x ln e ( x ) unapply eq x f > eq:=(+exp(-/t))/(-exp(-/t)): > f:=unapply(eq,t); e( x ) f := T + e( T ) e ( T ) T 3 > f(3); > f3:=t->eq; > f3(3); + e ( /3) e ( /3) f3 := T eq + e ( T ) e ( T )..4 Maple plot
13 8 > plot(f(x),x=0..0); 0 x > plot({f(x),f(x)},x=0..0); x plot3d > plot3d(sin(x)*exp(-y),x=-pi..pi,y=-pi..pi); y 0 0 x 3 3
14 .. 9 plotting plot ) > with(plots): > with(plottools): plots package plottools package.6..5 solve > eqset:={x+y=,y=+x^}; > solve(eqset,{x,y}); > x;y; eqset := {x + y =, y = + x } {y =, x = 0}, {x =, y = } x,y x,y assign > solset:=solve(eqset,{x,y}); > solset[]; > assign(solset[]); > x;y; x y solset := {y =, x = 0}, {x =, y = } {y =, x = 0} fsolve > restart; > f:=x->-x*ln(exp(-/x)/(-exp(-/x))); > fsolve(f(x)=0,x); 0
15 0 f := x x ln e( x ) e ( x )..6 diff > restart; > diff(x^,x); > diff(y^*x^,x,x); > c:=(x,t)->x(x)*t(t); > diff(c(x,t),x); > diff(c(x,t),x,t); x y c := (x, t) X(x) T(t) ( d X(x)) T(t) dx ( d dx X(x)) ( d dt T(t))..7 > int(ln(x),x); > int(sin(x),x=-pi..0); x ln(x) x int integrate > eq:=x^/sqrt(-x^); > int(eq,x); eq := x x
16 .. x x > eq:=exp(-x^); > int(eq,x=0..zz); + arcsin(x) eq := e ( x ) π erf(zz) Int. x, cos(x) x = f(x) = x cos(x) x = fsolve x cos(x) = 0 4. E(T ) = + exp( /T ) exp( /T ) (.) (T ) (C(T ) = de/dt )
17 .3 Maple Maple Maple Maple C.3. Maple C > i:=; > x:=3; > y:=.0; > z:=x+y; i := x := 3 y :=.0 z := 5.0 print printf C \t \n %d, %e, %f x,y,z %0.5f 0 5 Z > printf("%03d, %5.3e\t%0.5f\n",x,y,z); 003,.000e > printf("%0.5zf\n",z+y*i); I.3. +,-,*,/ > 3/4; > 3/4+/5; 3 4
18 .3. Maple irem( ) iquo( ) > irem(0,3); > iquo(0,3); evalf > evalf(0/3); > evalf(pi,30); Digits > Digits:=0; > evalf(exp()); Digits := trunc 0 round floor ceil floor trunc frac % C %%... > %; ^ >.^3.4;
19 4 round(x) x=-.6 round(x) x= ceil(x) floor(x) trunc(x) trunc(x) floor(x) ceil(x).: trunc, round, floor, ceil.3.3 if-else if-else if < > then < > elif < > then < > else < > end if ( ) > x:=-4; > if (x>0) then > y:=x; > else > y:=-x; > end if x := 4 y := 4 <, <=, >, >=, =, <> and, or, xor, implies, not evalb, type
20 .3. Maple 5 do-loop for-loop for < > from < > by < > < > end do; ( ) to < > do > total:=0; > for i from to 0 do > total:=total+i; > end: > total; total := 0 55 > for i from by - to -4 do > i; > end do; 0 4 loop loop end do; while-loop while < > do < > end do; next, break do-loop next do-loop break do-loop
21 6 > for i from to 5 do > if (i=3) then next; end if; > i; > end do; > for i from to 5 do > if (i=3) then break; end if; > i; > end do; [ ] > restart; > list:=[,,3,4]; list := [,, 3, 4] > list[3]; > list[-]; > list[..4]; 3 4 [, 3, 4] -,- C 0 > list[0]; Error, invalid subscript selector
22 .3. Maple 7 op > op(list); > list:=[op(list),5];,, 3, 4 list := [,, 3, 4, 5] > list[4]:=x; > list; list 4 := x [,, 3, x, 5] > list:=subsop(4=null,list); > list; nops > nops(list); list := [,, 3, 5] [,, 3, 5] 4 ( Maple ) > aa:=[];# > for i from to 3 do > aa:=[op(aa),i];# > end do: > print(aa); aa := [] [,, 3] > n:=nops(aa); # > total:=0; > for i from to n do #for-loop > total:=total+aa[i]; > end do: > print(total);
23 8 n := 3 total := 0 [ ] (listlist) > aa:=[[,],[3,4]]; > aa[,]; 6 aa := [[, ], [3, 4]] array array listlist OK > A:=array(..3,..3,diagonal); > print(a); A := array(diagonal,..3,..3, []) A, A, A 3, 3 > B:=array(0..,-..,[[,,3,4],[5,6,7,8]]): > B[,-]; convert array listlist > A:=convert(aa,array); > print(a); [ ] A := 3 4 [ ] 3 4 i j array 5
24 .3. Maple 9 > n:=: > i:=op(,op(,eval(b))[n])-op(,op(,eval(b))[n])+; > n:=: > j:=op(,op(,eval(b))[n])-op(,op(,eval(b))[n])+; i := j := 4 set {} set set > {x,y,z},{y,z,x},{x,x,y,z,z,x}; {x, z, y}, {x, z, y}, {x, z, y} (union) (intersect) (minus) > {x,y,z} union {u,v,z}; > {x,y,z} intersect {u,v,z}; > {x,y,z} minus {z}; {v, x, z, y, u} {z} {x, y} [ ] Maple > {x,y,z}[]; x.3.5 proc proc < >:=proc(< >); local < >;
25 0 global < >; < > end proc; global,local C local, global global,local Maple :=proc() end proc; proc ( ) a > total:=proc(a) > local S,n,i; > n:=nops(a); > S:=0; > for i from to n do > S:=S+a[i]; > end do; > eval(s); > end proc:# > aa:=[3,5,7]; > total(aa); aa := [3, 5, 7] 5. Maple script C Maple script scanf irem #include <stdio.h> int main(void){ int i,n;
26 .3. Maple } scanf("%d",&n); for (i=n-;i>;i--){ if (n%i==0){ break; } } if (i==){ printf("%d is a prime number.\n",n); } else { printf("%d is not a prime number.\n",n); } return 0;. Google e 0 Maple evalf floor isprime true, false evalf 00 exp() floor 0 ( ) 0 isprime > EE:=.78; > i:=; > AA[i]:=floor(EE); > EE:=0*(EE-AA[i]); EE :=.78 i := AA := EE := 7.80
27 ( ) 3 (3 ) 00.: ( ) [0] [0] p p Newton-Raphson Newton-Raphson x cos(x) = 0 f (x) = + sin x Newton-Raphson x 0 x = x0 f(x0) f (x0) (.) y = f(x) x for-loop 3 x0, x, f(x) (eps=.0e-0 ) ( )
28 .3. Maple 3 x x x0.: Newton-Raphson x[0]=(0.0, 0.0) x[]=(.0,.0) x[]=(.0, 0.0) x[3]=(0.0,.0) [0,,,3,0]
29 4.4 Maple array list LinearAlgebra.4. > with(linearalgebra): matrix, vector Vector > v:=vector([x,y,z]); v := Vector ( ) (column vector) ( ) (row vector) ( row, column ) > v:=vector[row]([x,y,z]); x y z v := [x, y, z] [ ] < > > v:=<x,y,z>; > v:=<x y z>; v := x y z v := [x, y, z] Matrix 3 listlist > A0:=Matrix(,3,[[,,3],[4,5,6]]);
30 .4. Maple 5 [ ] 3 A0 := < > > A:=<<,,3> <4,5,6> <7,8,9>>; A := (shape=identity) > E:=Matrix(3,3,shape=identity); E := listlist convert > A3:=[[,],[3,4]]; > A4:=convert(A3,Matrix); A3 := [[, ], [3, 4]] [ ] A4 := Maple > A5:=Matrix(,,[[3,-],[,]]); > a*a4+b*a5; [ ] 3 A5 := [ ] a + 3 b a b 3 a + b 4 a + b "."( ) > A4.A4; [ ] "."
31 6 > A.v; > v.v; x + 4 y + 7 z x + 5 y + 8 z 3 x + 6 y + 9 z x + y + z Error > v.a; Error, (in LinearAlgebra:-VectorMatrixMultiply) invalid input: LinearAlgebra:-VectorMatrixMultiply expects its st argument, v, to be of type Vector[row] but received Vector[column](3, [...], datatype = anything, storage = rectangular, order = Fortran_order, shape = []) (outer product) OuterProductMatrix > OuterProductMatrix(v,v); x x y x z x y y y z x z y z z.4.3 MatrixInverse > A3:=Matrix(3,3,[[,,],[4,5,6],[7,8,9]]): > MatrixInverse(A3); Determinant > Determinant(A3); 6 A MatrixInverse > MatrixInverse(A); Error, (in LinearAlgebra:-LA_Main:-MatrixInverse) singular matrix
32 .4. Maple 7 0 > Determinant(A); Transpose > Transpose(A0); > Transpose(v); > Transpose(v).v; [x, y, z] x + y + z.4.4 Eigenvectors > Eigenvectors(A); ( ) 4 ( ( ) ( ) 33 ) 3 ( 3 33 ) ( ) 33, ( ) ( 3 33 ) l(lambda) V > l,v:=evalf(eigenvectors(a)); 0. l, V := , V Column A.V = λ V (.3)
33 8 > l[].column(v,); > A.Column(V,); Row. x + 3y -z = -3 x + y -z = x + 3y +z = -6 (a) A (b) A (c) A A = E (d) b. H:=Matrix(,,[[,],[,3]]); Ax = b A Ax = A b Ex = A b (.4)
34 .4. Maple 9 Eigenvalues H:= H - x * Matrix(,,shape=identity); H solve
35 30.5 Maple exp Maple.5. solve( ), diff( ), int( ).: simplify: lhs, rhs: subs: expand: numer, denom: assume: factor: coeff: assuming: normal: nops, op assign: combine: about: collect: anames( user ): sort: restart,a:= a : convert: expand: expand(exp )
36 .5. Maple 3 factor: factor(exp ) normal: normal(exp ) combine: combine(exp ) collect: collect(exp,x) convert: convert(exp,opt ) > restart; > convert(sin(x),exp); I (e(x I) e > convert(sinh(x),exp); ex e x > convert(exp(i*x),trig); (x I) ) cos(x) + sin(x) I > convert(/(x-)/(x+3),parfrac); 4 (x + 3) + 4 (x ).3: convert opt polynom trig sincos exp parfrac rational tan sin, cos simplify: simplify(exp ), simplify(exp, ) > exp:=3*sin(x)^3-sin(x)*cos(x)^; exp := 3 sin(x) 3 sin(x) cos(x) > simplify(exp); (4 cos(x) 3) sin(x) > simplify(exp,{cos(x)^=-sin(x)^}); 4 sin(x) 3 sin(x)
37 3 sort: sort(exp ), sort(exp,[x,y]), sort(exp, [x],opts);opts=tdeg,plex,ascending,or descending (,, ) > exp:=x^3+4*x-3*x^+: > sort(exp); x 3 3 x + 4 x + > sort(exp,[x],ascending); + 4 x 3 x + x 3 > exp:=x^3-3*x*y+4*x^+y^: > sort(exp); > sort(exp,[x]); x x 3 x y + y x x 3 y x + y > sort(exp,[y],descending); y 3 x y + x x lhs, rhs: lhs(exp =exp ) numer, denom: numer(exp /exp ) coeff: coeff(exp,x^) op,nops:, op(exp ), nops(exp ) subs: subs(,exp ) > exp:=x^-4*x+4; > subs(x=a+,exp); assume: assume( ) exp := x 4 x + 4 (a + ) 4 a 4 assuming: exp assuming > sqrt(exp); ( + x) ascending, descending Maple9.5
38 .5. Maple 33 > sqrt(exp) assuming x>; + x additionally: assume assign: solve about: assume restart,a= a : anames( user ): > anames( user ); exp, exp series: series(exp,x,4) > series(exp(x),x); + x + x + 6 x3 + 4 x4 + 0 x5 + O(x 6 ) > series(sin(x),x=pi/3,); 3 + (x π 3 ) + O((x π 3 ) ) > convert(%,polynom); 3 + x π 6 : > a ; > a b; seq: for-loop > seq(i,i=0..3); a ab 0,,, 3 map: > map(sin,[seq(a i,i=0..3)]);
39 34 add, mul: [sin(a0 ), sin(a ), sin(a ), sin(a3 )] sum, product: > add(x^i,i=..3); > add(x^i,i=..n); x + x + x 3 Error, unable to execute add > sum(x^i,i=..n); x (n+) x x x > mul(x^i,i=..3); > mul(x^i,i=..n); x 6 Error, unable to execute mul limit: > product(x^i,i=..n); n x i i= > limit(exp(-x),x=infinity); > limit(tan(x),x=pi/,left); 0 > limit(tan(x),x=pi/,complex); + I.5. Maple
40 .5. Maple 35 restart restart; plot Plotting error,empty plot xe ( β cx + β gx 3) dx (.5) Maple > f:=unapply(x*exp(-beta*c*x^)*(+beta*g*x^3),x); f := x x e ( β c x) ( + β g x 3 ) > int(f(x),x=-infinity..infinity); 3 g π 4 β c csgn(β c) = β c otherwise βc (csgn(βc)=) (otherwise) Maple restart > restart; > f:=unapply(x*exp(-beta*c*x^)*(+beta*g*x^3),x); f := x x e ( β c x) ( + β g x 3 ) plot
41 36 > plot(f(x),x=-0..0); Warning, unable to evaluate the function to numeric values in the region; see the plotting command s help page to ensure the calling sequence is correct Plotting error, empty plot > f(0); 0 e ( 00 β c) ( β g) beta,c,g > c:=; g:=0.0; beta:=0.; c := g := 0.0 β := 0. > plot(f(x),x=-0..0); x > c:= c ; g:= g ; beta:= beta ; c := c g := g β := β
42 .5. Maple 37 > int(f(x),x); e (β c x ) β c + β g x 3 e ( β c x ) β c + 3 x e ( β c x ) β c + π erf( β c x) 4 β c β c β c x=-alpha..alpha > int(f(x),x=-alpha..alpha); g (4 α 3 e ( β c α) β c β c + 6 α e ( β c α ) β c 3 π erf( β c α)) 4 β c β c alpha > limit(int(f(x),x=-alpha..alpha),alpha=infinity); lim g (4 α 3 e ( β c α) β c β c + 6 α e ( β c α ) β c 3 π erf( β c α)) α 4 β c β c beta*c>0 (assume) > assume(beta*c>0); > limit(int(f(x),x=-alpha..alpha),alpha=infinity); 3 π g 4 β c β c.5.3 ( ) ( )
43 38 Maple () () > ex:=(x-3)^4; ex := (x 3) 4 > ex:=x^4-*x^3+54*x^-08*x+8; > expand(ex-ex); ex := x 4 x x 08 x expand (thermal expansion) 3 x U(x) = cx gx 3 (.6) x 3 x x = x exp ( βu(x)) dx exp ( βu(x)) dx (.7)
44 .5. Maple 39 β /(k B T ) x = 3g 4βc (.8) Taylor 3 Maple > restart; > U:=c*x^-g*x^3; > eu:=expand(exp(-beta*u)); U := c x g x 3 eu := e(β g x3 ) e (β c x ) > ex:=convert(series(numer(eu),x,4),polynom); > f:=ex/denom(eu); ex := + β g x 3 f := + β g x3 e (β c x ) > den:=int(f,x=-infinity..infinity); π den := csgn(β c) = β c otherwise > num:=int(x*f,x=-infinity..infinity); 3 g π num := 4 β c csgn(β c) = β c otherwise beta c >0 beta c >0 (assume) > assume(beta*c>0):
45 40 > num/den; 3 g 4 β c 古典論 量子論 3 V (x) = 0 h d ϕ(x) = εϕ(x) (.9) m dx x 0 ϕ(x) = A exp(ikx) + B exp( ikx) (.0) x a ϕ(x) = C exp(ikx). k = mε/ h ε V 0 ε V 0 κ = m(ε V 0 )/ h 0 x a ϕ(x) = F exp(iκx) + G exp( iκx) (.) A 969
46 .5. Maple 4 x = 0 x = a x = 0 ϕ(x) A + B = F + G (.) x = 0 ϕ (x) k(a B) = κ(f G) x = a x = a ϕ(x) F exp(iκa) + G exp( iκa) = C exp(ika) ϕ (x) κf exp(iκa) κg exp( iκa) = kc exp(ika) 5 4 F, G B/A C/A B A C A = = [ 4k κ ] [ + (k κ ) sin = + 4ε(ε V ] 0) κa V0 sin (.3) κa [ + (k κ ) sin ] [ κa = + V 0 sin ] κa 4k κ 4ε(ε V 0 ) 0 < ε < V 0 α = m(v 0 ε)/ h 0 x a ϕ(x) = F exp(αx) + G exp( αx) (.4) [ C = + V 0 sinh ] αa (.5) A 4ε(ε V 0 ) mv 0 a / h = 8 E/V 0 < C/A C/A > restart; > psi:=x->a*exp(i*k*x)+b*exp(-i*k*x); ψ := x A e (k x I) ( I k x) + B e > psi:=x->e*exp(i*kappa*x)+f*exp(-i*kappa*x); ψ := x E e (κ x I) ( I κ x) + F e
47 4 mv 0 a /h =8 0.8 C / A E/V 0 A = 4 > psi3:=x->c*exp(i*k*x); (k x I) ψ3 := x C e x = 0, x = a 0 > eq:=psi(0)=psi(0); eq := A + B = E + F > eq:=simplify(subs(x=0,diff(psi(x),x))=subs(x=0,diff(psi(x),x))); > eq3:=psi(a)=psi3(a); eq := A k I B k I = E κ I F κ I eq3 := E e (κ a I) + F e ( I κ a) (k a I) = C e > eq4:=simplify(subs(x=a,diff(psi(x),x))=subs(x=a,diff(psi3(x),x))); eq4 := κ (E e (κ a I) F e ( I κ a) ) I = C k e (k a I) I 4 A,B,C,E,F > solve({eq,eq,eq3,eq4},{a,b,c,e,f}); e (k a I) ( k e ( I κ a) + k e (κ a I) κ e ( I κ a) + κ e (κ a I) k κ e ( I κ a) k κ e (κ a I) ) C k κ e (κ a I) e ( I κ a), C = C, B = (k κ) e (k a I) (k + κ) ( e ( I κ a) + e (κ a I) ) C, F = 4 k κ e (κ a I) e ( I κ a) E = e (k a I) (k + κ) C κ e (κ a I) > assign(%); e (k a I) (k κ) C κ e ( I κ a), assign A/C (conjugate)
48 .5. Maple 43 kappa, k,a Maple > assume(kappa,real);assume(k,real),assume(a,real); conjugate (trig) convert > CC:=convert(A/C,trig): > CC:=combine(conjugate(CC)*CC); CC := κ k cos( κ a) + 6 κ k k 4 cos( κ a) κ 4 cos( κ a) + k 4 + κ 4 8 κ k > C_num:=simplify(expand(numer(CC)), > {cos(kappa*a)^=-sin(kappa*a)^, > cos(k*a)^=-sin(k*a)^}); C num := 8 κ k + ( 4 κ k + k 4 + κ 4 ) sin(κ a) > C_den:=denom(CC); > saa:=sin(kappa*a); C den := 8 κ k saa := sin(κ a) > CC:=collect(C_num/C_den,saa); CC := + ( 4 κ k + k 4 + κ 4 ) sin(κ a) 8 κ k k,kappa,a > NN:=8; > a:= a ; > a:=solve(m*v0*a/h=nn,a); > kappa:=*m*(epsilon-v0)/h; > k:=*m*epsilon/h; NN := 8 a := a a := 8 h m V0 κ := m (ε V0 ) h k := m ε h > CC3:=simplify( > subs({k=sqrt(k),kappa=sqrt(kappa)},coeff(cc,saa^)));
49 44 V0 CC3 := 4 (ε V0 ) ε > CC4:=simplify(subs(epsilon=x*V0,CC3)); CC4 := 4 (x ) x > aa:=simplify(subs(epsilon=x*v0,sqrt(kappa*a))); > CC5:=+CC4*sin(aa)^; aa := 4 x CC5 := + sin(4 x ) 4 (x ) x > f:=unapply(cc5,x); f := x + 4 > plot(/f(x),x=0..0); sin(4 x ) (x ) x. ( ) (i) (ii). 0 < ε < V 0 sinh sin cosh (α a) = + sinh (α a) (.6)
50 .6. Maple 45.6 Maple.6. plot > plot(sin(x),x); x 0.5 ({}) ([]) plot > plot({sin(x),cos(x),tan(x)},x=-pi..pi,y=-..); y x?plot[options]; plots[interactive]();
51 46 plots display > with(plots): > p:=plot(arctan(x),x,color=black): > p:=plot(diff(arctan(x),x),x,color=blue): > display(p,p); x p p display listplot listplot > with(plots): > T:=[seq(exp(-i),i=0..5)]; > listplot(t); T := [, e ( ), e ( ), e ( 3), e ( 4), e ( 5) ] listplot list y i x i
52 .6. Maple 47 > listplot(t,style=point); point x i,, 3, > T:=[seq([i/,exp(-i/)],i=0..0)]: > pointplot(t); listlist [x i, y i ] pointplot listplot > pointplot(t,connect=true); plot3d 3 plot3d > plot3d(sin(x)*cos(y),x=-pi..pi,y=-pi..pi);
53 y 0 0 x 3 3 > contourplot(sin(x)*cos(y),x=-pi..pi,y=-pi..pi); 3 y 3 3 x 3 plots with(plots); parameteric plot > plot([sin(t),cos(t),t=0..*pi]);
54 .6. Maple Maple Maple plot[structure] PLOT,PLOT3D CURVES, POINTS, POLYGONS, TEXT plots pointplot point animate, listplot, logplot, polarplot,contourplot plottools PLOT arc, arrow, circle, curve, line, point, sphere PLOT plots[display].6.3 ( ) plots animate [] t > with(plottools):with(plots): > animate(plot, [sin(x-t),x=0..5*pi], t=0..0): display insequence=true ([]) > tmp:=[]; > n:=0; > for i from 0 to n do > t:=i; > tmp:=[op(tmp), plot(sin(x-t),x=0..5*pi)]; > end do: > display(tmp,insequence=true); tmp := [] n := 0
55 x
56 animation gif.7. Java Maplet GetFile > with(maplets[examples]): > file:=getfile(); Warning, the protected name LinearAlgebra has been redefined and unprotected Initializing Java runtime environment. file := /Users/bob/Desktop/data.txt GetFile file Windows > with(stringtools): > file:=substituteall(file,"\\","/"); \ / Substitute > with(stringtools): > file:=substitute(file,"data","data"); Warning, the assigned name Group now has a global binding file := /Users/bob/Desktop/data.txt.7. writedata,readdata > f:=t->subs({a=0,b=40000,c=380,d=8},a+b/(c+(t-d)^) ): > T:=[seq(f(i)*( *evalf(rand()/0^)),i=..56)]: > writedata(file,t);
57 5 T file > T:=readdata(file,): > with(plots): > listplot(t); Warning, the name changecoords has been redefined writeto > interface(quiet=true); > writeto(file); > for i from to 0 do > s:=data i; > printf("%0.5f %s\n",evalf(f(i)),s); > end do: > writeto(terminal): > interface(quiet=false); false true C fopen, readline, sscanf, fclose > fd:=fopen(file,read); > for i from to do > l:=readline(fd); > d:=sscanf(l,"%f %s"); > end do; > fclose(fd): fd :=
58 l :=.49 data d := [.49, data ] l := data d := [.46063, data ] fd (file descripter) readline sscanf format l l > d[]; > whattype(d[]); > d[]; > whattype(d[]); float data string animation gif plot > plotsetup(gif,plotoutput=file): > display(tmp,insequence=true); > plotsetup(default): quicktime Maple 3 vrml (?vrml; ).7.4 linux linux maple filter [bob@asura0 ~/test]$ cat test.txt T:=readdata("./data0"); interface(quiet=true); writeto("./result"); print(t[]); writeto(terminal); interface(quiet=false);
59 54 data0 result interface(quiet=true) maple ~/test]$ /usr/local/maple9.5/bin/maple < test.txt \^/ Maple 9.5 (IBM INTEL LINUX)._ \ / _. Copyright (c) Maplesoft, a division of Waterloo Maple Inc. 004 \ MAPLE / All rights reserved. Maple is a trademark of < > Waterloo Maple Inc. Type? for help. > T:=readdata("./data0"); T := [.3,.35] > interface(quiet=true); false true > quit bytes used=000, alloc=6096, time=0.00 [bob@asura0 ~/test]$ cat result.3
combine: combine(exp1 ) collect: collect(exp1,x) convert: convert(exp1,opt ) > convert(sin(x),exp); > convert(sinh(x),exp); > convert(exp(i*x),trig);
1 Maple exp Maple 1.1 1.1.1 solve( ), diff( ), int( ), 1: simplify: lhs, rhs: subs: expand: numer, denom: assume: factor: coeff: assuming: normal: nops, op assign: combine: about: collect: anames( user
sin x
Mathematica 1998 7, 2001 3 Mathematica Mathematica 1 Mathematica 2 2 Mathematica 3 3 4 4 7 5 8 6 10 7 13 8 17 9 18 10 20 11 21 12 23 1 13 23 13.1............................ 24 13.2..........................
2.2 Sage I 11 factor Sage Sage exit quit 1 sage : exit 2 Exiting Sage ( CPU time 0m0.06s, Wall time 2m8.71 s). 2.2 Sage Python Sage 1. Sage.sage 2. sa
I 2017 11 1 SageMath SageMath( Sage ) Sage Python Sage Python Sage Maxima Maxima Sage Sage Sage Linux, Mac, Windows *1 2 Sage Sage 4 1. ( sage CUI) 2. Sage ( sage.sage ) 3. Sage ( notebook() ) 4. Sage
+,-,*,/,^ Mathematica 2Pi * + 2; (Enter) Maple + 2 (Shift+Enter) Mathematica 3 Maple abs(x) Mathematica Abs[x] : % %+ : ^ *, / +, - 23^4*2 + 4/2; (Mat
Maple Mathematica Maple Mathematica ( 3, 7). Maple classical maple worksheet 3 : Maple quit; Mathematica Quit Maple : Maple Windows Maple Maple5. Linux xmaple. (Display) (Input display) (Maple Notation).
() x + y + y + x dy dx = 0 () dy + xy = x dx y + x y ( 5) ( s55906) 0.7. (). 5 (). ( 6) ( s6590) 0.8 m n. 0.9 n n A. ( 6) ( s6590) f A (λ) = det(a λi)
0. A A = 4 IC () det A () A () x + y + z = x y z X Y Z = A x y z ( 5) ( s5590) 0. a + b + c b c () a a + b + c c a b a + b + c 0 a b c () a 0 c b b c 0 a c b a 0 0. A A = 7 5 4 5 0 ( 5) ( s5590) () A ()
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,
1 1 Gnuplot gnuplot Windows gnuplot gp443win32.zip gnuplot binary, contrib, demo, docs, license 5 BUGS, Chang
Gnuplot で微分積分 2011 年度前期 数学解析 I 講義資料 (2011.6.24) 矢崎成俊 ( 宮崎大学 ) 1 1 Gnuplot gnuplot http://www.gnuplot.info/ Windows gnuplot 2011 6 22 4.4.3 gp443win32.zip gnuplot binary, contrib, demo, docs, license 5
数学の基礎訓練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..............
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,
1. A0 A B A0 A : A1,...,A5 B : B1,...,B
1. A0 A B A0 A : A1,...,A5 B : B1,...,B12 2. 3. 4. 5. A0 A, B Z Z m, n Z m n m, n A m, n B m=n (1) A, B (2) A B = A B = Z/ π : Z Z/ (3) A B Z/ (4) Z/ A, B (5) f : Z Z f(n) = n f = g π g : Z/ Z A, B (6)
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 ),
, 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)
1. (8) (1) (x + y) + (x + y) = 0 () (x + y ) 5xy = 0 (3) (x y + 3y 3 ) (x 3 + xy ) = 0 (4) x tan y x y + x = 0 (5) x = y + x + y (6) = x + y 1 x y 3 (
1 1.1 (1) (1 + x) + (1 + y) = 0 () x + y = 0 (3) xy = x (4) x(y + 3) + y(y + 3) = 0 (5) (a + y ) = x ax a (6) x y 1 + y x 1 = 0 (7) cos x + sin x cos y = 0 (8) = tan y tan x (9) = (y 1) tan x (10) (1 +
GraphicsWithPlotFull.nb Plot[{( 1), ( ),...}, {( ), ( ), ( )}] Plot Plot Cos x Sin x, x, 5 Π, 5 Π, AxesLabel x, y x 1 Plot AxesLabel
http://yktlab.cis.k.hosei.ac.jp/wiki/ 1(Plot) f x x x 1 1 x x ( )[( 1)_, ( )_, ( 3)_,...]=( ) Plot Plot f x, x, 5, 3 15 10 5 Plot[( ), {( ), ( ), ( )}] D g x x 3 x 3 Plot f x, g x, x, 10, 8 00 100 10 5
(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
Excel ではじめる数値解析 サンプルページ この本の定価 判型などは, 以下の URL からご覧いただけます. このサンプルページの内容は, 初版 1 刷発行時のものです.
Excel ではじめる数値解析 サンプルページ この本の定価 判型などは, 以下の URL からご覧いただけます. http://www.morikita.co.jp/books/mid/009631 このサンプルページの内容は, 初版 1 刷発行時のものです. Excel URL http://www.morikita.co.jp/books/mid/009631 i Microsoft Windows
コンピュータ概論
4.1 For Check Point 1. For 2. 4.1.1 For (For) For = To Step (Next) 4.1.1 Next 4.1.1 4.1.2 1 i 10 For Next Cells(i,1) Cells(1, 1) Cells(2, 1) Cells(10, 1) 4.1.2 50 1. 2 1 10 3. 0 360 10 sin() 4.1.2 For
Fortran90/95 [9]! (1 ) " " 5 "Hello!"! 3. (line) Fortran Fortran 1 2 * (1 ) 132 ( ) * 2 ( Fortran ) Fortran ,6 (continuation line) 1
Fortran90/95 2.1 Fortran 2-1 Hello! 1 program example2_01! end program 2! first test program ( ) 3 implicit none! 4 5 write(*,*) "Hello!"! write Hello! 6 7 stop! 8 end program example2_01 1 program 1!
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
N88 BASIC 0.3 C: My Documents 0.6: 0.3: (R) (G) : enterreturn : (F) BA- SIC.bas 0.8: (V) 0.9: 0.5:
BASIC 20 4 10 0 N88 Basic 1 0.0 N88 Basic..................................... 1 0.1............................................... 3 1 4 2 5 3 6 4 7 5 10 6 13 7 14 0 N88 Basic 0.0 N88 Basic 0.1: N88Basic
I ( ) 1 de Broglie 1 (de Broglie) p λ k h Planck ( Js) p = h λ = k (1) h 2π : Dirac k B Boltzmann ( J/K) T U = 3 2 k BT
I (008 4 0 de Broglie (de Broglie p λ k h Planck ( 6.63 0 34 Js p = h λ = k ( h π : Dirac k B Boltzmann (.38 0 3 J/K T U = 3 k BT ( = λ m k B T h m = 0.067m 0 m 0 = 9. 0 3 kg GaAs( a T = 300 K 3 fg 07345
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 =
(3) (2),,. ( 20) ( s200103) 0.7 x C,, x 2 + y 2 + ax = 0 a.. D,. D, y C, C (x, y) (y 0) C m. (2) D y = y(x) (x ± y 0), (x, y) D, m, m = 1., D. (x 2 y
[ ] 7 0.1 2 2 + y = t sin t IC ( 9) ( s090101) 0.2 y = d2 y 2, y = x 3 y + y 2 = 0 (2) y + 2y 3y = e 2x 0.3 1 ( y ) = f x C u = y x ( 15) ( s150102) [ ] y/x du x = Cexp f(u) u (2) x y = xey/x ( 16) ( s160101)
微分積分 サンプルページ この本の定価 判型などは, 以下の URL からご覧いただけます. このサンプルページの内容は, 初版 1 刷発行時のものです.
微分積分 サンプルページ この本の定価 判型などは, 以下の URL からご覧いただけます. ttp://www.morikita.co.jp/books/mid/00571 このサンプルページの内容は, 初版 1 刷発行時のものです. i ii 014 10 iii [note] 1 3 iv 4 5 3 6 4 x 0 sin x x 1 5 6 z = f(x, y) 1 y = f(x)
( ) kadai4, kadai4.zip.,. 3 cos x [ π, π] Python. ( 100 ), x cos x ( ). (, ). def print cos(): print cos()
4 2010.6 1 :, HP.. HP 4 (, PGM/PPM )., python,,, 2, kadai4,.,,, ( )., ( ) N, exn.py ( 3 ex3.py ). N 3.., ( )., ( ) N, (exn.txt).. 1 ( ) kadai4, kadai4.zip.,. 3 cos x [ π, π] Python. ( 100 ), x cos x (
D xy D (x, y) z = f(x, y) f D (2 ) (x, y, z) f R z = 1 x 2 y 2 {(x, y); x 2 +y 2 1} x 2 +y 2 +z 2 = 1 1 z (x, y) R 2 z = x 2 y
5 5. 2 D xy D (x, y z = f(x, y f D (2 (x, y, z f R 2 5.. z = x 2 y 2 {(x, y; x 2 +y 2 } x 2 +y 2 +z 2 = z 5.2. (x, y R 2 z = x 2 y + 3 (2,,, (, 3,, 3 (,, 5.3 (. (3 ( (a, b, c A : (x, y, z P : (x, y, x
2009 IA 5 I 22, 23, 24, 25, 26, (1) Arcsin 1 ( 2 (4) Arccos 1 ) 2 3 (2) Arcsin( 1) (3) Arccos 2 (5) Arctan 1 (6) Arctan ( 3 ) 3 2. n (1) ta
009 IA 5 I, 3, 4, 5, 6, 7 6 3. () Arcsin ( (4) Arccos ) 3 () Arcsin( ) (3) Arccos (5) Arctan (6) Arctan ( 3 ) 3. n () tan x (nπ π/, nπ + π/) f n (x) f n (x) fn (x) Arctan x () sin x [nπ π/, nπ +π/] g n
1 3 1.1.......................... 3 1............................... 3 1.3....................... 5 1.4.......................... 6 1.5........................ 7 8.1......................... 8..............................
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
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..............
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
OK (S) vncviewer UNIX EDS vncviewer : VNC server: eds.efc.sec.eng.shizuoka.ac.jp:51 OK 2
Mathematica I (2001 5 31, 6 7 ) UNIX EDS vncviewer Internet Exploler http://www.efc.sec.eng.shizuoka.ac.jp/admin/pubsoft/ vncviewer.exe : 1 OK (S) vncviewer UNIX EDS vncviewer : VNC server: eds.efc.sec.eng.shizuoka.ac.jp:51
No2 4 y =sinx (5) y = p sin(2x +3) (6) y = 1 tan(3x 2) (7) y =cos 2 (4x +5) (8) y = cos x 1+sinx 5 (1) y =sinx cos x 6 f(x) = sin(sin x) f 0 (π) (2) y
No1 1 (1) 2 f(x) =1+x + x 2 + + x n, g(x) = 1 (n +1)xn + nx n+1 (1 x) 2 x 6= 1 f 0 (x) =g(x) y = f(x)g(x) y 0 = f 0 (x)g(x)+f(x)g 0 (x) 3 (1) y = x2 x +1 x (2) y = 1 g(x) y0 = g0 (x) {g(x)} 2 (2) y = µ
C¥×¥í¥°¥é¥ß¥ó¥° ÆþÌç
C (3) if else switch AND && OR (NOT)! 1 BMI BMI BMI = 10 4 [kg]) ( [cm]) 2 bmi1.c Input your height[cm]: 173.2 Enter Input your weight[kg]: 60.3 Enter Your BMI is 20.1. 10 4 = 10000.0 1 BMI BMI BMI = 10
13 Student Software TI-Nspire CX CAS TI Web TI-Nspire CX CAS Student Software ( ) 1 Student Software 37 Student Software Nspire Nspire Nspir
13 Student Software TI-Nspire CX CAS TI Web TI-Nspire CX CAS Student Software ( ) 1 Student Software 37 Student Software 37.1 37.1 Nspire Nspire Nspire 37.1: Student Software 13 2 13 Student Software esc
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....
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,
210 資料 TI 89 (1) TI 89 2nd ON HOME ( ) ( ) HOME =! ENTER ( ) = (10) ENTER ( ) [ ] { } ( )! 2 =! ( ) ( ) 2 3x ( 2y + yz) ( ) 3x ( ( ) 2y + y z)
210 資料 TI 89 (1) TI 89 2nd ON HOME () () HOME =! ENTER () = 3 10 3 (10) ENTER ( ) [ ] { } ( )! 2 =! ( ) () 2 3x ( 2y + yz) ( ) 3x ( ( ) 2y + y z) ENTER () 2nd 9 2nd 9) ENTER ( ) 2nd 7) ENTER 7 7 ) ENTER
1 8, : 8.1 1, 2 z = ax + by + c ax by + z c = a b +1 x y z c = 0, (0, 0, c), n = ( a, b, 1). f = n i=1 a ii x 2 i + i<j 2a ij x i x j = ( x, A x), f =
1 8, : 8.1 1, z = ax + by + c ax by + z c = a b +1 x y z c = 0, (0, 0, c), n = ( a, b, 1). f = a ii x i + i
.3. (x, x = (, u = = 4 (, x x = 4 x, x 0 x = 0 x = 4 x.4. ( z + z = 8 z, z 0 (z, z = (0, 8, (,, (8, 0 3 (0, 8, (,, (8, 0 z = z 4 z (g f(x = g(
06 5.. ( y = x x y 5 y 5 = (x y = x + ( y = x + y = x y.. ( Y = C + I = 50 + 0.5Y + 50 r r = 00 0.5Y ( L = M Y r = 00 r = 0.5Y 50 (3 00 0.5Y = 0.5Y 50 Y = 50, r = 5 .3. (x, x = (, u = = 4 (, x x = 4 x,
( 28 ) ( ) ( ) 0 This note is c 2016, 2017 by Setsuo Taniguchi. It may be used for personal or classroom purposes, but not for commercial purp
( 28) ( ) ( 28 9 22 ) 0 This ote is c 2016, 2017 by Setsuo Taiguchi. It may be used for persoal or classroom purposes, but ot for commercial purposes. i (http://www.stat.go.jp/teacher/c2epi1.htm ) = statistics
num2.dvi
[email protected] http://kanenko.a.la9.jp/ 16 32...... h 0 h = ε () 0 ( ) 0 1 IEEE754 (ieee754.c Kerosoft Ltd.!) 1 2 : OS! : WindowsXP ( ) : X Window xcalc.. (,.) C double 10,??? 3 :, ( ) : BASIC,
<4D F736F F D B B83578B6594BB2D834A836F815B82D082C88C60202E646F63>
電気電子数学入門 サンプルページ この本の定価 判型などは, 以下の URL からご覧いただけます. http://www.morikita.co.jp/books/mid/073471 このサンプルページの内容は, 初版 1 刷発行当時のものです. i 14 (tool) [ ] IT ( ) PC (EXCEL) HP() 1 1 4 15 3 010 9 ii 1... 1 1.1 1 1.
II 1 3 2 5 3 7 4 8 5 11 6 13 7 16 8 18 2 1 1. x 2 + xy x y (1 lim (x,y (1,1 x 1 x 3 + y 3 (2 lim (x,y (, x 2 + y 2 x 2 (3 lim (x,y (, x 2 + y 2 xy (4 lim (x,y (, x 2 + y 2 x y (5 lim (x,y (, x + y x 3y
高校生の就職への数学II
II O Tped b L A TEX ε . II. 3. 4. 5. http://www.ocn.ne.jp/ oboetene/plan/ 7 9 i .......................................................................................... 3..3...............................
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ζ
29
9 .,,, 3 () C k k C k C + C + C + + C 8 + C 9 + C k C + C + C + C 3 + C 4 + C 5 + + 45 + + + 5 + + 9 + 4 + 4 + 5 4 C k k k ( + ) 4 C k k ( k) 3 n( ) n n n ( ) n ( ) n 3 ( ) 3 3 3 n 4 ( ) 4 4 4 ( ) n n
Python Speed Learning
Python Speed Learning 1 / 89 1 2 3 4 (import) 5 6 7 (for) (if) 8 9 10 ( ) 11 12 for 13 2 / 89 Contents 1 2 3 4 (import) 5 6 7 (for) (if) 8 9 10 ( ) 11 12 for 13 3 / 89 (def) (for) (if) etc. 1 4 / 89 Jupyter
A(6, 13) B(1, 1) 65 y C 2 A(2, 1) B( 3, 2) C 66 x + 2y 1 = 0 2 A(1, 1) B(3, 0) P 67 3 A(3, 3) B(1, 2) C(4, 0) (1) ABC G (2) 3 A B C P 6
1 1 1.1 64 A6, 1) B1, 1) 65 C A, 1) B, ) C 66 + 1 = 0 A1, 1) B, 0) P 67 A, ) B1, ) C4, 0) 1) ABC G ) A B C P 64 A 1, 1) B, ) AB AB = 1) + 1) A 1, 1) 1 B, ) 1 65 66 65 C0, k) 66 1 p, p) 1 1 A B AB A 67
1
1 1 7 1.1.................................. 11 2 13 2.1............................ 13 2.2............................ 17 2.3.................................. 19 3 21 3.1.............................
1 29 ( ) I II III A B (120 ) 2 5 I II III A B (120 ) 1, 6 8 I II A B (120 ) 1, 6, 7 I II A B (100 ) 1 OAB A B OA = 2 OA OB = 3 OB A B 2 :
9 ( ) 9 5 I II III A B (0 ) 5 I II III A B (0 ), 6 8 I II A B (0 ), 6, 7 I II A B (00 ) OAB A B OA = OA OB = OB A B : P OP AB Q OA = a OB = b () OP a b () OP OQ () a = 5 b = OP AB OAB PAB a f(x) = (log
A
A 2563 15 4 21 1 3 1.1................................................ 3 1.2............................................. 3 2 3 2.1......................................... 3 2.2............................................
Bessel ( 06/11/21) Bessel 1 ( ) 1.1 0, 1,..., n n J 0 (x), J 1 (x),..., J n (x) I 0 (x), I 1 (x),..., I n (x) Miller (Miller algorithm) Bess
Bessel 5 3 11 ( 6/11/1) Bessel 1 ( ) 1.1, 1,..., n n J (x), J 1 (x),..., J n (x) I (x), I 1 (x),..., I n (x) Miller (Miller algorithm) Bessel (6 ) ( ) [1] n n d j J n (x), d j I n (x) Deuflhard j= j=.1
PC Windows 95, Windows 98, Windows NT, Windows 2000, MS-DOS, UNIX CPU
1. 1.1. 1.2. 1 PC Windows 95, Windows 98, Windows NT, Windows 2000, MS-DOS, UNIX CPU 2. 2.1. 2 1 2 C a b N: PC BC c 3C ac b 3 4 a F7 b Y c 6 5 a ctrl+f5) 4 2.2. main 2.3. main 2.4. 3 4 5 6 7 printf printf
<4D F736F F D B B83578B6594BB2D834A836F815B82D082C88C60202E646F63>
常微分方程式の局所漸近解析 サンプルページ この本の定価 判型などは, 以下の URL からご覧いただけます. http://www.morikita.co.jp/books/mid/007651 このサンプルページの内容は, 初版 1 刷発行当時のものです. i Leibniz ydy = y 2 /2 1675 11 11 [6] 100 Bernoulli Riccati 19 Fuchs
1W II K =25 A (1) office(a439) (2) A4 etc. 12:00-13:30 Cafe David 1 2 TA appointment Cafe D
1W II K200 : October 6, 2004 Version : 1.2, [email protected], http://www.math.nagoa-u.ac.jp/~kawahira/courses.htm TA M1, [email protected] TA Talor Jacobian 4 45 25 30 20 K2-1W04-00
Basic Math. 1 0 [ N Z Q Q c R C] 1, 2, 3,... natural numbers, N Def.(Definition) N (1) 1 N, (2) n N = n +1 N, (3) N (1), (2), n N n N (element). n/ N.
Basic Mathematics 16 4 16 3-4 (10:40-12:10) 0 1 1 2 2 2 3 (mapping) 5 4 ε-δ (ε-δ Logic) 6 5 (Potency) 9 6 (Equivalence Relation and Order) 13 7 Zorn (Axiom of Choice, Zorn s Lemma) 14 8 (Set and Topology)
7. y fx, z gy z gfx dz dx dz dy dy dx. g f a g bf a b fa 7., chain ule Ω, D R n, R m a Ω, f : Ω R m, g : D R l, fω D, b fa, f a g b g f a g f a g bf a
9 203 6 7 WWW http://www.math.meiji.ac.jp/~mk/lectue/tahensuu-203/ 2 8 8 7. 7 7. y fx, z gy z gfx dz dx dz dy dy dx. g f a g bf a b fa 7., chain ule Ω, D R n, R m a Ω, f : Ω R m, g : D R l, fω D, b fa,
4 4 4 a b c d a b A c d A a da ad bce O E O n A n O ad bc a d n A n O 5 {a n } S n a k n a n + k S n a a n+ S n n S n n log x x {xy } x, y x + y 7 fx
4 4 5 4 I II III A B C, 5 7 I II A B,, 8, 9 I II A B O A,, Bb, b, Cc, c, c b c b b c c c OA BC P BC OP BC P AP BC n f n x xn e x! e n! n f n x f n x f n x f k x k 4 e > f n x dx k k! fx sin x cos x tan
New version (2.15.1) of Specview is now available Dismiss Windows Specview.bat set spv= Specview set jhome= JAVA (C:\Program Files\Java\jre<version>\
Specview VO 2012 2012/3/26 Specview Specview STSCI(Space Telescope SCience Institute) VO Specview Web page http://www.stsci.edu/resources/software hardware/specview http://specview.stsci.edu/javahelp/main.html
熊本県数学問題正解
00 y O x Typed by L A TEX ε ( ) (00 ) 5 4 4 ( ) http://www.ocn.ne.jp/ oboetene/plan/. ( ) (009 ) ( ).. http://www.ocn.ne.jp/ oboetene/plan/eng.html 8 i i..................................... ( )0... (
z f(z) f(z) x, y, u, v, r, θ r > 0 z = x + iy, f = u + iv C γ D f(z) f(z) D f(z) f(z) z, Rm z, z 1.1 z = x + iy = re iθ = r (cos θ + i sin θ) z = x iy
z fz fz x, y, u, v, r, θ r > z = x + iy, f = u + iv γ D fz fz D fz fz z, Rm z, z. z = x + iy = re iθ = r cos θ + i sin θ z = x iy = re iθ = r cos θ i sin θ x = z + z = Re z, y = z z = Im z i r = z = z
1 No.1 5 C 1 I III F 1 F 2 F 1 F 2 2 Φ 2 (t) = Φ 1 (t) Φ 1 (t t). = Φ 1(t) t = ( 1.5e 0.5t 2.4e 4t 2e 10t ) τ < 0 t > τ Φ 2 (t) < 0 lim t Φ 2 (t) = 0
1 No.1 5 C 1 I III F 1 F 2 F 1 F 2 2 Φ 2 (t) = Φ 1 (t) Φ 1 (t t). = Φ 1(t) t = ( 1.5e 0.5t 2.4e 4t 2e 10t ) τ < 0 t > τ Φ 2 (t) < 0 lim t Φ 2 (t) = 0 0 < t < τ I II 0 No.2 2 C x y x y > 0 x 0 x > b a dx
No δs δs = r + δr r = δr (3) δs δs = r r = δr + u(r + δr, t) u(r, t) (4) δr = (δx, δy, δz) u i (r + δr, t) u i (r, t) = u i x j δx j (5) δs 2
No.2 1 2 2 δs δs = r + δr r = δr (3) δs δs = r r = δr + u(r + δr, t) u(r, t) (4) δr = (δx, δy, δz) u i (r + δr, t) u i (r, t) = u i δx j (5) δs 2 = δx i δx i + 2 u i δx i δx j = δs 2 + 2s ij δx i δx j
II 2 II
II 2 II 2005 [email protected] 2005 4 1 1 2 5 2.1.................................... 5 2.2................................. 6 2.3............................. 6 2.4.................................
fx-3650P_fx-3950P_J
SA1109-E J fx-3650p fx-3950p http://edu.casio.jp RCA500002-001V04 AB2 Mode
最小二乗法とロバスト推定
はじめに 最小二乗法とロバスト推定 (M 推定 ) Maplesoft / サイバネットシステム ( 株 ) 最小二乗法は データフィッティングをはじめとしてデータ解析ではもっともよく用いられる手法のひとつです Maple では CurveFitting パッケージの LeastSquares コマンドや Statistics パッケージの Fit コマンド NonlinearFit コマンドなどを用いてデータに適合する数式モデルを求めることが可能です
programmingII2019-v01
II 2019 2Q A 6/11 6/18 6/25 7/2 7/9 7/16 7/23 B 6/12 6/19 6/24 7/3 7/10 7/17 7/24 x = 0 dv(t) dt = g Z t2 t 1 dv(t) dt dt = Z t2 t 1 gdt g v(t 2 ) = v(t 1 ) + g(t 2 t 1 ) v v(t) x g(t 2 t 1 ) t 1 t 2
LAN Copyright c Daikoku Manabu This tutorial is licensed under a Creative Commons Attribution 2.1 Japan License
LAN 2014 3 19 Copyright c 1993 2014 Daikoku Manabu This tutorial is licensed under a Creative Commons Attribution 2.1 Japan License. 1 2 1.1................................... 2 1.2.........................
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
2 1 Octave Octave Window M m.m Octave Window 1.2 octave:1> a = 1 a = 1 octave:2> b = 1.23 b = octave:3> c = 3; ; % octave:4> x = pi x =
1 1 Octave GNU Octave Matlab John W. Eaton 1992 2.0.16 2.1.35 Octave Matlab gnuplot Matlab Octave MATLAB [1] Octave [1] 2.7 Octave Matlab Octave Octave 2.1.35 2.5 2.0.16 Octave 1.1 Octave octave Octave
