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

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 Mathematica Mat"

Transcription

1 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 Mathematica { }

2 26 3 {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 Out[2]= a p, b q, c r [3] In[3]:= 100*v1 Out[3]= 100a, 100b, 100c [4] 1 : In[4]:= v1 + 1 Out[4]= 1 a, 1 b, 1 c [5] x : In[5]:= x - v1 Out[5]= a x, b x, c x [6] 3 In[6]:= v1^3 Out[6]= a 3, b 3, c 3 [7] 5 In[7]:= 5^v1 Out[7]= 5 a, 5 b, 5 c [8] In[8]:= Exp[v1] Out[8]= a, b, c [9] In[9]:= v1^v2 Out[9]= a p, b q, c r [10] In[10]:= v1*v2 Out[10]= ap, bq, cr [11] In[11]:= v1/v2 Out[11]= a p, b q, c r

3 [12] In[12]:= v1.v2 Out[12]= ap bq cr 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] u = {1, 2, 3, 4, 5}; 1 3 1, 2 3 2, 3 3 3, 4 3 4, 5 3 5, u^3 - u 0, 6, 24, 60, 120 x, x 2 /2, x 3 /3!, x 4 /4!, x 5 /5! u! 1, 2, 6, 24, 120 x^u/u! x, x2 2, x3 6, x4 24, x Range [13] Range {1, 2, 3, 4, 5} In[13]:= Out[13]= Range[5] 1, 2, 3, 4, 5 [14] Range {4, 5,..., 10} In[14]:= Range[4, 10] Out[14]= 4, 5, 6, 7, 8, 9, 10

4 28 3 [15] Range 4 x In[15]:= Range[4, 10, 0.7] Out[15]= 4., 4.7, 5.4, 6.1, 6.8, 7.5, 8.2, 8.9, Table [16] Table (square numbers) sq In[16]:= sq = Table[n^2, {n, 1, 10}] Out[16]= 1, 4, 9, 16, 25, 36, 49, 64, 81, 100 Table[..] n n^2 Table [17] [[ ]] sq 7 In[17]:= sq[[7]] Out[17]= 49 [18] Length sq In[18]:= Length[sq] Out[18]= (e ) Table e a n = ( n ) n 10 N an [16] Table an = Table[N[(1 + 1/n)^n], {n, 1, 10}] 2., 2.25, , , , , , , , () Table x 1, x 2 1,, x 10 1 [16] Table x n 1

5 list = Table[x^n - 1, {n, 1, 10}] 1 x, 1 x 2, 1 x 3, 1 x 4, 1 x 5, 1 x 6, 1 x 7, 1 x 8, 1 x 9, 1 x 10 Factor list *1 Factor[list] 1 x, 1 x 1 x, 1 x 1 x x 2, 1 x 1 x 1 x 2, 1 x 1 x x 2 x 3 x 4, 1 x 1 x 1 x x 2 1 x x 2, 1 x 1 x x 2 x 3 x 4 x 5 x 6, 1 x 1 x 1 x 2 1 x 4, 1 x 1 x x 2 1 x 3 x 6, 1 x 1 x 1 x x 2 x 3 x 4 1 x x 2 x 3 x () mat = {m,a,t,h,e,m,a,t,i,c,a} tam Table (Hint tam n mat ) Reverse tam = Reverse[mat] Table mat len *2 mat = {m,a,t,h,e,m,a,t,i,c,a}; len = Length[mat]; tam n mat len - (n - 1) tam = Table[mat[[len - n + 1]], {n, 1, len}] a, c, i, t, a, m, e, h, t, a, m *1 Factor [8] Exp *2 len 11 Mathematica

