Chapter 3 Mathematica Mathematica e a n = ( ) n b n = n 1! + 1 2! n! b n a n e 3/n b n e 2/n! b n a n b n M athematica Ma

Size: px
Start display at page:

Download "Chapter 3 Mathematica Mathematica e a n = ( ) n b n = n 1! + 1 2! n! b n a n e 3/n b n e 2/n! b n a n b n M athematica Ma"

Transcription

1 Mathematica Workbook Workbook Mathematica Mathematica A4 12 A

2 Chapter 3 Mathematica Mathematica e a n = ( ) n b n = n 1! + 1 2! n! b n a n e 3/n b n e 2/n! b n a n b n M athematica Mathematica { } {a, b, c} {{a, b}, {c, d}} {Sin[x], Cos[x], Tan[x]} [1] v1 v2 In[1]:= v1 = {a, b, c}; v2 = {p, q, r}; [2] v1 v2 In[2]:= v1 + v2

3 22 3 [3] In[3]:= 100*v1 [4] 1 : In[4]:= v1 + 1 [5] x : In[5]:= x - v1 [6] 3 In[6]:= v1^3 [7] 5 In[7]:= 5^v1 [8] In[8]:= Exp[v1] [9] In[9]:= v1^v2 [10] In[10]:= v1*v2 [11] In[11]:= v1/v2 [12] In[12]:= v1.v2 3.1 u = {1, 2, 3, 4, 5} x { 1 3 1, 2 3 2, 3 3 3, 4 3 4, }, { x, x 2 2!, x 3 3!, x 4 4!, x 5 } 5! n n! Factorial[n]

4 Range [13] Range {1, 2, 3, 4, 5} In[13]:= Range[5] [14] Range {4, 5,..., 10} In[14]:= Range[4, 10] [15] Range 4 x In[15]:= Range[4, 10, 0.7] Table [16] Table (square numbers) sq In[16]:= sq = Table[n^2, {n, 1, 10}] Table[..] n n^2 Table [17] [[ ]] sq 7 In[17]:= sq[[7]] [18] Length sq In[18]:= Length[sq] 3.2 (e ) Table e a n = ( ) n n 10 N an

5 ( ) Table x 1, x 2 1,, x ( ) mat = {m,a,t,h,e,m,a,t,i,c,a} tam Table (Hint tam n mat ) 3.3 [19] m1 *1 In[19]:= m1 = {{a, b, c}, {p, q, r}}; [20] MatrixForm m1 (matrix) In[20]:= m1 //MatrixForm MatrixForm[m1] * 2*3 [19] m1 [21] TableForm m1 (table) In[21]:= m1 //TableForm TableForm[m1] [22] Table In[22]:= m2 = Table[i + j, {i, 1, 4}, {j, 1, 5}] [23] TableForm *1 [1] v1 = {a, b, c} v2 = {p, q, r} m1 = {v1, v2} *2 Sin[x] x//sin TableForm MatrixForm *3 MatrixForm 2*m1 2 2*MatrixForm[m1] TableForm

6 In[23]:= m2 //TableForm m2 [22] {i, 1, 4} {j, 1, 5} [24] [[ ]] 2 5 In[24]:= m2[[2, 5]] 3.5 ( ) TableForm ( ) Mathematica Sum [25] Sum In[25]:= Sum[n^2, {n, 1, 10}] 10 n=1 n 2 [16] sq = Table[n^2, {n, 1, 10}] Table Sum [26] Mathematica 2 In[26]:= Sum[k^2, {k, 1, n}] [27] 1 + 1/ /3 2 + In[27]:= Sum[1/n^2, {n, 1, Infinity}] Infinity [28] 8 *4 *4 Sum[x^n/n!, {n, 0, Infinity}] Exp[x]

7 26 3 In[28]:= Sum[x^n/n!, {n, 0, 8}] [29] Product n=1 In[29]:= Product[2*n - 1, {n, 1, 10}] (2n 1) [30] 3.5 In[30]:= Sum[m * n, {m, 1, 9}, {n, 1, 9}] 3.7 ( ) e a n = (1) Sum b 5 ( ) n b n = n 1! + 1 2! n! (2) Table b n 10 bn (3) bn 3.2 an a n, a n e, b n, b n e x Abs[x] Sum 3.8 ( ) Mathematica (1). k + k 1 99 k=2 (2) , , ,... n 00 (3) m 1, 3, 5,..., 2m 1 2 m C 2 99

8 Mathematica (1) i 1 m j 1 n i + j 1 i m,1 j n (i + j) (2) i, j, k 1 n i + j + k 1 i,j,k n (i + j + k) (3) 4 8 n S n S 99 S 100 S 1 S 100 S n 92 (Hint: S n 1 + log 10 S n x Floor[x] ) (4)

9 Chapter (dynamical system) a n+1 = 2a n ; a 0 = 1. a n = 2 n f(x) = 2x a n+1 = f(a n ) a 1 = f(a 0 ), a 2 = f(f(a 0 )) a 3 = f(f(f(a 0 ))) f a *1 {a n } R 0, ±1, ±2, x 1 f(x) = 2x *1 3