6 30 3 [19] m1 *3 In[19]:= m1 = {{a, b, c}, {p, q, r}}; [20] MatrixForm m1 (matrix) In[20]:= Out[20]//MatrixForm= m1 //MatrixForm a b c p q r MatrixForm[m1] * 4*5 [19] m1 [21] TableForm m1 (table) In[21]:= m1 //TableForm Out[21]//TableForm= a b c p q r TableForm[m1] [22] Table In[22]:= m2 = Table[i + j, {i, 1, 4}, {j, 1, 5}] Out[22]= 2, 3, 4, 5, 6, 3, 4, 5, 6, 7, 4, 5, 6, 7, 8, 5, 6, 7, 8, 9 [23] TableForm In[23]:= m2 //TableForm Out[23]//TableForm= m2 [22] {i, 1, 4} {j, 1, 5} [24] [[ ]] 2 5 In[24]:= m2[[2, 5]] *3 [1] v1 = {a, b, c} v2 = {p, q, r} m1 = {v1, v2} *4 Sin[x] x//sin TableForm MatrixForm *5 MatrixForm 2*m1 2 2*MatrixForm[m1] TableForm

7 Out[24]= () TableForm Table kuku = Table[m * n, {m, 1, 9}, {n, 1, 9}]; kuku //TableForm Out[ ]//TableForm= kisuu = Table[(2 m - 1)*(2 n - 1), {m, 1, 10}, {n, 1, 10}]; kisuu //TableForm Out[ ]//TableForm= ( ) {n, n^2, n^3} power TableForm power = Table[{n, n^2, n^3}, {n, 1, 10}]; power //TableForm

8 32 3 Out[ ]//TableForm= Mathematica Sum [25] Sum In[25]:= Sum[n^2, {n, 1, 10}] Out[25]= n=1 n 2 [16] sq = Table[n^2, {n, 1, 10}] Table Sum [26] Mathematica 2 In[26]:= Out[26]= Sum[k^2, {k, 1, n}] 1 6 n 1 n 1 2n [27] 1 + 1/ /3 2 + In[27]:= Out[27]= Sum[1/n^2, {n, 1, Infinity}] Π 2 6 Infinity [28] 8 *6 In[28]:= Sum[x^n/n!, {n, 0, 8}] Out[28]= 1 x x2 2 x3 6 x4 24 x5 120 x6 720 x x *6 Sum[x^n/n!, {n, 0, Infinity}] Exp[x]

9 [29] Product n=1 (2n 1) In[29]:= Product[2*n - 1, {n, 1, 10}] Out[29]= [30] 3.5 In[30]:= Sum[m * n, {m, 1, 9}, {n, 1, 9}] Out[30]= ( ) e a n = ( ) n b n = n 1! + 1 2! n! (1) Sum b 5 (2) Table b n 10 bn (3) bn 3.2 an a n, a n e, b n, b n e x Abs[x] (1) N N[Sum[1/k!, {k, 0, 5}]] (2) Table N Sum bn = Table[ N[Sum[1/k!, {k, 0, n}]], {n, 1, 10}] 2., 2.5, , , , , , , , (3) an a 5 a 5 e an[[5]] Abs[an[[5]]-E] hikaku = Table[

10 34 3 {an[[n]], Abs[an[[n]]-E], bn[[n]], Abs[bn[[n]]-E]}, {n, 1, 10}]; hikaku //TableForm Out[ ]//TableForm= b n e b n 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 (1) 1 k + k 1 = k k 1 Mathematica Sum[3/(Sqrt[k] + Sqrt[k - 1]), {k, 2, 100}] N N *7 Sum[N[3/(Sqrt[k] + Sqrt[k - 1])], {k, 2, 100}] 27. (2) i *7 Sum[3.0/(Sqrt[k] + Sqrt[k - 1]), {k, 2, 100}]; 3 3.0

11 Sum[2/(i^2-1), {i, 2, n + 1}] 5n 3n n 2 n (3) mx (x x m ) 2 = (x x 2 m) + 2 x i x j 1 i<j m x i = 2i 1 (1 i m) Mathematica a = Sum[2 i - 1, {i, 1, m}]; b = Sum[(2 i - 1)^2, {i, 1, m}]; c = (a^2 - b)/2 1 2 m4 1 3 m 4m3 Factor[c] m m 1 m 3m2 3.5 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)

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

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 Mathematica Workbook Workbook Mathematica Mathematica A4 12 A5 9 14 4 2 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 M athematica

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

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

/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

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

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

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

橡00扉.PDF

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

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

Fortran90/95 [9]! (1 ) " " 5 "Hello!"! 3. (line) Fortran Fortran 1 2 * (1 ) 132 ( ) * 2 ( Fortran ) Fortran ,6 (continuation line) 1

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!

More information

43-03‘o’ì’¹‘®”q37†`51†i„¤‰ƒ…m†[…g†j.pwd

43-03‘o’ì’¹‘®”q37†`51†i„¤‰ƒ…m†[…g†j.pwd n 808 3.0 % 86.8 % 8.3 % n 24 4.1 % 54.0 % 37.5 % 0% % 20 % 30 % 40 % 50 % 60 % 70 % 80 % 90 % 0% 37.4 % 7.2 % 27.2 % 8.4 % n 648 13.6 % 18.1% 45.4 % 4.1% n 18 0% % 20 % 30 % 40 % 50 % 60 % 70 % 80 % 90

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

N N 1,, N 2 N N N N N 1,, N 2 N N N N N 1,, N 2 N N N 8 1 6 3 5 7 4 9 2 1 12 13 8 15 6 3 10 4 9 16 5 14 7 2 11 7 11 23 5 19 3 20 9 12 21 14 22 1 18 10 16 8 15 24 2 25 4 17 6 13 8 1 6 3 5 7 4 9 2 1 12 13

More information

chapt6pdf.p65

chapt6pdf.p65 Chapter 6 6 Chapter 279 ORIGIN6.0 6 Chapter - 01 280 Chapter 6 281 ORIGIN6.0 282 Chapter 6 283 ORIGIN6.0 284 Chapter 6 6 Chapter - 02 285 ORIGIN6.0 286 Chapter 6 287 ORIGIN6.0 288 Chapter 6 289 ORIGIN6.0

More information

. p.1/15

. p.1/15 . p./5 [ ] x y y x x y fx) y fx) x y. p.2/5 [ ] x y y x x y fx) y fx) x y y x y x y fx) f y) x f y) f f f f. p.2/5 [ ] x y y x x y fx) y fx) x y y x y x y fx) f y) x f y) f f f f [ ] a > y a x R ). p.2/5

More information

A A p.1/16

A A p.1/16 A A p./6 A p.2/6 [ ] x y y x x y fx) y fx) x y A p.3/6 [ ] x y y x x y fx) y fx) x y y x y x y fx) f y) x f y) f f f f A p.3/6 [ ] x y y x x y fx) y fx) x y y x y x y fx) f y) x f y) f f f f [ ] a > y

More information

1 26 ( ) ( ) 1 4 I II III A B C (120 ) ( ) 1, 5 7 I II III A B C (120 ) 1 (1) 0 x π 0 y π 3 sin x sin y = 3, 3 cos x + cos y = 1 (2) a b c a +

1 26 ( ) ( ) 1 4 I II III A B C (120 ) ( ) 1, 5 7 I II III A B C (120 ) 1 (1) 0 x π 0 y π 3 sin x sin y = 3, 3 cos x + cos y = 1 (2) a b c a + 6 ( ) 6 5 ( ) 4 I II III A B C ( ) ( ), 5 7 I II III A B C ( ) () x π y π sin x sin y =, cos x + cos y = () b c + b + c = + b + = b c c () 4 5 6 n ( ) ( ) ( ) n ( ) n m n + m = 555 n OAB P k m n k PO +

More information

OABC OA OC 4, OB, AOB BOC COA 60 OA a OB b OC c () AB AC () ABC D OD ABC OD OA + p AB + q AC p q () OABC 4 f(x) + x ( ), () y f(x) P l 4 () y f(x) l P