10 R f (dynamical system) *2 x 0 R x 0 f f(x 0 ) f f(f(x 0 )) f x 0 f 2x 0 f 2 2 x 0 f x 0 (orbit) {a n } a 0 = 1 f f f f f n f n {f n (x 0 )} *3 f f(x) 2 f 10 (x) x 1024 Mathematica 14.2 p y = f(x) p f(p) f(f(p)) f(f(f(p)))... y = f(x) xy (p, p) (f(p), f(p)) Step 0 y = f(x) y = x Step 1 (p, p) y = f(x) (p, f(p)) Step 2 (p, f(p)) y = x (f(p), f(p)) Step 1 2 y = x p 14.1 (graphical analysis) web diagram f(x) = 2x x 0 = ±1/ Mathematica ListLinePlot Show *2 (discrete dynamical system) *3 f n (x) f f f f(x) f(x) n {f(x)} n

11 y y = x f(p) p y = f(x) O p f(p) x 14.1 f(x) (p, p) (f 2 (p).f 2 (p)) f(x) = 2x x 0 = 1/4 x 0 = 1/4 [1] Step 0 y = f(x) = 2x y = x In[1]:= f[x_] := 2 x; gr = Plot[{f[x], x}, {x, -2, 8}, AspectRatio -> Automatic] [2] Step 1 Step 2 (p, p) (p, f(p)) (f(p), f(p)) In[2]:= tateyoko[p_] := {{p, f[p]}, {f[p], f[p]}}; [3] p n

12 In[3]:= weblist[p_, n_] := (w = {{p, p}}; x = p; Do[(w = Join[w, tateyoko[x]]; x = f[x]), {i, 1, n}]; w); [4] In[4]:= weblist[1/2, 3] [5] In[5]:= webdiag[p_, n_] := ListLinePlot[weblist[p, n], PlotStyle -> Thick, AspectRatio -> Automatic, PlotRange -> All]; PlotRange -> All [6] In[6]:= webdiag[1/2, 3] [7] Show In[7]:= Show[gr, webgr[1/2, 3]] [8] Manipulate p n In[8]:= Manipulate[Show[gr, webgr[p, n]], {{p, 1}, -1, 4}, {{n, 3}, 0, 10, 1}] n 14.1 ( ) 2 g a (x) = ax(1 x) 0 a 4 [0, 1] [0, 1] Manipulate a 14.2 ( ) 1 (1)

13 (2) y = x 14.3 f(x) f(x) = 0 (Newton s method) (1) y = f(x) (2) x 0 (x 0, f(x 0 )) (3) x (x 1, 0) x 0 f(x) = 0 α x 1 α *4 (x 1, f(x 1 )) x 1 = x 0 f(x 0 )/f (x 0 ) N f (x) := x f(x) f (x) N f x 0 N f x1 = N f (x 0 ) N f f x 2 = N f (x 0 ) α N f f 14.3 *4 f C 2

14 [9] f(x) = x f In[9]:= f[x_] = x^2-2; df[x_] = D[f[x], x]; newton[x_] = x - f[x]/df[x] N f (x) = x x [10] NestList x 0 = 1 x 0, x 1,..., x 5 In[10]:= app = NestList[newton, 1, 5] [11] 20 In[11]:= N[app, 20] //TableForm TableForm [12] Sqrt[2] *5 In[12]:= N[{app, app - Sqrt[2]}, 20] //Transpose//TableForm [13] In[13]:= seg[p_] := {{p, f[p]}, {newton[p], 0}}; seglist[p_, n_] := (w = {{p, 0}}; x = p; *5 Transpose[N[{app, app - Sqrt[2]}, 20]] //TableForm TableForm[N[{app, app - Sqrt[2]}, 20], TableDirections -> Row]

15 Do[ (w = Join[w, seg[x]]; x = newton[x]), {i, 1, n}]; w); seggr[p_, n_] := ListLinePlot[seglist[p, n], PlotRange -> All, PlotStyle -> Thick] gr = Plot[f[x], {x, -5, 5}]; Manipulate[ Show[gr, seggr[p, n]], {{p, 5}, -5, 5}, {{n, 3}, 1, 10, 1}] p 2 p 2 * ( ) 3 g a (x) = x 3 3x + a (a > 0) Manipulate a a g a (x) = 0 a p n C f(z) 1 (complex dynamics) f(z) f c (z) = z 2 + c (c C) 2 f c c C *6 p 0 f

16 f c z f n c (z) (n ) *7 B c := {z C f n c (z) (n )} c f c (basin at infinity) B c K c := C B c (filled Julia set) B c K c f c (Julia set) J c J c Mathematica * 8 c 2 z C fc k (z) 2 k fc k+n (z) n B c (k) := { z C f k c (z) 2 } B c (1) B c (2) B c = k 1 B c(k) k B c (k) B c k = 50 [14] c = i B c K c f c *7 z 2 + c f c (z) 2 z f(z) = z 2 + c z z c (2+ c ) z c 2 z + c ( z 1) 2 z + c (1+ c ) 2 z. f n (z) 2 n z (n ) z max{2, c } f n (z) (n ) *8 Mathematica C Java Mathematica C

17 In[14]:= c = I; f[z_] := z^2 + c; [15] B c In[15]:= col[z_] := (p = z; k = 0; While[(Abs[p] < 2.0) && (k < 50), (p = f[p]; k = k + 1)]; k) While f c k (z) < 2 k < 50 (...) p = f[p]; k = k + 1 k f k c (z) 2 k 49 k = 50 f k c (z) < 2 col z B c 50 z K c [16] {x + yi 2 x 2, 2 y 2} d = 0.01 Table col In[16]:= d = 0.01; tab = Table[col[x + y I], {x, -2, 2, d}, {y, -2, 2, d}]; * 9 [17] tab ArrayPlot complexap (complex Array Plot ) 14.4 In[17]:= complexap[t_] := ArrayPlot[Reverse[Transpose[t]]]; * = col col 50 d

18 complexap d col tab Transpose Reverse ArrayPlot [18] tab complexap In[18]:= complexap[tab] col B c K c 14.4 ( ) B c c f c z = 0 f c(z) = 0 z = 0 f c z = 0 0 B c c H := {c C fc n (0) (n )} M := C H

19 ColorFunction "LightTemperatureMap" "MintColors", "WatermelonColors" "RedBlueTones" c = 1 c = i, i c = 0.25.

20 (the Mandelbrot set) * ( ) complexap2 M. f(z) = z 3 1 = 0 z 0 N f (z) N f (z) f f, df, newton d = 0.01; f[x_] = x^3-1; df[x_] = D[f[x], x] newton[x_] := x - f[x]/df[x]; coln[z_] := (p = z; k = 0; While[(Abs[p^3-1] > 0.1) && (k < 50), (p = newton[p]; k = k + 1)]; k) tabn = Table[colN[x + y I], {x, -2, 2, d}, {y, -2, 2, d}]; complexap2[tabn] *10 K c c

21 (1) R. Devaney 2 (2) 2