OABC OA OC 4, OB, AOB BOC COA 60 OA a OB b OC c () AB AC () ABC D OD ABC OD OA + p AB + q AC p q () OABC 4 f(x) + x ( ), () y f(x) P l 4 () y f(x) l P 4 ( ) ( ) ( ) ( ) 4 5 5 II III A B (0 ) 4, 6, 7 II III A B (0 ) ( ),, 6, 8, 9 II III A B (0 ) ( [ ] ) 5, 0, II A B (90 ) log x x () (a) y x + x (b) y sin (x + ) () (a) (b) (c) (d) 0 e π 0 x x x + dx e

More information

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

Contents 1 Scilab

Contents 1 Scilab Scilab (Shuji Yoshikawa) December 18, 2017 Contents 1 Scilab 3 1.1..................................... 3 1.2..................................... 3 1.3....................................... 3 1.4............................

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

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

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

(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

(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)

More information

さくらの個別指導 ( さくら教育研究所 ) a a n n A m n 1 a m a n = a m+n 2 (a m ) n = a mn 3 (ab) n = a n b n a n n = = 3 2, = 3 2+

さくらの個別指導 ( さくら教育研究所 ) a a n n A m n 1 a m a n = a m+n 2 (a m ) n = a mn 3 (ab) n = a n b n a n n = = 3 2, = 3 2+ 5 5. 5.. a a n n A m n a m a n = a m+n (a m ) n = a mn 3 (ab) n = a n b n a n n 0 3 3 0 = 3 +0 = 3, 3 3 = 3 +( ) = 3 0 3 0 3 3 0 = 3 3 =, 3 = 30 3 = 3 0 a 0 a`n a 0 n a 0 = a`n = a n a` = a 83 84 5 5.

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

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

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

*3 i 9 (1,) i (i,) (1,) 9 (i,) i i 2 1 ( 1, ) (1,) 18 2 i, 2 i i r 3r + 4i 1 i 1 i *4 1 i 9 i 1 1 i i 3 9 +

*3 i 9 (1,) i (i,) (1,) 9 (i,) i i 2 1 ( 1, ) (1,) 18 2 i, 2 i i r 3r + 4i 1 i 1 i *4 1 i 9 i 1 1 i i 3 9 + 1 2 IT 1 *1 1 2 3 π i 1i 2i 3i πi i 2 1 *2 2 + 3 + 4i π ei 3 4 4 2 2 *1 *2 x 2 + 1 = x 2 + x + 1 = 2 3 1 2 2 2 2 *3 i 9 (1,) i (i,) (1,) 9 (i,) i i 2 1 ( 1, ) (1,) 18 2 i, 2 i 1 2 1 2 2 1 i r 3r + 4i 1

More information

70 : 20 : A B (20 ) (30 ) 50 1

70 : 20 : A B (20 ) (30 ) 50 1 70 : 0 : A B (0 ) (30 ) 50 1 1 4 1.1................................................ 5 1. A............................................... 6 1.3 B............................................... 7 8.1 A...............................................

More information

I

I I 6 4 10 1 1 1.1............... 1 1................ 1 1.3.................... 1.4............... 1.4.1.............. 1.4................. 1.4.3........... 3 1.4.4.. 3 1.5.......... 3 1.5.1..............

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

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

chapt3pdf.p65

chapt3pdf.p65 Chapter 3 3 Chapter 121 ORIGIN6.0 Chapter 3-01 2D 122 Chapter 3 123 ORIGIN6.0 124 Chapter 3?Hint 125 ORIGIN6.0 126 Chapter 3 127 ORIGIN6.0 128 Chapter 3 3 Chapter - 02 2D 129 ORIGIN6.0 130 Chapter 3 131

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

数学の基礎訓練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

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

( 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

(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

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

(1) (2) (1) (2) 2 3 {a n } a 2 + a 4 + a a n S n S n = n = S n

(1) (2) (1) (2) 2 3 {a n } a 2 + a 4 + a a n S n S n = n = S n . 99 () 0 0 0 () 0 00 0 350 300 () 5 0 () 3 {a n } a + a 4 + a 6 + + a 40 30 53 47 77 95 30 83 4 n S n S n = n = S n 303 9 k d 9 45 k =, d = 99 a d n a n d n a n = a + (n )d a n a n S n S n = n(a + a n

More information

68 A mm 1/10 A. (a) (b) A.: (a) A.3 A.4 1 1

68 A mm 1/10 A. (a) (b) A.: (a) A.3 A.4 1 1 67 A Section A.1 0 1 0 1 Balmer 7 9 1 0.1 0.01 1 9 3 10:09 6 A.1: A.1 1 10 9 68 A 10 9 10 9 1 10 9 10 1 mm 1/10 A. (a) (b) A.: (a) A.3 A.4 1 1 A.1. 69 5 1 10 15 3 40 0 0 ¾ ¾ É f Á ½ j 30 A.3: A.4: 1/10

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

kiso2-06.key

kiso2-06.key 座席指定があります Linux を起動して下さい 第6回 計算機基礎実習II 計算機基礎実習II 2018 のウェブページか ら 以下の課題に自力で取り組んで下さい 第5回の復習課題(rev05) 第6回の基本課題(base06) 第5回課題の回答例 ex05-2.c 1. キーボードから整数値 a を入力すると a*a*a の値を出力することを繰り返すプログラムを作成しなさい 2. ただし 入力された

More information

p _

p _ Index ap. ap. ap. ap. ap. ap. ap. ap. ap. ap. ap. ap. ap. ap. ap. ap. ap. ap. ap. ap. ap. ap. ap. ap. ap. ap. ap. ap. ap. ap. ap. ap. ap. ap. ap. ap. ap. ap. ap. ap. ap. ap. ap. ap. ap. ap. ap. ap. ap.

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

fx-260A_Users Guide_J

fx-260A_Users Guide_J fx-260a http://edu.casio.jp J 1 5 2 Fl SD F0 COMP F4 DEG F5 RAD F6 GRA 3 F7 FIX F8 SCI F9 NORM COMP DEG, RAD, GRA COMP SD F0 SD SC FIX F9 SD DEG, RAD, GRA t SD COMP DEG RAD GRA COMP 23 4.5 53 23 + 4.5,

More information

80 4 r ˆρ i (r, t) δ(r x i (t)) (4.1) x i (t) ρ i ˆρ i t = 0 i r 0 t(> 0) j r 0 + r < δ(r 0 x i (0))δ(r 0 + r x j (t)) > (4.2) r r 0 G i j (r, t) dr 0

80 4 r ˆρ i (r, t) δ(r x i (t)) (4.1) x i (t) ρ i ˆρ i t = 0 i r 0 t(> 0) j r 0 + r < δ(r 0 x i (0))δ(r 0 + r x j (t)) > (4.2) r r 0 G i j (r, t) dr 0 79 4 4.1 4.1.1 x i (t) x j (t) O O r 0 + r r r 0 x i (0) r 0 x i (0) 4.1 L. van. Hove 1954 space-time correlation function V N 4.1 ρ 0 = N/V i t 80 4 r ˆρ i (r, t) δ(r x i (t)) (4.1) x i (t) ρ i ˆρ i t

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

(1) 3 A B E e AE = e AB OE = OA + e AB = (1 35 e ) e OE z 1 1 e E xy e = 0 e = 5 OE = ( 2 0 0) E ( 2 0 0) (2) 3 E P Q k EQ = k EP E y 0

(1) 3 A B E e AE = e AB OE = OA + e AB = (1 35 e ) e OE z 1 1 e E xy e = 0 e = 5 OE = ( 2 0 0) E ( 2 0 0) (2) 3 E P Q k EQ = k EP E y 0 (1) 3 A B E e AE = e AB OE = OA + e AB = (1 35 e 0 1 15 ) e OE z 1 1 e E xy 5 1 1 5 e = 0 e = 5 OE = ( 2 0 0) E ( 2 0 0) (2) 3 E P Q k EQ = k EP E y 0 Q y P y k 2 M N M( 1 0 0) N(1 0 0) 4 P Q M N C EP

More information

- II

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

More information

0 2 SHIMURA Masato

0 2 SHIMURA Masato 0 2 SHIMURA Masato jcd02773@nifty.com 2009 12 8 1 1 1.1................................... 2 1.2.......................................... 3 2 2 3 2.1............................... 3 2.2.......................................

More information

A B C A B C X Y Z

A B C A B C X Y Z Argonauta 8: 27-37 (2003) 1 ANOVA, analysis of variance t 1980 90 ANOVA ANOVA Underwood, 1997 ANOVA ANOVA ANOVA 1975 Sokal & Rohlf 1981 1990 Underwood 1997 1997 Zar 1999 1-way ANOVA 2-way, 3-way, ANOVA,

More information

数学Ⅲ立体アプローチ.pdf

数学Ⅲ立体アプローチ.pdf Ⅲ Ⅲ DOLOR SET AMET . cos x cosx = cos x cosx = (cosx + )(cosx ) = cosx = cosx = 4. x cos x cosx =. x y = cosx y = cosx. x =,x = ( y = cosx y = cosx. x V y = cosx y = sinx 6 5 6 - ( cosx cosx ) d x = [

More information

AHPを用いた大相撲の新しい番付編成

AHPを用いた大相撲の新しい番付編成 5304050 2008/2/15 1 2008/2/15 2 42 2008/2/15 3 2008/2/15 4 195 2008/2/15 5 2008/2/15 6 i j ij >1 ij ij1/>1 i j i 1 ji 1/ j ij 2008/2/15 7 1 =2.01/=0.5 =1.51/=0.67 2008/2/15 8 1 2008/2/15 9 () u ) i i i

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

J1-a.dvi

J1-a.dvi 4 [ ] 4. ( ) (x ) 3 (x +). f(x) (x ) 3 x 3 3x +3x, g(x) x + f(x) g(x) f(x) (x 3)(x +)+x+ (x 3)g(x)+x+ g(x) r(x) x+ g(x) x (x+)+ x r(x)+ g(x) x x 4x+5 r(x) g(x) x (f(x) (x 3)g(x)) g(x) x f(x) f(x)g(x) 4

More information

2. 2 I,II,III) 2 x expx) = lim + x 3) ) expx) e x 3) x. ) {a } a a 2 a 3...) a b b {a } α : lim a = α b) ) [] 2 ) f x) = + x ) 4) x > 0 {f x)} x > 0,

2. 2 I,II,III) 2 x expx) = lim + x 3) ) expx) e x 3) x. ) {a } a a 2 a 3...) a b b {a } α : lim a = α b) ) [] 2 ) f x) = + x ) 4) x > 0 {f x)} x > 0, . 207 02 02 a x x ) a x x a x x a x x ) a x x [] 3 3 sup) if) [3] 3 [4] 5.4 ) e x e x = lim + x ) ) e x e x log x = log e x) a > 0) x a x = e x log a 2) 2. 2 I,II,III) 2 x expx) = lim + x 3) ) expx) e

More information

ii 3.,. 4. F. ( ), ,,. 8.,. 1. (75% ) (25% ) =7 24, =7 25, =7 26 (. ). 1.,, ( ). 3.,...,.,.,.,.,. ( ) (1 2 )., ( ), 0., 1., 0,.

ii 3.,. 4. F. ( ), ,,. 8.,. 1. (75% ) (25% ) =7 24, =7 25, =7 26 (. ). 1.,, ( ). 3.,...,.,.,.,.,. ( ) (1 2 )., ( ), 0., 1., 0,. (1 C205) 4 10 (2 C206) 4 11 (2 B202) 4 12 25(2013) http://www.math.is.tohoku.ac.jp/~obata,.,,,..,,. 1. 2. 3. 4. 5. 6. 7. 8. 1., 2007 ( ).,. 2. P. G., 1995. 3. J. C., 1988. 1... 2.,,. ii 3.,. 4. F. ( ),..

More information

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 =

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

More information

Python Speed Learning

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

More information

数値計算

数値計算 数値計算 垣谷公徳 17 号館 3 階電子メール : kimi@ee.ous.ac.jp プログラミング言語の一般論 データ型 ( 定数と変数 配列 ) 代入 基本演算 ( 四則演算 ) 入出力 分岐 繰返処理 関数 外部手続き 1 2 入力関数 入出力 getchar, getc, fgetc ; 一文字入力 gets, fgets, fread ; 文字列 ( データ列 ) 入力 scanf,

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

³ÎΨÏÀ

³ÎΨÏÀ 2017 12 12 Makoto Nakashima 2017 12 12 1 / 22 2.1. C, D π- C, D. A 1, A 2 C A 1 A 2 C A 3, A 4 D A 1 A 2 D Makoto Nakashima 2017 12 12 2 / 22 . (,, L p - ). Makoto Nakashima 2017 12 12 3 / 22 . (,, L p

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

3 m = [n, n1, n 2,..., n r, 2n] p q = [n, n 1, n 2,..., n r ] p 2 mq 2 = ±1 1 1 6 1.1................................. 6 1.2......................... 8 1.3......................... 13 2 15 2.1.............................

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

Mathematica を活用する数学教材とその検証 (数式処理と教育)

Mathematica を活用する数学教材とその検証 (数式処理と教育) $\bullet$ $\bullet$ 1735 2011 115-126 115 Mathematica (Shuichi Yamamoto) College of Science and Technology, Nihon University 1 21 ( ) 1 3 (1) ( ) (2 ) ( ) 10 Mathematica ( ) 21 22 2 Mathematica $?$ 10

More information

* n x 11,, x 1n N(µ 1, σ 2 ) x 21,, x 2n N(µ 2, σ 2 ) H 0 µ 1 = µ 2 (= µ ) H 1 µ 1 µ 2 H 0, H 1 *2 σ 2 σ 2 0, σ 2 1 *1 *2 H 0 H

* n x 11,, x 1n N(µ 1, σ 2 ) x 21,, x 2n N(µ 2, σ 2 ) H 0 µ 1 = µ 2 (= µ ) H 1 µ 1 µ 2 H 0, H 1 *2 σ 2 σ 2 0, σ 2 1 *1 *2 H 0 H 1 1 1.1 *1 1. 1.3.1 n x 11,, x 1n Nµ 1, σ x 1,, x n Nµ, σ H 0 µ 1 = µ = µ H 1 µ 1 µ H 0, H 1 * σ σ 0, σ 1 *1 * H 0 H 0, H 1 H 1 1 H 0 µ, σ 0 H 1 µ 1, µ, σ 1 L 0 µ, σ x L 1 µ 1, µ, σ x x H 0 L 0 µ, σ 0

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

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

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

109

109 108 1 2 3 109 110 111 112 1 c c < c c< B N a d 1 2 3 5 8 9 0 ; 2c< rc a h 3c 113 1p 2c< 3c< a r 4cc 1p 2 c 3c< c p a c 4p 5 c rr c c Cr m e 114 1 c c < c< B N d a 1 3 5 9 0 ; 2c< B ; p c< BN50; ar h 3c

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

num2.dvi

num2.dvi kanenko@mbk.nifty.com 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,

More information

untitled

untitled 0 ( L CONTENTS 0 . sin(-x-sinx, (-x(x, sin(90-xx,(90-xsinx sin(80-xsinx,(80-x-x ( sin{90-(ωφ}(ωφ. :n :m.0 m.0 n tn. 0 n.0 tn ω m :n.0n tn n.0 tn.0 m c ω sinω c ω c tnω ecω sin ω ω sin c ω c ω tn c tn ω

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

漸化式のすべてのパターンを解説しましたー高校数学の達人・河見賢司のサイト

漸化式のすべてのパターンを解説しましたー高校数学の達人・河見賢司のサイト https://www.hmg-gen.com/tuusin.html https://www.hmg-gen.com/tuusin1.html 1 2 OK 3 4 {a n } (1) a 1 = 1, a n+1 a n = 2 (2) a 1 = 3, a n+1 a n = 2n a n a n+1 a n = ( ) a n+1 a n = ( ) a n+1 a n {a n } 1,

More information

impulse_response.dvi

impulse_response.dvi 5 Time Time Level Level Frequency Frequency Fig. 5.1: [1] 2004. [2] P. A. Nelson, S. J. Elliott, Active Noise Control, Academic Press, 1992. [3] M. R. Schroeder, Integrated-impulse method measuring sound

More information

Chapter9 9 LDPC sum-product LDPC 9.1 ( ) 9.2 c 1, c 2, {0, 1, } SUM, PROD : {0, 1, } {0, 1, } SUM(c 1, c 2,, c n ) := { c1 + + c n (c n0 (1 n

Chapter9 9 LDPC sum-product LDPC 9.1 ( ) 9.2 c 1, c 2, {0, 1, } SUM, PROD : {0, 1, } {0, 1, } SUM(c 1, c 2,, c n ) := { c1 + + c n (c n0 (1 n 9 LDPC sum-product 9.1 9.2 LDPC 9.1 ( ) 9.2 c 1, c 2, {0, 1, } SUM, PROD : {0, 1, } {0, 1, } SUM(c 1, c 2,, c n ) := { c1 + + c n (c n0 (1 n 0 n)) ( ) 0 (N(0 c) > N(1 c)) PROD(c 1, c 2,, c n ) := 1 (N(0

More information

Agenda GRAPE-MPの紹介と性能評価 GRAPE-MPの概要 OpenCLによる四倍精度演算 (preliminary) 4倍精度演算用SIM 加速ボード 6 processor elem with 128 bit logic Peak: 1.2Gflops

Agenda GRAPE-MPの紹介と性能評価 GRAPE-MPの概要 OpenCLによる四倍精度演算 (preliminary) 4倍精度演算用SIM 加速ボード 6 processor elem with 128 bit logic Peak: 1.2Gflops Agenda GRAPE-MPの紹介と性能評価 GRAPE-MPの概要 OpenCLによる四倍精度演算 (preliminary) 4倍精度演算用SIM 加速ボード 6 processor elem with 128 bit logic Peak: 1.2Gflops ボードの概要 Control processor (FPGA by Altera) GRAPE-MP chip[nextreme

More information

7. 1 max max min f g h h(x) = max{f(x), g(x)} f g h l(x) l(x) = min{f(x), g(x)} f g 1 f g h(x) = max{f(x), g(x)} l(x) = min{f(x), g(x)} h(x) = 1 (f(x)

7. 1 max max min f g h h(x) = max{f(x), g(x)} f g h l(x) l(x) = min{f(x), g(x)} f g 1 f g h(x) = max{f(x), g(x)} l(x) = min{f(x), g(x)} h(x) = 1 (f(x) 7. 1 ma ma min f g h h() = ma{f(), g()} f g h l() l() = min{f(), g()} f g 1 f g h() = ma{f(), g()} l() = min{f(), g()} h() = 1 (f() + g() + f() g() ) 2 1 1 l() = 1 (f() + g() f() g() ) 2 2 1 45 = 2 e 1

More information

+ + + + n S (n) = + + + + n S (n) S (n) S 0 (n) S (n) 6 4 S (n) S (n) 7 S (n) S 4 (n) 8 6 S k (n) 0 7 (k + )S k (n) 8 S 6 (n), S 7 (n), S 8 (n), S 9 (

+ + + + n S (n) = + + + + n S (n) S (n) S 0 (n) S (n) 6 4 S (n) S (n) 7 S (n) S 4 (n) 8 6 S k (n) 0 7 (k + )S k (n) 8 S 6 (n), S 7 (n), S 8 (n), S 9 ( k k + k + k + + n k 006.7. + + + + n S (n) = + + + + n S (n) S (n) S 0 (n) S (n) 6 4 S (n) S (n) 7 S (n) S 4 (n) 8 6 S k (n) 0 7 (k + )S k (n) 8 S 6 (n), S 7 (n), S 8 (n), S 9 (n), S 0 (n) 9 S (n) S 4

More information