Chapter (dynamical system) a n+1 = 2a n ; a 0 = 1. a n = 2 n f(x) = 2x a n+1 = f(a n ) a 1 = f(a 0 ), a 2 = f(f(a 0 )) a 3 = f(f(f(a

Chapter (dynamical system) a n+1 = 2a n ; a 0 = 1. a n = 2 n f(x) = 2x a n+1 = f(a n ) a 1 = f(a 0 ), a 2 = f(f(a 0 )) a 3 = f(f(f(a Chapter 14 3 1 1 13 14.1 (dynamical system) a n+1 = 2a n ; a 0 = 1. a n = 2 n f(x) = 2x a n+1 = f(a n ) a 1 = f(a 0 ), a 2 = f(f(a 0 )) a 3 = f(f(f(a 0 ))) f a 0 1 2 14 3 *1 {a n } R 0, ±1, ±2, x 1 f(x)

More information

Chapter 3 Mathematica Mathematica e ( a n = ) n b n = n 1! + 1 2! n! b n a n e 3/n b n e 2/n! b n a n b n Mathematica Mat

Chapter 3 Mathematica Mathematica e ( a n = ) n b n = n 1! + 1 2! n! b n a n e 3/n b n e 2/n! b n a n b n Mathematica Mat Chapter 3 Mathematica Mathematica e ( a n = 1 + 1 ) n b n = 1 + 1 n 1! + 1 2! + + 1 n! b n a n e 3/n b n e 2/n! b n a n b n Mathematica 10 3.7 3.1 Mathematica { } 26 3 {a, b, c} {{a, b}, {c, d}} {Sin[x],

More information

agora04.dvi

agora04.dvi Workbook E-mail: kawahira@math.nagoya-u.ac.jp 2004 8 9, 10, 11 1 2 1 2 a n+1 = pa n + q x = px + q a n better 2 a n+1 = aan+b ca n+d 1 (a, b, c, d) =(p, q, 0, 1) 1 = 0 3 2 2 2 f(z) =z 2 + c a n+1 = a 2

More information

GraphicsWithPlotFull.nb Plot[{( 1), ( ),...}, {( ), ( ), ( )}] Plot Plot Cos x Sin x, x, 5 Π, 5 Π, AxesLabel x, y x 1 Plot AxesLabel

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

More information

I A A441 : April 15, 2013 Version : 1.1 I Kawahira, Tomoki TA (Shigehiro, Yoshida )

I A A441 : April 15, 2013 Version : 1.1 I   Kawahira, Tomoki TA (Shigehiro, Yoshida ) I013 00-1 : April 15, 013 Version : 1.1 I Kawahira, Tomoki TA (Shigehiro, Yoshida) http://www.math.nagoya-u.ac.jp/~kawahira/courses/13s-tenbou.html pdf * 4 15 4 5 13 e πi = 1 5 0 5 7 3 4 6 3 6 10 6 17

More information

I z n+1 = zn 2 + c (c ) c pd L.V. K. 2

I z n+1 = zn 2 + c (c ) c   pd L.V. K. 2 I 2012 00-1 I : October 1, 2012 Version : 1.1 3. 10 1 10 15 10 22 1: 10 29 11 5 11 12 11 19 2: 11 26 12 3 12 10 12 17 3: 12 25 1 9 1 21 3 1 I 2012 00-2 z n+1 = zn 2 + c (c ) c http://www.math.nagoya-u.ac.jp/~kawahira/courses/12w-tenbou.html

More information

ContourPlot[{x^+y^==,(x-)^+y^==}, {x,-,}, {y,-,}, AspectRatio -> Automatic].5. ContourPlot Plot AspectRatio->Automatic.. x a + y = ( ). b ContourPlot[

ContourPlot[{x^+y^==,(x-)^+y^==}, {x,-,}, {y,-,}, AspectRatio -> Automatic].5. ContourPlot Plot AspectRatio->Automatic.. x a + y = ( ). b ContourPlot[ 5 3. Mathematica., : f(x) sin x Plot f(x, y) = x + y = ContourPlot f(x, y) > x 4 + (x y ) > RegionPlot (x(t), y(t)) (t sin t, cos t) ParametricPlot r = f(θ) r = sin 4θ PolarPlot.,. 5. x + y = (x, y). x,

More information

OK (S) vncviewer UNIX EDS vncviewer : VNC server: eds.efc.sec.eng.shizuoka.ac.jp:51 OK 2

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

More information

untitled

untitled R R R 2 R 2 R R R R R R R R R R 3 R R 4 R C JAVA 5 R EXCEL GUI 6 R SAS SPSS 7 R 8 R EXCEL GUI R GUI RR Commander 9 R Auckland Ross Ihaka Robert Gentleman Fred Hutchinson Cancer Research Center AT&T Lucent

More information

untitled

untitled COM 6 20040920 (Mathematica-1) iijima COM 6 Mathematica (iijima@ae.keio.ac.jp) 1 COM 6 20040920 (Mathematica-1) iijima 1. Mathematica 1.1 1.2 1.3 1.4 2 COM 6 20040920 (Mathematica-1) iijima 1.1 3 COM 6

More information

sin x

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..........................

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

ContourPlot[{x^+y^==,(x-)^+y^==}, {x,-,}, {y,-,}, AspectRatio -> Automatic].. ContourPlot Plot AspectRatio->Automatic.. x a + y = ( ). b ContourPlot[x

ContourPlot[{x^+y^==,(x-)^+y^==}, {x,-,}, {y,-,}, AspectRatio -> Automatic].. ContourPlot Plot AspectRatio->Automatic.. x a + y = ( ). b ContourPlot[x 3. Mathematica., : f(x) sin x Plot f(x, y) = x + y = ContourPlot f(x, y) > x 4 + (x y ) > RegionPlot (x(t), y(t)) (t sin t, cos t) ParametricPlot r = f(θ) r = sin 4θ PolarPlot.,.. x + y = (x, y). x, y.

More information

+,-,*,/,^ Mathematica 2Pi * + 2; (Enter) Maple + 2 (Shift+Enter) Mathematica 3 Maple abs(x) Mathematica Abs[x] : % %+ : ^ *, / +, - 23^4*2 + 4/2; (Mat

+,-,*,/,^ 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).

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

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

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

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

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

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

chapt5pdf.p65

chapt5pdf.p65 Chapter 5 5 Chapter 229 ORIGIN6.0 5 Chapter - 01 3D 230 Chapter 5 231 ORIGIN6.0 232 Chapter 5 233 ORIGIN6.0 234 Chapter 5 5 Chapter - 02 235 ORIGIN6.0 236 Chapter 5 237 ORIGIN6.0 238 Chapter 5 239 ORIGIN6.0

More information

untitled

untitled R (1) R & R 1. R Ver. 2.15.3 Windows R Mac OS X R Linux R 2. R R 2 Windows R CRAN http://cran.md.tsukuba.ac.jp/bin/windows/base/ R-2.15.3-win.exe http://cran.md.tsukuba.ac.jp/bin/windows/base/old/ 3 R-2.15.3-win.exe

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

y = x 4 y = x 8 3 y = x 4 y = x 3. 4 f(x) = x y = f(x) 4 x =,, 3, 4, 5 5 f(x) f() = f() = 3 f(3) = 3 4 f(4) = 4 *3 S S = f() + f() + f(3) + f(4) () *4

y = x 4 y = x 8 3 y = x 4 y = x 3. 4 f(x) = x y = f(x) 4 x =,, 3, 4, 5 5 f(x) f() = f() = 3 f(3) = 3 4 f(4) = 4 *3 S S = f() + f() + f(3) + f(4) () *4 Simpson H4 BioS. Simpson 3 3 0 x. β α (β α)3 (x α)(x β)dx = () * * x * * ɛ δ y = x 4 y = x 8 3 y = x 4 y = x 3. 4 f(x) = x y = f(x) 4 x =,, 3, 4, 5 5 f(x) f() = f() = 3 f(3) = 3 4 f(4) = 4 *3 S S = f()

More information

2S III IV K A4 12:00-13:30 Cafe David 1 2 TA 1 appointment Cafe David K2-2S04-00 : C

2S III IV K A4 12:00-13:30 Cafe David 1 2 TA 1  appointment Cafe David K2-2S04-00 : C 2S III IV K200 : April 16, 2004 Version : 1.1 TA M2 TA 1 10 2 n 1 ɛ-δ 5 15 20 20 45 K2-2S04-00 : C 2S III IV K200 60 60 74 75 89 90 1 email 3 4 30 A4 12:00-13:30 Cafe David 1 2 TA 1 email appointment Cafe

More information

2000年度『数学展望 I』講義録

2000年度『数学展望 I』講義録 2000 I I IV I II 2000 I I IV I-IV. i ii 3.10 (http://www.math.nagoya-u.ac.jp/ kanai/) 2000 A....1 B....4 C....10 D....13 E....17 Brouwer A....21 B....26 C....33 D....39 E. Sperner...45 F....48 A....53

More information

(2000 )

(2000 ) (000) < > = = = (BC 67» BC 1) 3.14 10 (= ) 18 ( 00 ) ( ¼"½ '"½ &) ¼ 18 ¼ 0 ¼ =3:141596535897933846 ¼ 1 5cm ` ¼ = ` 5 = ` 10 () ` =10¼ (cm) (1) 3cm () r () () (1) r () r 1 4 (3) r, 60 ± 1 < > µ AB ` µ ±

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

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

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

More information

橡00扉.PDF

橡00扉.PDF SQ2.1 SQ2.2 ( ) 19971998 1981-97

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 (1) ( i ) 60 (ii) 75 (iii) 315 (2) π ( i ) (ii) π (iii) 7 12 π ( (3) r, AOB = θ 0 < θ < π ) OAB A 2 OB P ( AB ) < ( AP ) (4) 0 < θ < π 2 sin θ

1 (1) ( i ) 60 (ii) 75 (iii) 315 (2) π ( i ) (ii) π (iii) 7 12 π ( (3) r, AOB = θ 0 < θ < π ) OAB A 2 OB P ( AB ) < ( AP ) (4) 0 < θ < π 2 sin θ 1 (1) ( i ) 60 (ii) 75 (iii) 15 () ( i ) (ii) 4 (iii) 7 1 ( () r, AOB = θ 0 < θ < ) OAB A OB P ( AB ) < ( AP ) (4) 0 < θ < sin θ < θ < tan θ 0 x, 0 y (1) sin x = sin y (x, y) () cos x cos y (x, y) 1 c

More information

Copyright c 2006 Zhenjiang Hu, All Right Reserved.

Copyright c 2006 Zhenjiang Hu, All Right Reserved. 1 2006 Copyright c 2006 Zhenjiang Hu, All Right Reserved. 2 ( ) 3 (T 1, T 2 ) T 1 T 2 (17.3, 3) :: (Float, Int) (3, 6) :: (Int, Int) (True, (+)) :: (Bool, Int Int Int) 4 (, ) (, ) :: a b (a, b) (,) x y

More information

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

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 = µ

More information

1 = = = (set) (element) a A a A a A a A a A {2, 5, (0, 1)}, [ 1, 1] = {x; 1 x 1}. (proposition) A = {x; P (x)} P (x) x x a A a A Remark. (i) {2, 0, 0,

1 = = = (set) (element) a A a A a A a A a A {2, 5, (0, 1)}, [ 1, 1] = {x; 1 x 1}. (proposition) A = {x; P (x)} P (x) x x a A a A Remark. (i) {2, 0, 0, 2005 4 1 1 2 2 6 3 8 4 11 5 14 6 18 7 20 8 22 9 24 10 26 11 27 http://matcmadison.edu/alehnen/weblogic/logset.htm 1 1 = = = (set) (element) a A a A a A a A a A {2, 5, (0, 1)}, [ 1, 1] = {x; 1 x 1}. (proposition)

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

<4D F736F F D B B83578B6594BB2D834A836F815B82D082C88C60202E646F63>

<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.

More information

1 matplotlib matplotlib Python matplotlib numpy matplotlib Installing A 2 pyplot matplotlib 1 matplotlib.pyplot matplotlib.pyplot plt import import nu

1 matplotlib matplotlib Python matplotlib numpy matplotlib Installing A 2 pyplot matplotlib 1 matplotlib.pyplot matplotlib.pyplot plt import import nu Python Matplotlib 2016 ver.0.06 matplotlib python 2 3 (ffmpeg ) Excel matplotlib matplotlib doc PDF 2,800 python matplotlib matplotlib matplotlib Gallery Matplotlib Examples 1 matplotlib 2 2 pyplot 2 2.1

More information

ac b 0 r = r a 0 b 0 y 0 cy 0 ac b 0 f(, y) = a + by + cy ac b = 0 1 ac b = 0 z = f(, y) f(, y) 1 a, b, c 0 a 0 f(, y) = a ( ( + b ) ) a y ac b + a y

ac b 0 r = r a 0 b 0 y 0 cy 0 ac b 0 f(, y) = a + by + cy ac b = 0 1 ac b = 0 z = f(, y) f(, y) 1 a, b, c 0 a 0 f(, y) = a ( ( + b ) ) a y ac b + a y 01 4 17 1.. y f(, y) = a + by + cy + p + qy + r a, b, c 0 y b b 1 z = f(, y) z = a + by + cy z = p + qy + r (, y) z = p + qy + r 1 y = + + 1 y = y = + 1 6 + + 1 ( = + 1 ) + 7 4 16 y y y + = O O O y = y

More information

/Users/yamada/Documents/webPage/public_html/kkk/10 線形代数

/Users/yamada/Documents/webPage/public_html/kkk/10 線形代数 8 Mathematica In[]:= 8, 2, 3< Out[]= 8, 2, 3< In[2]:= 88, 2, 3

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

ランダムウォークの境界条件・偏微分方程式の数値計算

ランダムウォークの境界条件・偏微分方程式の数値計算 B L06(2018-05-22 Tue) : Time-stamp: 2018-05-22 Tue 21:53 JST hig,, 2, multiply transf http://hig3.net L06 B(2018) 1 / 38 L05-Q1 Quiz : 1 M λ 1 = 1 u 1 ( ). M u 1 = u 1, u 1 = ( 3 4 ) s (s 0)., u 1 = 1

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

FX ) 2

FX ) 2 (FX) 1 1 2009 12 12 13 2009 1 FX ) 2 1 (FX) 2 1 2 1 2 3 2010 8 FX 1998 1 FX FX 4 1 1 (FX) () () 1998 4 1 100 120 1 100 120 120 100 20 FX 100 100 100 1 100 100 100 1 100 1 100 100 1 100 101 101 100 100

More information

1 I

1 I 1 I 3 1 1.1 R x, y R x + y R x y R x, y, z, a, b R (1.1) (x + y) + z = x + (y + z) (1.2) x + y = y + x (1.3) 0 R : 0 + x = x x R (1.4) x R, 1 ( x) R : x + ( x) = 0 (1.5) (x y) z = x (y z) (1.6) x y =

More information

matrix util program bstat gram schmidt

matrix util program bstat gram schmidt matrix util 14 12 3 1 2 2 program 2 2.1 bstat............................... 3 2.2 gram schmidt........................... 3 2.3 matadd............................... 3 2.4 matarith.............................

More information

1 1 Gnuplot gnuplot Windows gnuplot gp443win32.zip gnuplot binary, contrib, demo, docs, license 5 BUGS, Chang

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

More information

2 1 Mathematica Mathematica Mathematica Mathematica Windows Mac *1 1.1 1.1 Mathematica 9-1 Expand[(x + y)^7] (x + y) 7 x y Shift *1 Mathematica 1.12

2 1 Mathematica Mathematica Mathematica Mathematica Windows Mac *1 1.1 1.1 Mathematica 9-1 Expand[(x + y)^7] (x + y) 7 x y Shift *1 Mathematica 1.12 Chapter 1 Mathematica Mathematica Mathematica 1.1 Mathematica Mathematica (Wolfram Research) Windows, Mac OS X, Linux OS Mathematica 88 2012 11 9 2 Mathematica 2 1.2 Mathematica Mathematica 2 1 Mathematica

More information

( ) x y f(x, y) = ax

( ) x y f(x, y) = ax 013 4 16 5 54 (03-5465-7040) nkiyono@mail.ecc.u-okyo.ac.jp hp://lecure.ecc.u-okyo.ac.jp/~nkiyono/inde.hml 1.. y f(, y) = a + by + cy + p + qy + r a, b, c 0 y b b 1 z = f(, y) z = a + by + cy z = p + qy

More information

6. Euler x

6. Euler x ...............................................................................3......................................... 4.4................................... 5.5......................................

More information

1. A0 A B A0 A : A1,...,A5 B : B1,...,B

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 f : A B 4 (i) f (ii) f (iii) C 2 g, h: C A f g = f h g = h (iv) C 2 g, h: B C g f = h f g = h 4 (1) (i) (iii) (2) (iii) (i) (3) (ii) (iv) (4)

More information

1 Mathematica 1 ê Mathematica Esc div Esc BasicInput 1.1 Ctrl + / Ctrl + / Ctrl / Mathematica N π D

1 Mathematica 1 ê Mathematica Esc div Esc BasicInput 1.1 Ctrl + / Ctrl + / Ctrl / Mathematica N π D 1 Mathematica 1 ê 1 3 0.3333333 Mathematica 1 3 1 3 Esc div Esc BasicInput 1.1 Ctrl + / Ctrl + / Ctrl / Mathematica N π 100 N@Pi, 100D 3.141592653589793238462643383279502884197169399 3751058209749445923078164062862089986280348253

More information

5.. z = f(x, y) y y = b f x x g(x) f(x, b) g x ( ) A = lim h 0 g(a + h) g(a) h g(x) a A = g (a) = f x (a, b)

5.. z = f(x, y) y y = b f x x g(x) f(x, b) g x ( ) A = lim h 0 g(a + h) g(a) h g(x) a A = g (a) = f x (a, b) 5 partial differentiation (total) differentiation 5. z = f(x, y) (a, b) A = lim h 0 f(a + h, b) f(a, b) h............................................................... ( ) f(x, y) (a, b) x A (a, b) x

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

卓球の試合への興味度に関する確率論的分析

卓球の試合への興味度に関する確率論的分析 17 i 1 1 1.1..................................... 1 1.2....................................... 1 1.3..................................... 2 2 5 2.1................................ 5 2.2 (1).........................

More information

4 4 θ X θ P θ 4. 0, 405 P 0 X 405 X P 4. () 60 () 45 () 40 (4) 765 (5) 40 B 60 0 P = 90, = ( ) = X

4 4 θ X θ P θ 4. 0, 405 P 0 X 405 X P 4. () 60 () 45 () 40 (4) 765 (5) 40 B 60 0 P = 90, = ( ) = X 4 4. 4.. 5 5 0 A P P P X X X X +45 45 0 45 60 70 X 60 X 0 P P 4 4 θ X θ P θ 4. 0, 405 P 0 X 405 X P 4. () 60 () 45 () 40 (4) 765 (5) 40 B 60 0 P 0 0 + 60 = 90, 0 + 60 = 750 0 + 60 ( ) = 0 90 750 0 90 0

More information

ParametricPlot [5] In[5]:= Out[5]= m1.v1 axby, cxdy [6] pr In[6]:= Out[6]= pr = m1.m 3ab, ab,3cd, cd [7] In[7]:= Out[7]//MatrixForm= pr //Matri

ParametricPlot [5] In[5]:= Out[5]= m1.v1 axby, cxdy [6] pr In[6]:= Out[6]= pr = m1.m 3ab, ab,3cd, cd [7] In[7]:= Out[7]//MatrixForm= pr //Matri Chapter 6 1 ParametricPlot 3 ParametricPlot ParametricPlot3D 6.1 [1] *1 In[1]:= v1 = {x, y}; v = {z, w}; [] In[]:= m1 = {{a, b}, {c, d}}; m = {{3, }, {1, }}; [3] 3 3.3 In[3]:= Out[3]//MatrixForm= [] m1

More information

ax 2 + bx + c = n 8 (n ) a n x n + a n 1 x n a 1 x + a 0 = 0 ( a n, a n 1,, a 1, a 0 a n 0) n n ( ) ( ) ax 3 + bx 2 + cx + d = 0 4

ax 2 + bx + c = n 8 (n ) a n x n + a n 1 x n a 1 x + a 0 = 0 ( a n, a n 1,, a 1, a 0 a n 0) n n ( ) ( ) ax 3 + bx 2 + cx + d = 0 4 20 20.0 ( ) 8 y = ax 2 + bx + c 443 ax 2 + bx + c = 0 20.1 20.1.1 n 8 (n ) a n x n + a n 1 x n 1 + + a 1 x + a 0 = 0 ( a n, a n 1,, a 1, a 0 a n 0) n n ( ) ( ) ax 3 + bx 2 + cx + d = 0 444 ( a, b, c, d

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

gnuplot.dvi

gnuplot.dvi gnuplot gnuplot 1 gnuplot exit 2 10 10 2.1 2 plot x plot sin(x) plot [-20:20] sin(x) plot [-20:20][0.5:1] sin(x), x, cos(x) + - * / ** 5 ** plot 2**x y =2 x sin(x) cos(x) exp(x) e x abs(x) log(x) log10(x)

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

Appendix A BASIC BASIC Beginner s All-purpose Symbolic Instruction Code FORTRAN COBOL C JAVA PASCAL (NEC N88-BASIC Windows BASIC (1) (2) ( ) BASIC BAS

Appendix A BASIC BASIC Beginner s All-purpose Symbolic Instruction Code FORTRAN COBOL C JAVA PASCAL (NEC N88-BASIC Windows BASIC (1) (2) ( ) BASIC BAS Appendix A BASIC BASIC Beginner s All-purpose Symbolic Instruction Code FORTRAN COBOL C JAVA PASCAL (NEC N88-BASIC Windows BASIC (1 (2 ( BASIC BASIC download TUTORIAL.PDF http://hp.vector.co.jp/authors/va008683/

More information

MacOSX印刷ガイド

MacOSX印刷ガイド 3 CHAPTER 3-1 3-2 3-3 1 2 3 3-4 4 5 6 3-5 1 2 3 4 3-6 5 6 3-7 7 8 3-8 1 2 3 4 3-9 5 6 3-10 7 1 2 3 4 3-11 5 6 3-12 7 8 9 3-13 10 3-14 1 2 3-15 3 4 1 2 3-16 3 4 5 3-17 1 2 3 4 3-18 1 2 3 4 3-19 5 6 7 8

More information

荳也阜轣ス螳ウ蝣ア蜻・indd

荳也阜轣ス螳ウ蝣ア蜻・indd 1 2 3 CHAPTER 1 4 CHAPTER 1 5 6CHAPTER 1 CHAPTER 1 7 8CHAPTER 1 CHAPTER 2 9 10CHAPTER 2 CHAPTER 2 11 12 CHAPTER 2 13 14CHAPTER 3 CHAPTER 3 15 16CHAPTER 3 CHAPTER 3 17 18 CHAPTER 4 19 20CHAPTER 4 CHAPTER

More information

Morse ( ) 2014

Morse ( ) 2014 Morse ( ) 2014 1 1 Morse 1 1.1 Morse................................ 1 1.2 Morse.............................. 7 2 12 2.1....................... 12 2.2.................. 13 2.3 Smale..............................

More information

Exercise in Mathematics IIB IIB (Seiji HIRABA) 0.1, =,,,. n R n, B(a; δ) = B δ (a) or U δ (a) = U(a;, δ) δ-. R n,,,, ;,,, ;,,. (S, O),,,,,,,, 1 C I 2

Exercise in Mathematics IIB IIB (Seiji HIRABA) 0.1, =,,,. n R n, B(a; δ) = B δ (a) or U δ (a) = U(a;, δ) δ-. R n,,,, ;,,, ;,,. (S, O),,,,,,,, 1 C I 2 Exercise in Mathematics IIB IIB (Seiji HIRABA) 0.1, =,,,. n R n, B(a; δ) = B δ (a) or U δ (a) = U(a;, δ) δ-. R n,,,, ;,,, ;,,. (S, O),,,,,,,, 1 C I 2 C II,,,,,,,,,,, 0.2. 1 (Connectivity) 3 2 (Compactness)

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

1 28 6 12 7 1 7.1...................................... 2 7.1.1............................... 2 7.1.2........................... 2 7.2...................................... 3 7.3...................................

More information

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

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

More information

としてもよいし,* を省略し, その代わりにスペースを空けてもよい. In[5]:= 2 3 Out[5]= 6 数値計算 厳密な代数計算 整数および有理数については, 厳密な計算がなされます. In[6]:= Out[6]= In[7]:= Out[7]= 2^

としてもよいし,* を省略し, その代わりにスペースを空けてもよい. In[5]:= 2 3 Out[5]= 6 数値計算 厳密な代数計算 整数および有理数については, 厳密な計算がなされます. In[6]:= Out[6]= In[7]:= Out[7]= 2^ Mathematica 入門 はじめに Mathematica は極めて高度かつ有用な機能を有する研究支援統合ソフトウェアです. 理工系学生にとって ( それどころか研究者にとっても ) 非常に便利なツールですから, 基本的な操作方法に慣れておくと, いざというときにとても重宝します. 入力方法 キーボードからの入力 Mathematica では, 数式はすべてキーボードから入力できるようになっています.

More information

pdf

pdf http://www.ns.kogakuin.ac.jp/~ft13389/lecture/physics1a2b/ pdf I 1 1 1.1 ( ) 1. 30 m µm 2. 20 cm km 3. 10 m 2 cm 2 4. 5 cm 3 km 3 5. 1 6. 1 7. 1 1.2 ( ) 1. 1 m + 10 cm 2. 1 hr + 6400 sec 3. 3.0 10 5 kg

More information

[ ] x f(x) F = f(x) F(x) f(x) f(x) f(x)dx A p.2/29

[ ] x f(x) F = f(x) F(x) f(x) f(x) f(x)dx A p.2/29 A p./29 [ ] x f(x) F = f(x) F(x) f(x) f(x) f(x)dx A p.2/29 [ ] x f(x) F = f(x) F(x) f(x) f(x) f(x)dx [ ] F(x) f(x) C F(x) + C f(x) A p.2/29 [ ] x f(x) F = f(x) F(x) f(x) f(x) f(x)dx [ ] F(x) f(x) C F(x)

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

90 0 4

90 0 4 90 0 4 6 4 GR 4 7 0 5 8 6 9 0 4 7 00 0 5 8 0 6 9 4 7 0 5 8 6 9 0 4 7 00 0 5 8 0 6 9 4 7 0 5 8 6 9 0 4 7 00 0 5 8 0 6 9 0 0 4 5 6 7 0 4 6 4 5 7 5 6 7 4 5 6 4 5 6 7 4 5 7 4 5 6 7 8 9 0 4 5 6 7 5 4 4

More information

P072-076.indd

P072-076.indd 3 STEP0 STEP1 STEP2 STEP3 STEP4 072 3STEP4 STEP3 STEP2 STEP1 STEP0 073 3 STEP0 STEP1 STEP2 STEP3 STEP4 074 3STEP4 STEP3 STEP2 STEP1 STEP0 075 3 STEP0 STEP1 STEP2 STEP3 STEP4 076 3STEP4 STEP3 STEP2 STEP1

More information

STEP1 STEP3 STEP2 STEP4 STEP6 STEP5 STEP7 10,000,000 2,060 38 0 0 0 1978 4 1 2015 9 30 15,000,000 2,060 38 0 0 0 197941 2016930 10,000,000 2,060 38 0 0 0 197941 2016930 3 000 000 0 0 0 600 15

More information

1

1 1 2 3 4 5 6 7 8 9 0 1 2 6 3 1 2 3 4 5 6 7 8 9 0 5 4 STEP 02 STEP 01 STEP 03 STEP 04 1F 1F 2F 2F 2F 1F 1 2 3 4 5 http://smarthouse-center.org/sdk/ http://smarthouse-center.org/inquiries/ http://sh-center.org/

More information

1. A0 A B A0 A : A1,...,A5 B : B1,...,B12 2. 5 3. 4. 5. A0 (1) A, B A B f K K A ϕ 1, ϕ 2 f ϕ 1 = f ϕ 2 ϕ 1 = ϕ 2 (2) N A 1, A 2, A 3,... N A n X N n X N, A n N n=1 1 A1 d (d 2) A (, k A k = O), A O. f

More information

.1 z = e x +xy y z y 1 1 x 0 1 z x y α β γ z = αx + βy + γ (.1) ax + by + cz = d (.1') a, b, c, d x-y-z (a, b, c). x-y-z 3 (0,

.1 z = e x +xy y z y 1 1 x 0 1 z x y α β γ z = αx + βy + γ (.1) ax + by + cz = d (.1') a, b, c, d x-y-z (a, b, c). x-y-z 3 (0, .1.1 Y K L Y = K 1 3 L 3 L K K (K + ) 1 1 3 L 3 K 3 L 3 K 0 (K + K) 1 3 L 3 K 1 3 L 3 lim K 0 K = L (K + K) 1 3 K 1 3 3 lim K 0 K = 1 3 K 3 L 3 z = f(x, y) x y z x-y-z.1 z = e x +xy y 3 x-y ( ) z 0 f(x,

More information