:15: :..

Size: px
Start display at page:

Download ":15: :.."

Transcription

1 :15: : (Small Basic ) Small Basic For While (TEX ) 25 1 TEX TEX () TeX

2 (50%) (50%) () 1: 2: 2 (Small Basic ) 1 (1.1) 01 (1) (2) (3) 2 (4) Windows 7 1.txt txt 2 URL (1.2) 3 (1.3) Excel Excel = = Excel IF IF 3 Excel

3 IF(,, ) Excel = IF(A1 > 3, "3 ", "") Excel 3: Excel (3) A 90! () IF C1 C (4) A 10 SS10 () IF D1 D100 (5) A 7 IF E1 E100 B E IF 4: 02 (1.4) 02 Excel Excel (1) grades.txt A A1 A100 ( ) (2) A 60 B IF B A1 70 B1 A2 50 B2 IF B1 B100 2 Small Basic (2.1) Small Basic

4 Microsoft Small Basic SmallBasic.msi Small Basic 4 Small Basic ( ) Small Basic Small Basic () 7: 6: Small Basic 5: Small Basic 1 Small Basic C: Program Files (x86) Microsoft Small Basic SB (textttsb.exe ) 1 TextWindow. WriteLine ("") 8: (2.2) 4 Windows Windows XP OS.NET Framework 3.5 SP1

5 Enter Tab 5 6 Press any key to continue....sb 3 4.sb :.exe :.pdb :.dll :.exe.dll.dll 1 (2.3).sb.sb Small Basic -.sb Small Basic.sb Small Basic 7 5 Small Basic 6 7 (2.4) 03 Small Basic.sb sb (2.5) : (2.6) 1 (2.7) ( ) 1 TextWindow. WriteLine ("") 2 3 ( ) 8 3 () 1 2

6 TextWindow ForegroundColor TextWindow. ForegroundColor = " Green " 4 TextWindow. WriteLine ("") : 1 1 : : ( ): : (2.8) Small Basic 9 / Math.Remainder(, ) 10 1: + = - <> * > () / >= Math.Remainder < <= And + Or (2.9) TextWindow.Write TextWindow.WriteLine 2 () (") 1 TextWindow. Write ("1 + 2 = ") 2 TextWindow. WriteLine (1 + 2) 3 TextWindow. Write (" a+ b = ") 4 TextWindow. WriteLine ("a" + "b") 5 TextWindow. Write (" 1+ 2 = ") 6 TextWindow. WriteLine ("1" + "2") 9 Green Black, Blue, Cyan, Gray, Magenta, Red, White, Yellow, DarkBlue, DarkCyan, DarkGray, DarkGreen, DarkMagenta, DarkRed, DarkYellow 10 (not) = 3

7 a+ b = ab = (2.10) 04.sb sb Small Basic 1 White 2 Green 3 Blue 4 Cyan 3 a c 2 (3.2) TextWindow.Read Enter + = 37 * 3 = / 8 = = 2 1 TextWindow. WriteLine (" ") 2 a = TextWindow. Read () 3 TextWindow. WriteLine (" " + a) 3 (3.1) If Small Basic 1 a = 3 2 b = "c" 3 TextWindow. WriteLine ( a) 4 TextWindow. WriteLine ("a") 5 TextWindow. WriteLine ( b) 11 Perl 2 (3.3) 05.sb (1) (2) (3) 1 ( ) (4)

8 (5) (6) 2 ( ) (3.4) TextWindow.ReadNumber (3.5) " 2 " a*2 () + () a*2 a*2 a+2 (a+2) (3.6) 06.sb (1) A 72mB 80m (2) (3) (4) B m A () 1 TextWindow. WriteLine ("") 2 a = TextWindow. ReadNumber () 3 TextWindow. WriteLine ("2 " + a *2) A 7 2 m B 8 0 m 10 B m A Perl 23 A 7 2 m B 8 0 m 23 B m A

9 ( 4 ) 3 If point >= 60 Then 4 TextWindow. WriteLine ("") 5 TextWindow. WriteLine ("") 6 EndIf 4 (4.1) If If 9: If (4.2) Else If Else 10: Else (If..Then..EndIf) If Then ( ) EndIf Math.GetRandomNumber(100) point 60 If 1 point = Math. GetRandomNumber (100) 2 TextWindow. WriteLine ( point ) If Then (If..Then..Else..EndIf)

10 Else EndIf If Else 1 t = TextWindow. ReadNumber () 2 If t >= 25 Then 3 TextWindow. WriteLine (" ") 4 Else 5 TextWindow. WriteLine (" ") 6 EndIf (4.4) 07 1.sb (1) (2) (3) x 6x (x < 3) () = 3x + 8 (x 3) (4.3) If t >= 25 Then Enter 2 (4.5) ElseIf If ElseIf 13 Then Enter If t >= 25 Then _ <- 13 If ElseIf () Else 1

11 : If ElseIf Else ElseIf 1 h = Clock. Hour 2 If h <= 7 Then 3 TextWindow. WriteLine ("") 4 ElseIf h >= 9 And h < 18 Then 5 TextWindow. WriteLine ("") 6 Else 7 TextWindow. WriteLine (" ") 8 EndIf 16:30 (4.6) 08 2.sb ElseIf 1 (If..Then..ElseIf..Else..EndIf) If 1 Then 1 ElseIf 2 Then 2 : Else EndIf (1) (2) (3) 60 (4) 60 (5) 90 A (6) F* 70 1 Clock.Hour A 2

12 (4.7) 09.sb Math.Max 14 (1) 3 (2) 3 (3) 3 = = 6 2, 3, 4 (4.8) 10 # () 09.sb If Math.Max (4.9) 11 # () 09.sb Math.Max Math.Min If 2 Else ElseIf Math.Min 15 If Math.Max Math.Min 5 For (5.1) For For For For 1 For i = 1 To 18 2 TextWindow. WriteLine ("") 3 EndFor i 1 18 For EndFor (For) For = To EndFor For 1 For j = 3 To 5 2 TextWindow. WriteLine (j + "") 3 EndFor (5.2) 12 For For.sb (1) 1 3 1

13 (2) (3) (4) ( ) (5.3) Step # For Step Step For = To Step EndFor Step 1 For j = 3 To 8 Step 2 2 TextWindow. WriteLine (j + "") 3 EndFor (5.4) 13 # Step ().sb ( ) Math.SquareRoot (5.5) For For 1 sum = 0 2 For k = 1 To sum = sum + k* k 4 EndFor 5 TextWindow. WriteLine (" = " + sum ) sum = sum + k*k sum sum + k*k For 1 sum k*k = = (5.6) 14.sb (1)

14 (2) ( λ ) (3) 1 λ 16 (4) = 88 = (5.7) 15 # ().sb (1) (2) ( λ ) (3) 1 λ F 1 = 1, F 2 = 1, F n+2 = F n+1 + F n (1) (2) (3) (5.8) 16 # ().sb 16 π 2 /6 6 While (6.1) While While For For While 1718 (While) While EndWhile 17 For 18 ( ) If

15 : While (6.2) 17.sb (1) (2) ( λ ) (3) λ = 2 n a (a ) a λ 2 a a λ λ λ/2 100 While 1 sum = 0 2 While sum <= TextWindow. WriteLine (" ") 4 money = TextWindow. ReadNumber () 5 sum = sum + money 6 EndWhile 7 TextWindow. WriteLine ( sum + " ") :

16 (6.3) While "true" ( ) TextWindow. WriteLine ("2 ") 2 While " true " 3 a = TextWindow. ReadNumber () 4 TextWindow. WriteLine ("2 " + a*a) 5 EndWhile : 2, 4, 6 (6.4) Goto Goto 21 Goto 3 22 Goto 19 ( ) "false" 20 "true"1< If For While (A) Goto hogehoge (B) hogehoge : (C) Goto hogehoge (A) Goto hogehoge: (C) (B) (6.5) While Goto 23 (6.3) 0 1 TextWindow. WriteLine ("2 ") 2 While " true " 3 a = TextWindow. ReadNumber () 4 If a = 0 Then 5 Goto finish 6 EndIf 7 TextWindow. WriteLine ("2 " + a*a) 8 EndWhile 9 finish : 10 TextWindow. WriteLine ("") Small Basic Goto ( break )

17 , 4, 6 (6.6) 18.sb (1) (2) (3) 0 (1) (4) 0 = (i) λ µ r (ii) r = 0 µ λ µ. (iii) r 0 λ = µ, µ = r = = 105 2, 4, 6, 8 (6.7) 19 # ().sb (1) 2 (2) 2 ( λ, µ ) (3) λ, µ = (7.1) ( ) Small Basic Small Basic

18 : (7.2) Small Basic Sub ( ) EndSub ( ) Hantei , 2, 9 13, 4, 5, TextWindow. WriteLine ("") 2 point = TextWindow. ReadNumber () 3 Hantei () 4 TextWindow. WriteLine ("") 5 point = TextWindow. ReadNumber () 6 Hantei () 7 8 Sub Hantei 9 If point >= 60 Then

19 TextWindow. WriteLine ("") 11 Else 12 TextWindow. WriteLine ("") 13 EndIf 14 EndSub , 5 (7.3) 20.sb 2 (1) (2) (3) 2 (4) (5) (6) , 5 (7.4) Fibonacci TextWindow. WriteLine ("2 ") 2 s = TextWindow. ReadNumber () 3 t = TextWindow. ReadNumber () 4 5 n = s 6 Fibonacci () 7 TextWindow. Write (a + ", ") 8 9 n = t 10 Fibonacci () 11 TextWindow. WriteLine ( a) Sub Fibonacci 14 x = Math. Power ( , n) 15 y = Math. SquareRoot (5) 16 a = Math. Round (x / y) 17 EndSub Math.Round(x) x Math.Power(x, n) x n , 5 2, 3 (7.5) 21 Fibonacci 25 n a 16 ()

20 sb (1) (2) ( λ ) (3) 1 λ (8.1) Math Small Basic Math. Math.Pi ( ) Math.Pi Math.Cos(x) Math.Sin(x) Math.Tan(x) Math.ArcCos(x) Math.ArcSin(x) Math.ArcTan(x) 2: cos x sin x tan x cos 1 x sin 1 x tan 1 x Math.Log(x) log 10 x Math.NaturalLog(x) log e x Math.Max(x, y) x y Math.Min(x, y) x y Math.Ceiling(x) x Math.Floor(x) x Math.Round(x) x Math.Abs(x) x Math.Power(x, y) Math.SquareRoot(x) Math.Remainder(x, y) Math.GetRandomNumber(max) Math.GetDegrees(x) Math.GetRadians(x) x y x x y 1 max x x Math.GetDegrees Math.GetRadians (8.2) Text Small Basic Text. 3: Text.Append(text1, text2) 2 Text.GetLength(text)

21 Text.ConvertToLowerCase(text) Text.ConvertToUpperCase(text) Text.GetCharacter(code) code Text.GetCharacterCode(ch) ch Text.GetIndexOf(text, subtext) text subtext 0 Text.GetSubText(text, start, len) text start len Text.GetSubTextToEnd(text, start) text start Text.IsSubText(text, subtext) text subtext True Text.StartsWith(text, subtext) text subtext True Text.EndsWith(text, subtext) text subtext True Unicode Text.Append + (8.3) 22 # ().sb a b a b , (8.4) 23 # ().sb (1) 3 (2) ( λ ) (3) λ 3 (4) λ hokkyodai 3 h o k 3 d a i 2 3 tt 2 (1) a b a b (2) 2 ( 2 α, β ) (3) α β α β 9 (9.1) y = f(x) f(x) = 0 x () 26 : (Math.Log) 1000

22 f(x) f (x) 0 x = x 0 y = f(x) x = x 0 y f(x 0 ) = f (x 0 )(x x 0 ) x y = 0 x = x 0 f(x 0) f (x 0 ) x f(x) 27 15: (#) 2 1 x = 2 2 While " true " 3 dx = (x*x -2) / (2* x) 4 if Math. Abs (dx) < Then 5 Goto finish 6 EndIf 7 x = x - dx 8 EndWhile 9 finish : 10 TextWindow. WriteLine ( x) x 0 x 0 f(x) x 0 x 0 x 0 (9.2) 24.sb (#) x 0 x f(x 0 )/f (x 0 ) 2 x 2 2 (1) 5 x 5 10x + 10 = x 0

23 (12.1) 25 # ().sb (1) ( λ ) (2) λ Program.Delay(msec) msec 1 For Step ( 1) i 0 λ λ i λ 0 (12.2) 26 # ().sb (1) ( λ ) (2) λ (12.3) 27 # ().sb (1) ( λ ) (2) λ λ (12.4) 28 # ().sb (1) 2 (2) 2

24 , 3 (12.5) 29 # ().sb 28 (1) (2) (12.7) 31 # ().sb (1) ( m ) (2) ( x ) (3) xy 1 m y m x y , (12.6) 30 # ().sb (1) (2) p p : λ λ ( t ) t λ/t 8 2 2, 4

25 hyphenation office office 3 (TEX ) 1 TEX TEX(, ) TEX OS 29 TEX L A TEX2 ε ( ) TEX (1) 6 LaTeX2e (ISBN ) DVD-ROM Windows Macintosh (2) Windows TeX 30 (3) Windows (4) Linux apt-get (synaptic) 29 OS TEX TEX WYSIWYG (what you see is what you get. ) HTML 30 texworks 2 TEX TEX Microsoft Word Pdf TEX.tex.dvi.tex.pdf.dvi TeXworks TEX TeXworks ( ) 17: texworks 16: texworks

26 (2.1) 51 TEX L A TEX2 ε tex (\) (Y) tex 1 \ documentclass { jarticle } 2 \ begin { document } 3 4 \ end { document } \documentclass{jarticle} jarticle 4: article jarticle tarticle jsarticle report jreport treport () book jbook tbook jsbook \documentclass[a4j,12pt]{jarticle} 1 31 \begin{document} \end{document} document pdf (1) tex (2) pdf pdf pdf 31 a4j, b5j: a4paper landscape: 10pt, 11pt, 12pt: twocolumn: 2 (2.2) tex (%) () tex 1 \ documentclass { jarticle } 2 \ begin { document } 3 % 4 \ end { document } (2.3) Microsoft Word TEX () () () () 1 () () 1 \ documentclass { jarticle } 2 \ begin { document } 3 t e x 4

27 She wore a yellow ribbon. 8 \ end { document } \TeX 1 (2.5) tex ( ) tex She wore a yellow ribbon. (2.4) \documentclass{jarticle} \ ( Y) TEX \TeX TEX 1 \ documentclass { jarticle } 2 \ begin { document } 3 \ TeX is joyful. % 4 \ TeX {} is joyful. % 5 {\ TeX } is joyful. % 6 \ end { document } % \ TeXis joyful.? TEXis joyful. TEX is joyful. TEX is joyful. TEX \TeX % # $ % & _ { } \ ^ ~ < > 1 \ documentclass { jarticle } 2 \ begin { document } 3 \# \$ \% \& \_ \{ \} 4 \ end { document } # $ % & { } \verb \verb foo ( ) 1 \ documentclass { jarticle } 2 \ begin { document } 3 \ verb@ \@ \ verb $29 > $28 4 \ end { document }

28 \ $29 > $28 < > (2.6) 52 tex ( tex ) () TEX TEX %\% 2 \verb 1 % 2 %tex TEX TeX () 3 () ( ) () TEX jarticle (3.1) jarticle \paragraph 5: \section \section{ } \subsection \subsection{} \subsubsection \subsubsection{} \paragraph \paragraph{} () () 1 \ documentclass { jarticle } 2 \ begin { document } 3 4 \ section { } 5 \ subsection { } 6 7 s e c t i o n 8 s u b s e c t i o n 9 10 \ subsection { } p a r a g r a p h 14

29 \underline{} 17 \newpage 18 \ end { document } \\ TEX section subsection 1.2 paragraph \\() \\ \\[1cm] \\ \relax \\ \relax [] (3.2) ( ) TEX ( ) () 6: ()

30 (3.3) () 7: \tiny \scriptsize \footnotesize \small \normalsize \large \Large \LARGE \huge \Huge Sample Sample Sample Sample Sample Sample Sample Sample Sample Sample {\small } ({ }) 1 \ documentclass { jarticle } 2 \ begin { document } 3 {\ small } 4 5 \ large \ end { document } 8: \textrm{roman} Roman \textbf{bold} Bold \textit{italic} Italic \textsl{slant} Slant \textsf{sans Serif} Sans Serif \texttt{typewriter} Typewriter \textsc{small Caps} Small Caps \textgt{} \small \small small \textrm \underline underline (3.4) 53 tex ( tex )

31 section subsection 1.2 paragraph 4 (4.1) \begin{document} \end{document} \begin \end document 9: quote quotation flushright flushleft center paragraph footnotesize 2.2 textsf read me! textbf Large like this 12 \ begin { flushright } 13 TEX \ end { flushright } \ begin { center } 1 \ documentclass { jarticle } 2 \ begin { document } 3 4 \ begin { quotation } 5 6 \ end { quotation } 7 8 \ begin { flushleft } 9 \ Large 10 \ end { flushleft } 11

32 \ end { center } 4 \ begin { itemize } \ end { document } 5 6 \ item \ item 7 \ end { itemize } 8 9 \ begin { enumerate } 10 \ item 12 \ end { enumerate } \ begin { description } 15 \ item [ ] { } \Large 16 \ item [ ] 17 \ end { description } 18 (4.2) 19 \ end { document } 11 \ item 10: itemize enumerate description 1. \item description \item[] itemize enumerate 1 \ documentclass { jarticle } 2 \ begin { document } 2. document itemize

33 (4.3) 54 tex ( tex ) TEX 0000 Large quote, quotation flushleft, flushright, center itemize, enumerate, description 1. itemize 2. enumerate 3. description \hline \cline{2-3} ( 2 3 ) \ begin { tabular }{ } \ end { tabular } 1 l () c ( ) r () 1 () & \\ \multicolumn{ }{ }{} 1 \ documentclass { jarticle } 2 \ begin { document } 3 \ begin { tabular }{ l c rr } 4 \ hline \ multicolumn {4}{ c }{ } \\ 5 \ hline 6 \ hline & & & \\ 7 \ hline & & 180 & 15 \\ 8 \ cline {2-4} & & 90 & 8 \\ 9 \ hline 10 \ end { tabular } 11 \ end { document } 5 (5.1) tabular tabular tabular

34 (5.2) 55 tex ( 4 a = -2x tex ) 5 6 $a = -2x - 1$ 7 8 \[ a = -2x - 1 \] tabular 9 l, c, r 10 \ end { document } & \\ \hline, \cline a = -2x - 1 \multicolumn a = 2x 1 a = 2x 1 6 (6.1) : $ $ : \[ \] $ \[ y = -2x - 1 \] $ () 1 \ documentclass { jarticle } 2 \ begin { document } 3 32 amsmath 33 (6.2) ^ (Enter ) _ ( Shift ) 1 { } e^x + e^{-x} e x + e x a_1^{b_1} + a_2^{b_2} a b ab amsmath amsmath

35 (6.3) 1 \ldots \cdots \cdots 11: \cdot a b \cdots a + b + + z \ldots... a, b,..., z \vdots. \ddots... (6.4) \sqrt{} 3 \sqrt[3]{} \sqrt{x^2+1} x \sqrt[3]{a_1 + a_2} a 1 + a 2 (6.5) \frac{}{} () ( ) \frac{1}{2} 1 2 \frac{1+x}{\sqrt{1+x^2}} 1+x 1+x 2 1+\frac{2}{3+\frac{4}{5}} x 1 + x (6.6) \sum _^ () ( ) \sum_{k=1}^n k^2 n k=1 k2 n k 2 12: k=1 \prod \bigcap \bigcup (6.7) \int^_ dx \,

36 () ( ) \int x dx % xdx xdx \int x \, dx \int_0^{10} \sqrt{x} \, dx 10 0 x dx x dx 10 x dx x dx $ () \[...\] ( ) $ \[...\] 1 0 \log$\log x$ log 13: log \log x log x \arg x arg x \exp x exp x \sin x sin x \deg x deg x \lim x lim x \cos x cos x \det x det x \max x max x \tan x tan x \dim x dim x \min x min x ^_ (6.8) 56 1 tex ( tex ) r 1 n 1 a + ar + ar ar n 1 = ar k = a(1 rn ) 1 r k=0 1 x 1 dx = x x 1 2 dx = 2x C = 2 x + C (6.9) log $log x$logx log x () ( ) \log_a x log a x log a x \lim_{n\to\infty} a_n lim n a n lim n a n \to \infty (6.10) mod mod 2 x \bmod 3 x mod 3 x \equiv 4 \pmod{3} x 4 (mod 3) (6.11) \left(\right) { }[ ] \left, \right \left{ \left\{ \left.

37 ( ) \{ \frac{1}{2}, \frac{3}{4} \} % { 1 2, 3 4 } { 1 \left\{ \frac{1}{2}, \frac{3}{4} \right\} 2, 3 } 4 \left( \frac{1}{2} \right) ( ) 1 2 \left[ \frac{1}{2} \right. [ 1 2 (6.12) tabular array tabular 1 \[ 2 \ left ( 3 \ begin { array }{ cc} 4 1 & 2 \\ 5 3 & 4 6 \ end { array } 7 \ right ), 8 \ left \{ 9 \ begin { array }{l} 10 2x + 3y = 5 \\ 11 x - 6y = \ end { array } 13 \ right. 14 \] () ( ) { 1 2 2x + 3y = 5, 3 4 x 6y = 5 amsmath 34 (6.13) 14: \hat{a} â \tilde{a} ã \bar{a} ā \vec{a} a 15: \overline{a+b} a + b \underline{a+b} a + b \widehat{a+b} â + b \widetilde{a+b} ã + b \overbrace{a+b} {}}{ a + b \underbrace{a+b} a + b }{{} \overleftarrow{a+b} a + b \overrightarrow{a+b} a + b 34 amsmath

38 \overbrace underbrace 16: \overbrace{a+\cdots+z}^{26} \underbrace{a+\cdots+z}_{26} 26 {}}{ a + + z a + + z }{{} 26 (6.14) 17: \leftarrow \rightarrow \uparrow \downarrow \updownarrow \leftrightarrow \Leftarrow \Rightarrow \Uparrow \Downarrow \Updownarrow \Leftrightarrow \nearrow \swarrow \searrow \nwarrow 18: \alpha α \beta β \gamma γ \delta δ \epsilon ϵ \zeta ζ \eta η \theta θ \iota ι \kappa κ \lambda λ \mu µ \nu ν \xi ξ o o \pi π \rho ρ \sigma σ \tau τ \upsilon υ \phi ϕ \chi χ \psi ψ \omega ω \varepsilon ε \varphi φ \Gamma Γ \Delta \Theta Θ \Lambda Λ \Xi Ξ \Pi Π \Sigma Σ \Upsilon Υ \Phi Φ \Psi Ψ \Omega Ω 19: \pm ± \mp \times \div \circ \cap \cup 20: < < \subset \in \equiv > > \supset \ni \cong = \le \subseteq \notin / \sim \ge \supseteq \neq \perp \le \ge less than or equal to greater than or equal to

39 : 13 \] 14 \ end { document } \infty \partial \ell l (6.15) 57 2 tex ( tex ) 0 θ < 180 sin θ 0 sin θ = 1 cos 2 θ a, b {3n +1 n =1, 2,...} a + b 2 ( lim 1+ 1 n = e. n n) (mod 3) ( ) a, c pmatrix \begin{document} \usepackage{amsmath}amsmath amsmath b d vmatrix (6.16) \left(, \right) array 1 \ documentclass { jarticle } 2 \ usepackage { amsmath } 3 \ begin { document } 4 \[ 5 \ begin { pmatrix } 6 1 & 2 & 3 \\ 7 4 & 5 & 6 8 \ end { pmatrix }, 9 \ begin { vmatrix } 10 a & b \\ 11 c & d 12 \ end { vmatrix } (6.17) cases amsmath \left\{, \right. array 1 \ documentclass { jarticle } 2 \ usepackage { amsmath } 3 \ begin { document } 4 \[ 5 \ begin { cases } 6 2x + 3y = 5 \\ 7 x - 6y = -5 8 \ end { cases } 9 \] 10 \ end { document }

40 x + 3y = 5 x 6y = 5 (6.18) amsmath 1 1 : $ $ : \[ \] : \begin{align} \end{align} : \begin{gather} \end{gather} \[ \begin{align} y = -2x - 1 \end{align} \] () ( \[ \] ) 1 \ documentclass { jarticle } 2 \ usepackage { amsmath } 3 \ begin { document } 4 \ begin { gather } 5 x ^2+ x+1 = 1 \\ 6 y = 2 7 \ end { gather } 8 \ begin { align *} 9 f(x) &= x ^2+ x+1 \\ 10 y &= 2 11 \ end { align *} 12 \ begin { align } 13 (\ sqrt {x}) 14 &= (x ^{\ frac {1}{2}}) \\ 15 &= \ frac {1}{2} x^{ -\ frac {1}{2}} \\ 16 &= \ frac {1}{2\ sqrt {x}} 17 \ end { align } 18 \ end { document } x 2 + x +1=1 (1) y =2 (2) f(x) =x 2 + x +1 y =2 ( x) =(x 1 2 ) (3) = 1 2 x 1 2 (4) = 1 2 x gather align & amsmath amsmath gather, align * (6.19) 58 3 tex ( tex ) (5)

41 = = 4 1 = 5 1 ( 1) ( 4) = 9 11 \ section { } 12 \ label { sec :sogo - sansho } \ subsection { } 15 \ label { subsec : setsu - page } 16 \ ref { sec :sogo - sansho } 17 \ ref { subsec : setsu - page } 18 ( \ ref {eq: parab }) 19 \ pageref { subsec : setsu - page } \ end { document } 7 () (7.1) 7 39 (2) 1 38 \label, \ref, \pageref TEX y = x 2 (1) 1 \ documentclass { jarticle } 2 \ usepackage { amsmath } 3 \ begin { document } 4 5 \ section { } 6 \ begin { align } 7 \ label {eq: parab } 8 y = x^2 9 \ end { align } (1) 1 align gather (7.2) 59 TEX tex ( tex )

42 x 2 x +1=0 2 α, β 7 8 \ subsection { } 9 10 \ end { document } αβ =1, α + β =1 (1) α 2 + β 2 =(α + β) 2 2αβ (2) =1 2 1 (3) 1 1 = 1 (4) (2) (3) (1) 2 align 1 2 \quad \, 1 2 (7.3) \tableofcontents \ documentclass { jarticle } 2 \ begin { document } 3 \ tableofcontents 4 \ section { } 5 6 \ section { } 8 (8.1) Windows texworks JPEG

43 (.jpg,.jpeg) PNG, BMP, PDF, EPS 35 TEX graphicx ( ) pdf dvipdfmx hiresbb graphicx \ usepackage [ dvipdfmx, hiresbb ]{ graphicx } \usepackage[dvipdfmx,hiresbb]{graphicx,amsmath} \usepackage 2 \includegraphics scale includegraphics (2 ) \ includegraphics { } \ includegraphics [ scale =1.2]{ } 6 \ vspace {1 cm} \ includegraphics [ scale =0.2]{ streetcar. jpg } 10 \ end { document } 1 \ documentclass { jarticle } 2 \ usepackage [ dvipdfmx, hiresbb ]{ graphicx } 3 \ begin { document } 4 5 \ includegraphics { streetcar. jpg } 35 textworks JPEG, PNG, BMP, PDF.xbb texworks.xbb.xbb 0.2 (8.2) 60 tex ( tex ) fig60a.pdf fig60b.pdf 1 1 1

44 log n 1.1 y = 1 x n n+1 1 dx x = log(n + 1) (1) n 1.2 log n n A n = log n, n {A n } (1) log n log(n + 1) log n, n A n log n +1 n (n + 1)/n > 1 A n > 0 {A n } A n A n+1 = log(n + 1) log n 1 n +1 = n+1 n dx x 1 n (9.1) TEX \ newcommand {\ } { } \newcommand (\documentclass \begin{document}) \Large \haiku 2 1 \ documentclass { jarticle } 2 3 \ newcommand {\ haiku }{ 4 \ begin { center } 5 \ textgt {\ Large } 6 \ end { center } 7 } 8 9 \ begin { document } 10 1 \ haiku 11 1 \ haiku 12 \ end { document } A n A n+1 > 0 A n A n 1

45 \ Haiku { } { } 1 13 \ end { document } 1 1 \Meirei ( ) \ (9.2) 1 \ newcommand {\ } [ ] { } 9 #1, #2,... 1, 2,... 1 \ documentclass { jarticle } 2 3 \ newcommand {\ Haiku }[2]{ 4 \ begin { center } 5 \ textgt {\ Large #1 # 1 # 1 } 6 \ end { center } 7 \ begin { flushright } #2 \ end { flushright } 8 } 9 10 \ begin { document } 11 1 \ Haiku { } { } (9.3) 61 # () tex ( tex ) 1

46 (10.1) 62 # () \item [(1)] G (1) G G 2 (2) : χ(g)η(g 1 #G (χ = η ), )= g G 0 (χ η ). χ λ (g)χ λ (h 1 #G/#C g (g h ), )= 0 (g h ). λ Ĝ C g g G λ Ĝ (\Large ) himawari.jpg 36 d λ d 2 λ =#G. λ Ĝ cases \text 37 \usepackage{amsmath} \text{($g$ $h$)} 36 himawari.jpg 37 mbox 1

47 (10.2) 63 # () n/2 \lfloor, \rfloor ( t B) A = ^t B... B = ({}) A = {}^t B... ( ) 2 J2 = 0 1 m 2m 1 0 I2m : I2m = ( ) I2m+1 = I2m (10.3) 64 # () 1 n f(z) =a 0 z n + a 1 z n a n, a 0 0, n 1 (1) n f(z) = R z = R z f(z) > f(0) z f(z 0 )=0, z 0 <R n A P k (A) = Pf(A 2k,2k )(1 k n/2 ) 0 A = t BI n B (B B n ) (1) f(z) = z n a0 + a 1 z + a 2 z a n ( z n z n a 0 a 1 a 2 a ) n z z 2 z n a 0 0 ( lim z z n a 0 a 1 a 2 a ) n z z 2 z n =+ R z = R z f(z) > f(0) 1.1 f(z 0 )=0, z 0 <R z 0 () 1

48 (10.4) 65 # () r, R (r <R) d 5 d>r+ r d = R + r R r<d<r+ r d = R r d<r r a (a >0, a 0) y = a x x = log a y 11 (11.1) 70 ## ().sb (1) {a n } (2) a n a n+1 a 1 = 1 3a n+1 = 2a 2 n + 3a n + 4 (n 1) a x (a >1 ) (0 <a<1) (a >1 ) log a x (0 <a<1) cases \text \mbox : : = (11.2) 71 ## ().sb (1) {a n } {b n }

49 (2) a n a n+1 b n b n+1 a 1 = 1 b 1 = 2 a n+1 = a n+b n 2 (n 1) b n+1 = a n b n (n 1) 1, , , , : : , , , = , (11.3) 72 ## ().sb (1) (2) (11.4) 73 ## ().sb (1) (x ) (2) x (11.5) 74 ## ().sb (1) 4 (2) 4 3

50 (11.7) 76 ## 2 ().sb (1) (x ) (2) x 2 1 (11.6) 75 ## ().sb (1) (x ) (2) x

51 (11.8) 77 ## () \underset 1 R R P 0 M φ M ψ M 0 0 N φ N ψ N 0 P = Q Q : (12.1)! Undefined control sequence. l.3 $y = \ loq x$! l \loq x$ 2 D(x 1,x 2,...,x n )= (x 1,x 2,...,x n ) 2 = i<j (x i x j ) 2 P n Z[t 1,t 2,...,t n ] D(x 1,x 2,...,x n )=P n (s 1,s 2,...,s n ) p k = x k 1 + x k x k n p 0 p 1 p n 1 p 1 p 2 p n D(x 1,x 2,...,x n )= p n 1 p n p 2n 2 D(x 1,x 2,x 3 )= 4p 3 1p 3 + p 2 1p p 1 p 2 p 3 4p p 2 3 \overset{ }{ } Z \textbf \mathbf{z} 1 3 \loq (undefined control sequence) (12.2) 1 begin end! LaTeX Error : \ begin { itemize } on input line 3 ended by \ end { document }. \begin! LaTeX Error : Can be used only in preamble. 38

52 : : l.3 \ usepackage { amsmath } (\documentclass \begin{document}) \begin{document}! LaTeX Error : Command \ item invalid in math mode. : : l.4 $\ item $! LaTeX Error : Environment docment undefined. : : l.2 \ begin { docment }! LaTeX Error : There s no line here to end. \\ (})! Argument of \ texttt has an extra }. < inserted text > \ par l.3 {\ texttt }! Display math should end with $$. <to be read again > l.3 \[ abc $ \[\] $$! Double subscript. l.3 $ a_b_ c $ a_{b_c}! Double superscript. l.3 $ a^b^ c $ a^{b^c} $! Missing $ inserted. < inserted text > $ l.3 a_ b \frac $ (})! Missing } inserted.

53 < inserted text > } l.3 $ \ frac {1} $ (})! Too many } s. < recently read > } l.3 \ texttt { abc }}! Undefined control sequence. l.3 $y = \ loq x$ Runaway argument? {2 $! Paragraph ended before \ frac was complete.

54 Clock.Hour, 11 Else, 9 ElseIf, 10 EndSub, 18 false, 16 For, 12 Goto, 16 IF (Excel), 2 If, 9 Math.Abs, 20 Math.ArcCos, 20 Math.ArcSin, 20 Math.ArcTan, 20 Math.Ceiling, 20 Math.Cos, 20 Math.Floor, 20 Math.GetDegrees, 20 Math.GetRadians, 20 Math.GetRandomNumber, 9, 20 Math.Log, 20 Math.Max, 12, 20 Math.Min, 12, 20 Math.NaturalLog, 20 Math.Pi, 20 Math.Power, 19, 20 Math.Remainder, 20 Math.Round, 19, 20 Math.Sin, 20 Math.SquareRoot, 13, 20 Math.Tan, 20 Program.Delay, 23 Step, 13 Sub, 18 Text.Append, 20 Text.ConvertToLowerCase, 20 Text.ConvertToUpperCase, 20 Text.EndsWith, 20 Text.GetCharacter, 20 Text.GetCharacterCode, 20 Text.GetIndexOf, 20 Text.GetLength, 20 Text.GetSubText, 20 Text.GetSubTextToEnd, 20 Text.IsSubText, 20 Text.StartsWith, 20 TextWindow.ForegroundColor, 6 TextWindow.Read, 7 TextWindow.ReadNumber, 8 TextWindow.Write, 6 TextWindow.WriteLine, 4 true, 16 While, 14 <, 38 >, 38 54

55 \,, 36 \\, 29 \alpha, 38 \arg, 36 \bar, 37 \beta, 38 \bigcap, 35 \bigcup, 35 \bmod, 36 \cap, 38 \cdot, 35 \cdots, 35 \chi, 38 \circ, 38 \cline, 33 \cong, 38 \cos, 36 \cup, 38 \ddots, 35 \deg, 36 \Delta, 38 \delta, 38 \det, 36 \dim, 36 \div, 38 \documentclass, 26 \Downarrow, 38 \downarrow, 38 \ell, 39 \epsilon, 38 \equiv, 36, 38 \eta, 38 \exp, 36 \footnotesize, 30 \frac, 35 \Gamma, 38 \gamma, 38 \ge, 38 \hat, 37 \hline, 33 \Huge, 30 \huge, 30 \in, 38 \includegraphics, 43 \infty, 36, 39 \int, 36 \iota, 38 \item, 32 \kappa, 38 \label, 41 \Lambda, 38 \lambda, 38 \LARGE, 30 \Large, 30 \large, 30 \ldots, 35 \le, 38 \left, 36 \Leftarrow, 38 \leftarrow, 38

56 \Leftrightarrow, 38 \leftrightarrow, 38 \lim, 36 \log, 36 \max, 36 \mbox, 46, 48 \min, 36 \mp, 38 \mu, 38 \multicolumn, 33 \nearrow, 38 \neq, 38 \newcommand, 44 \newpage, 29 \ni, 38 \normalsize, 30 \notin, 38 \nu, 38 \nwarrow, 38 \Omega, 38 \omega, 38 \overbrace, 37 \overleftarrow, 37 \overline, 37 \overrightarrow, 37 \overset, 51 \pageref, 41 \paragraph, 28 \partial, 39 \perp, 38 \Phi, 38 \phi, 38 \Pi, 38 \pi, 38 \pm, 38 \pmod, 36 \prod, 35 \Psi, 38 \psi, 38 \quad, 42 \ref, 41 \rho, 38 \right, 36 \Rightarrow, 38 \rightarrow, 38 \scriptsize, 30 \searrow, 38 \section, 28 \Sigma, 38 \sigma, 38 \sim, 38 \sin, 36 \small, 30 \sqrt, 35 \subsection, 28 \subset, 38 \subseteq, 38 \subsubsection, 28 \sum, 35 \supset, 38

57 \supseteq, 38 \swarrow, 38 \tableofcontents, 42 \tan, 36 \tau, 38 \TeX, 27 \text, 46, 48 \textbf, 30 \textgt, 30 \textit, 30 \textrm, 30 \textsc, 30 \textsf, 30 \textsl, 30 \texttt, 30 \Theta, 38 \theta, 38 \times, 38 \tiny, 30 \to, 36 \underbrace, 37 \underline, 29, 37 \underset, 51 \Uparrow, 38 \uparrow, 38 \Updownarrow, 38 \updownarrow, 38 \Upsilon, 38 \upsilon, 38 \usepackage, 39 \varepsilon, 38 \varphi, 38 \vdots, 35 \verb, 27 \widehat, 37 \widetilde, 37 \Xi, 38 \xi, 38 \zeta, 38 ^, 34 _, 34 o, 38 10pt, 26 11pt, 26 12pt, 26 align*, 40 align, 40 amsmath, 39 array, 37 BMP, 43 cases, 39 center, 31 description, 32 document, 26 dvipdfmx, 43 dvi, 25 enumerate, 32

58 EPS, 43 flushleft, 31 flushright, 31 gather*, 40 gather, 40 graphicx, 43 hiresbb, 43 itemize, 32 JPEG, 43 landscape, 26 log, 36 PDF, 43 pmatrix, 39 PNG, 43 quotation, 31 quote, 31 small, 30 tabular, 33 TeXworks, 25 tex, 25 twocolumn, 26 underline, 30 vmatrix, 39 xbb, 43, 5, 34, 4, 6, 29, 29, 12, 32, 29, 42, 28, 31, 26, 34, 16, 17, 5, 30, 34, 17, 34, 4, 5, 34, 27, 15

59 , 14, 30, 15, 10, 10, 34, 7, 44, 16, 30, 17, 16, 34

1.2 L A TEX 2ε Unicode L A TEX 2ε L A TEX 2ε Windows, Linux, Macintosh L A TEX 2ε 1.3 L A TEX 2ε L A TEX 2ε 1. L A TEX 2ε 2. L A TEX 2ε L A TEX 2ε WYS

1.2 L A TEX 2ε Unicode L A TEX 2ε L A TEX 2ε Windows, Linux, Macintosh L A TEX 2ε 1.3 L A TEX 2ε L A TEX 2ε 1. L A TEX 2ε 2. L A TEX 2ε L A TEX 2ε WYS L A TEX 2ε 16 10 7 1 L A TEX 2ε L A TEX 2ε TEX Stanford Donald E. Knuth 1.1 1.1.1 Windows, Linux, Macintosh OS Adobe Acrobat Reader Adobe Acrobat Reader PDF 1.1.2 1 1.2 L A TEX 2ε Unicode L A TEX 2ε L

More information

L A TEX ver L A TEX LATEX 1.1 L A TEX L A TEX tex 1.1 1) latex mkdir latex 2) latex sample1 sample2 mkdir latex/sample1 mkdir latex/sampl

L A TEX ver L A TEX LATEX 1.1 L A TEX L A TEX tex 1.1 1) latex mkdir latex 2) latex sample1 sample2 mkdir latex/sample1 mkdir latex/sampl L A TEX ver.2004.11.18 1 L A TEX LATEX 1.1 L A TEX L A TEX tex 1.1 1) latex mkdir latex 2) latex sample1 sample2 mkdir latex/sample1 mkdir latex/sample2 3) /staff/kaede work/www/math/takase sample1.tex

More information

基礎数学I

基礎数学I I & II ii ii........... 22................. 25 12............... 28.................. 28.................... 31............. 32.................. 34 3 1 9.................... 1....................... 1............

More information

2. label \ref \figref \fgref graphicx \usepackage{graphicx [tb] [h] here [tb] \begin{figure*~\end{figure* \ref{fig:figure1 1: \begin{figure[

2. label \ref \figref \fgref graphicx \usepackage{graphicx [tb] [h] here [tb] \begin{figure*~\end{figure* \ref{fig:figure1 1: \begin{figure[ L A TEX 22 7 26 1. 1.1 \begin{itemize \end{itemize 1.2 1. 2. 3. \begin{enumerate \end{enumerate 1.3 1 2 3 \begin{description \item[ 1] \item[ 2] \item[ 3] \end{description 2. label \ref \figref \fgref

More information

tex03final1.dvi

tex03final1.dvi 2002 3 L A TEX 2002 4 20 : TEX dvi PDF mikilab 1 L A TEX 1.1 Table 1.1 Table 1 1 1400 1 1700 Fig. 1 \begin{tabular}{ ()}. Fig. 2 tabular Table 2 tabular l c r \begin{center} \begin{tabular}{lcr} & & \\

More information

web04.dvi

web04.dvi 4 MATLAB 1 visualization MATLAB 2 Octave gnuplot Octave copyright c 2004 Tatsuya Kitamura / All rights reserved. 35 4 4.1 1 1 y =2x x 5 5 x y plot 4.1 Figure No. 1 figure window >> x=-5:5;ψ >> y=2*x;ψ

More information

MediaWiki for Kisorigaku

MediaWiki for Kisorigaku MediaWiki for Kisorigaku 22 10 1 1 Kisorigaku 5 1.1... 6... 6... 6 2 MediaWiki 7 2.1... 8... 8... 8... 8 2.2... 9... 9... 10... 10... 10..................................... 11 3 13 3.1... 14... 14...

More information

L A TEX? Word Word Word Word WYSIWYG T E X by Donald Knuth L A T E X by Leslie Lamport L A T E X 2ε L A T E X 2ε, pt E X, pl A T E X LATEX p.2/27

L A TEX? Word Word Word Word WYSIWYG T E X by Donald Knuth L A T E X by Leslie Lamport L A T E X 2ε L A T E X 2ε, pt E X, pl A T E X LATEX p.2/27 L A TEX 2007 2007 10 5 ( ) 338 8570 255 Tel: 048 858 3577, Fax : 048 858 3716 Email: tohru@mail.saitama-u.ac.jp URL: http://www.nls.ics.saitama-u.ac.jp/ tohru/ LATEX p.1/27 L A TEX? Word Word Word Word

More information

1 L A TEX L A TEX L A TEX 2 L A TEX 2 L A TEX L A TEX L A TEX Word L A TEX L A TEX L A TEX L A TEX 2.1 L A TEX 1 L A TEX 2

1 L A TEX L A TEX L A TEX 2 L A TEX 2 L A TEX L A TEX L A TEX Word L A TEX L A TEX L A TEX L A TEX 2.1 L A TEX 1 L A TEX 2 L A TEX dareka@dokoka.org 2005 9 2 1 2 2 L A TEX 2 2.1................................. 2 2.2 L A TEX..................................... 4 3 L A TEX 4 3.1............................. 4 3.2......................

More information

DVIOUT-マスタ-

DVIOUT-マスタ- L A TEX T.T TEX TEX 1 TEX TEX Donald E. Knuth tex 2 L A TEX TEX LATEX( DEC Leslie Lamport TEX TEX 3 L A TEX 3.1 L A TEX documentclass[]{} begin{document} end{document} LATEX 3.1.1 documentclass[a4paper,twocolumn,11pt]{jarticle}

More information

1.5,. ( A, 7, * ) Emacs,., <Return>., <Delete>. <Delete>, Delete. <Delete>,. 1.6,.,, Emacs.,. ( ), ( ),,. C-x,., Emacs.,. C-x C-f ( )... C-x C-s. Emac

1.5,. ( A, 7, * ) Emacs,., <Return>., <Delete>. <Delete>, Delete. <Delete>,. 1.6,.,, Emacs.,. ( ), ( ),,. C-x,., Emacs.,. C-x C-f ( )... C-x C-s. Emac L A TEX 1 1.1 Emacs Emacs, (, CTRL, CTL ) (, )., CONTROL META,. C-< >, < >., C-f, f. ESC < >, < >. < >,. Emacs, C-x C-c.,. C-v. ESC v. 1.2., (previous) (next) (forward) (backward)., C-p, C-n, C-f, C-b,.

More information

1.3 I Tab Tab Tab 1 :~$ cd De # T a b 2 :~$ cd Desktop # E n t e r 3 debian :~/ Desktop$ 2 Tab to Tab 1

1.3 I Tab Tab Tab 1 :~$ cd De # T a b 2 :~$ cd Desktop # E n t e r 3 debian :~/ Desktop$ 2 Tab to Tab 1 I 2 I 2018 2 1 MathLibre USB 1.1 Ricty Diminished O 0 1 $ wget http :// math. shinshu -u.ac.jp /~ isasaki / classes /2018 dp1 / files / instfonts.sh 2 $ chmod + x instfonts. sh 3 $./ instfonts. sh 1 $

More information

: , 2.0, 3.0, 2.0, (%) ( 2.

: , 2.0, 3.0, 2.0, (%) ( 2. 2017 1 2 1.1...................................... 2 1.2......................................... 4 1.3........................................... 10 1.4................................. 14 1.5..........................................

More information

visit.dvi

visit.dvi L A TEX 1 L A TEX 1.1 L A TEX,. L A TEX,. ( Emacs). \documentclass{jarticle} \begin{document} Hello!!, \LaTeX Hello!!, L A TEX L A TEX2ε. \LaTeXe. \end{document},. \, L A TEX. L A TEX. \LaTeX L A TEX..

More information

L A TEX Copyright c KAKEHI Katsuhiko All Rights Reserved 1 L A TEX \documentstyle[< >]{jarticle} \title{< >} \author{< >} \date{< >} < > \be

L A TEX Copyright c KAKEHI Katsuhiko All Rights Reserved 1 L A TEX \documentstyle[< >]{jarticle} \title{< >} \author{< >} \date{< >} < > \be L A TEX Copyright c KAKEHI Katsuhiko 1996-1998 All Rights Reserved 1 L A TEX \documentstyle[< >]{jarticle} \title{} \author{< >} \date{} \begin{document} \end{document} article jarticle report jreport

More information

プレゼン資料 - MathML

プレゼン資料 - MathML MathML2006.03 MathML MathML2006.03-0.1 MathML 2 URL http://www.hinet.mydns.jp/~hiraku/presentation/?mathml2006.03 MathML2006.03-0.2 1. 1. Web MathML 2. MathML 3. CMS Wiki 2. CMS + MathML = 1. tdiary Hiki

More information

医系の統計入門第 2 版 サンプルページ この本の定価 判型などは, 以下の URL からご覧いただけます. このサンプルページの内容は, 第 2 版 1 刷発行時のものです.

医系の統計入門第 2 版 サンプルページ この本の定価 判型などは, 以下の URL からご覧いただけます.   このサンプルページの内容は, 第 2 版 1 刷発行時のものです. 医系の統計入門第 2 版 サンプルページ この本の定価 判型などは, 以下の URL からご覧いただけます. http://www.morikita.co.jp/books/mid/009192 このサンプルページの内容は, 第 2 版 1 刷発行時のものです. i 2 t 1. 2. 3 2 3. 6 4. 7 5. n 2 ν 6. 2 7. 2003 ii 2 2013 10 iii 1987

More information

基礎から学ぶトラヒック理論 サンプルページ この本の定価 判型などは, 以下の URL からご覧いただけます. このサンプルページの内容は, 初版 1 刷発行時のものです.

基礎から学ぶトラヒック理論 サンプルページ この本の定価 判型などは, 以下の URL からご覧いただけます.   このサンプルページの内容は, 初版 1 刷発行時のものです. 基礎から学ぶトラヒック理論 サンプルページ この本の定価 判型などは, 以下の URL からご覧いただけます. http://www.morikita.co.jp/books/mid/085221 このサンプルページの内容は, 初版 1 刷発行時のものです. i +α 3 1 2 4 5 1 2 ii 3 4 5 6 7 8 9 9.3 2014 6 iii 1 1 2 5 2.1 5 2.2 7

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション 秋学期情報スキル応用 田中基彦教授, 樫村京一郎講師 ( 工学部 共通教育科 ) DTP の基礎 (2) 1. 日本語の入力法 2. 数式, グラフィック, テーブル - 数式 のみは理数系 3. 相互参照, 目次, 文献参照 - あの項目はどこにある? * 提出問題 5 DTP について 提出問題 5 LaTeX 言語を用いる DTP (DeskTop Publishing) について, つぎの各問に答えなさい

More information

電気通信大学 コンピュータリテラシー 文書整形 --- LaTeX ---

電気通信大学 コンピュータリテラシー 文書整形 --- LaTeX --- 1 L A TEX B5 1. LaTeX ( ) : 1 3 2. LaTeX ( ) : 4 7 3. LaTeX (,, EPS ) : 8 10 4. LaTeX ( ) : 11 textlatex.pdf : tiny.tex, tiny.pdf : 1 small.tex, small.pdf : 2 normal.tex, normal.pdf : f1.eps : normal.tex

More information

微分積分 サンプルページ この本の定価 判型などは, 以下の URL からご覧いただけます. このサンプルページの内容は, 初版 1 刷発行時のものです.

微分積分 サンプルページ この本の定価 判型などは, 以下の 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)

More information

r6.dvi

r6.dvi 13 1 WYSIWYG/ 2013.5.21 1 WYSIWYG/ (LaTeX HTML+CSS ) 2 Web 3 ( GUI) 4 Web (1) 5 Web (2) 1 1.1 ( ) ( ) 1 1: / ( 1) ( ) ( ) 1 1 ( 2) / (text editor) Emacs Windows Mac OS X Unix ( ) (script) 2: 1.2??? 1 (

More information

r6.dvi

r6.dvi 14 1 WYSIWYG/ 2014.5.27 1 WYSIWYG/ (LaTeX HTML+CSS ) 2 Web 3 ( GUI) 4 Web (1) 5 Web (2) 1 1.1 ( ) ( ) 1 1: / ( 1) ( ) ( ) 1 1 ( 2) / (text editor) Emacs Windows Mac OS X Unix ( ) (script) 2: 1.2??? 1 (

More information

b3e2003.dvi

b3e2003.dvi 15 II 5 5.1 (1) p, q p = (x + 2y, xy, 1), q = (x 2 + 3y 2, xyz, ) (i) p rotq (ii) p gradq D (2) a, b rot(a b) div [11, p.75] (3) (i) f f grad f = 1 2 grad( f 2) (ii) f f gradf 1 2 grad ( f 2) rotf 5.2

More information

コンピュータ概論

コンピュータ概論 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

More information

tex02.dvi

tex02.dvi 2002 2 L A TEX 2002 4 15 : L A TEX EPS EPS 1 L A TEX L A TEX L A TEX L A TEX 1.1 L A TEX 1.1.1 L A TEX TEX.tex.tex.tex 1.1.2 TEX 1. TEX L A TEX Y TEX L A TEX Y (@ ) TEX L A TEX 2. 1 YTeX YTeX ( ) 3. 2

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

4.4... 17 4.5... 18 4.6... 18 4.7 sin log lim... 18 5 19 6 20 6.1... 20 6.2... 21 7 22 7.1... 22 7.2... 23 8 Deutsch 24 9 24 1 Hello, TEX World! 1.1 T

4.4... 17 4.5... 18 4.6... 18 4.7 sin log lim... 18 5 19 6 20 6.1... 20 6.2... 21 7 22 7.1... 22 7.2... 23 8 Deutsch 24 9 24 1 Hello, TEX World! 1.1 T -platex2 by MiYaGG 1 Hello, TEX World! 2 1.1 TEX... 2 1.2 pl A TEX2... 3 1.3 TEX... 4 1.4 TEX... 4 1.5 To err is human......... 6 1.6 UNIX... 6 2 7 2.1... 7 2.2... 8 2.3... 8 2.4... 9 2.5... 10 2.6...

More information

JSIAM URL TEX Web jsjsiam.cls jsiammacrover

JSIAM URL   TEX Web jsjsiam.cls jsiammacrover TeX. 200. How to use the TEX class files for the Transaction of the Japan Society for Industrial and Applied Mathematics Taro Ouyou Hanako Suzuki Jirou Nihon Saburou Yamada Harumi Ouyou Nihon Suuri University

More information

24.15章.微分方程式

24.15章.微分方程式 m d y dt = F m d y = mg dt V y = dy dt d y dt = d dy dt dt = dv y dt dv y dt = g dv y dt = g dt dt dv y = g dt V y ( t) = gt + C V y ( ) = V y ( ) = C = V y t ( ) = gt V y ( t) = dy dt = gt dy = g t dt

More information

確率論と統計学の資料

確率論と統計学の資料 5 June 015 ii........................ 1 1 1.1...................... 1 1........................... 3 1.3... 4 6.1........................... 6................... 7 ii ii.3.................. 8.4..........................

More information

II A A441 : October 02, 2014 Version : Kawahira, Tomoki TA (Kondo, Hirotaka )

II A A441 : October 02, 2014 Version : Kawahira, Tomoki TA (Kondo, Hirotaka ) II 214-1 : October 2, 214 Version : 1.1 Kawahira, Tomoki TA (Kondo, Hirotaka ) http://www.math.nagoya-u.ac.jp/~kawahira/courses/14w-biseki.html pdf 1 2 1 9 1 16 1 23 1 3 11 6 11 13 11 2 11 27 12 4 12 11

More information

1 1 1...................... 1 2 6 1.................. 6 2...................... 8 3 9 1........................ 9 2........................ 12 4 15 1...... 15 2........................... 18 3..........................

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回:入門編

数学論文の書き方 - 第1回:入門編 LAT E X 2007 6 19 LAT E X 1 2 L A T E X 3 4 L A T E X 5 LAT E X 1 2 L A T E X 3 4 L A T E X 5 LAT E X 1 2 L A T E X 3 4 L A T E X 5 LAT E X 1 2 L A T E X 3 4 L A T E X 5 LAT E X 1 2 L A T E X 3 4 L A T

More information

,. Black-Scholes u t t, x c u 0 t, x x u t t, x c u t, x x u t t, x + σ x u t, x + rx ut, x rux, t 0 x x,,.,. Step 3, 7,,, Step 6., Step 4,. Step 5,,.

,. Black-Scholes u t t, x c u 0 t, x x u t t, x c u t, x x u t t, x + σ x u t, x + rx ut, x rux, t 0 x x,,.,. Step 3, 7,,, Step 6., Step 4,. Step 5,,. 9 α ν β Ξ ξ Γ γ o δ Π π ε ρ ζ Σ σ η τ Θ θ Υ υ ι Φ φ κ χ Λ λ Ψ ψ µ Ω ω Def, Prop, Th, Lem, Note, Remark, Ex,, Proof, R, N, Q, C [a, b {x R : a x b} : a, b {x R : a < x < b} : [a, b {x R : a x < b} : a,

More information

量子力学 問題

量子力学 問題 3 : 203 : 0. H = 0 0 2 6 0 () = 6, 2 = 2, 3 = 3 3 H 6 2 3 ϵ,2,3 (2) ψ = (, 2, 3 ) ψ Hψ H (3) P i = i i P P 2 = P 2 P 3 = P 3 P = O, P 2 i = P i (4) P + P 2 + P 3 = E 3 (5) i ϵ ip i H 0 0 (6) R = 0 0 [H,

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

newmain.dvi

newmain.dvi 数論 サンプルページ この本の定価 判型などは, 以下の URL からご覧いただけます. http://www.morikita.co.jp/books/mid/008142 このサンプルページの内容は, 第 2 版 1 刷発行当時のものです. Daniel DUVERNEY: THÉORIE DES NOMBRES c Dunod, Paris, 1998, This book is published

More information

2 (2) WinShell 2 (3) WinShell L A TEX ( ) ( ) 2 1 L A TEX.tex L A TEX WinShell (4) WinShell 2 L A TEX L A TEX DVI DeVice Independent (5) WinShell 2 DV

2 (2) WinShell 2 (3) WinShell L A TEX ( ) ( ) 2 1 L A TEX.tex L A TEX WinShell (4) WinShell 2 L A TEX L A TEX DVI DeVice Independent (5) WinShell 2 DV 1 L A TEX 2014 1 L A TEX [ 1 ] 1 : L A TEX 1.1 L A TEX L A TEX ( ) L A TEX L A TEX ( ) ( ) L A TEX \ \ Windows Y= \ Windows Y= 1.2 L A TEX WinShell Windows L A TEX WinShell Windows L A TEX WinShell L A

More information

II ( ) (7/31) II ( [ (3.4)] Navier Stokes [ (6/29)] Navier Stokes 3 [ (6/19)] Re

II ( ) (7/31) II (  [ (3.4)] Navier Stokes [ (6/29)] Navier Stokes 3 [ (6/19)] Re II 29 7 29-7-27 ( ) (7/31) II (http://www.damp.tottori-u.ac.jp/~ooshida/edu/fluid/) [ (3.4)] Navier Stokes [ (6/29)] Navier Stokes 3 [ (6/19)] Reynolds [ (4.6), (45.8)] [ p.186] Navier Stokes I Euler Navier

More information

4. ϵ(ν, T ) = c 4 u(ν, T ) ϵ(ν, T ) T ν π4 Planck dx = 0 e x 1 15 U(T ) x 3 U(T ) = σt 4 Stefan-Boltzmann σ 2π5 k 4 15c 2 h 3 = W m 2 K 4 5.

4. ϵ(ν, T ) = c 4 u(ν, T ) ϵ(ν, T ) T ν π4 Planck dx = 0 e x 1 15 U(T ) x 3 U(T ) = σt 4 Stefan-Boltzmann σ 2π5 k 4 15c 2 h 3 = W m 2 K 4 5. A 1. Boltzmann Planck u(ν, T )dν = 8πh ν 3 c 3 kt 1 dν h 6.63 10 34 J s Planck k 1.38 10 23 J K 1 Boltzmann u(ν, T ) T ν e hν c = 3 10 8 m s 1 2. Planck λ = c/ν Rayleigh-Jeans u(ν, T )dν = 8πν2 kt dν c

More information

A 2008 10 (2010 4 ) 1 1 1.1................................. 1 1.2..................................... 1 1.3............................ 3 1.3.1............................. 3 1.3.2..................................

More information

meiji_resume_1.PDF

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

More information

I, 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

TOP URL 1

TOP URL   1 TOP URL http://amonphys.web.fc2.com/ 1 30 3 30.1.............. 3 30.2........................... 4 30.3...................... 5 30.4........................ 6 30.5.................................. 8 30.6...............................

More information

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

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

More information

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

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

More information

all.dvi

all.dvi 38 5 Cauchy.,,,,., σ.,, 3,,. 5.1 Cauchy (a) (b) (a) (b) 5.1: 5.1. Cauchy 39 F Q Newton F F F Q F Q 5.2: n n ds df n ( 5.1). df n n df(n) df n, t n. t n = df n (5.1) ds 40 5 Cauchy t l n mds df n 5.3: t

More information

LaTeX実践講座 - これから TeXを使って文書を書きまくる人のために

LaTeX実践講座 - これから TeXを使って文書を書きまくる人のために L A T E X T E X 2 2016 7 29 ( ) ITPASS @ 3 508 1 2 3 L A T E X Tips 4 Beamer Emacs T E X YaTeX 5 1 2 3 L A T E X Tips 4 Beamer Emacs T E X YaTeX 5 T E X T E X T E X L A T E X,, , T E X, 1,... T E X 1 2

More information

LATEX

LATEX LATEX 2018 5 16 i 1 1 1.1 L A TEX?... 1 1.2 L A TEX?... 2 2 L A TEX 3 2.1... 3 2.2... 3 2.3... 4 2.4... 6 2.5... 7 3 ( ) 8 3.1... 8 3.2... 8 4 9 4.1... 9 4.2... 11 4.3... 11 4.4... 12 5 13 5.1 BiBTeX...

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション LaTeX Cheat Sheet 2015 ver. 2015/10/16 Matsuoka Ryo このスライドについて 1. このスライドは 北 大 理 学 部 を 中 心 とした 有 志 で 行 われている TeX 勉 強 会 で 使 われていた 資 料 です 2. このスライドの 不 正 確 な 記 述 によって 生 じた いかなる 損 害 に 関 しても 作 者 は 責 任 を 負 いかねます

More information

液晶の物理1:連続体理論(弾性,粘性)

液晶の物理1:連続体理論(弾性,粘性) The Physics of Liquid Crystals P. G. de Gennes and J. Prost (Oxford University Press, 1993) Liquid crystals are beautiful and mysterious; I am fond of them for both reasons. My hope is that some readers

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

201711grade1ouyou.pdf

201711grade1ouyou.pdf 2017 11 26 1 2 52 3 12 13 22 23 32 33 42 3 5 3 4 90 5 6 A 1 2 Web Web 3 4 1 2... 5 6 7 7 44 8 9 1 2 3 1 p p >2 2 A 1 2 0.6 0.4 0.52... (a) 0.6 0.4...... B 1 2 0.8-0.2 0.52..... (b) 0.6 0.52.... 1 A B 2

More information

1 (Contents) (1) Beginning of the Universe, Dark Energy and Dark Matter Noboru NAKANISHI 2 2. Problem of Heat Exchanger (1) Kenji

1 (Contents) (1) Beginning of the Universe, Dark Energy and Dark Matter Noboru NAKANISHI 2 2. Problem of Heat Exchanger (1) Kenji 8 4 2018 6 2018 6 7 1 (Contents) 1. 2 2. (1) 22 3. 31 1. Beginning of the Universe, Dark Energy and Dark Matter Noboru NAKANISHI 2 2. Problem of Heat Exchanger (1) Kenji SETO 22 3. Editorial Comments Tadashi

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

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

TOP URL 1

TOP URL   1 TOP URL http://amonphys.web.fc.com/ 3.............................. 3.............................. 4.3 4................... 5.4........................ 6.5........................ 8.6...........................7

More information

( ) ± = 2018

( ) ± = 2018 30 ( 3 ) ( ) 2018 ( ) ± = 2018 (PDF ), PDF PDF. PDF, ( ), ( ),,,,., PDF,,. , 7., 14 (SSH).,,,.,,,.,., 1.. 2.,,. 3.,,. 4...,, 14 16, 17 21, 22 26, 27( ), 28 32 SSH,,,, ( 7 9 ), ( 14 16 SSH ), ( 17 21, 22

More information

Part () () Γ Part ,

Part () () Γ Part , Contents a 6 6 6 6 6 6 6 7 7. 8.. 8.. 8.3. 8 Part. 9. 9.. 9.. 3. 3.. 3.. 3 4. 5 4.. 5 4.. 9 4.3. 3 Part. 6 5. () 6 5.. () 7 5.. 9 5.3. Γ 3 6. 3 6.. 3 6.. 3 6.3. 33 Part 3. 34 7. 34 7.. 34 7.. 34 8. 35

More information

semi4.dvi

semi4.dvi 1 2 1.1................................................. 2 1.2................................................ 3 1.3...................................................... 3 1.3.1.............................................

More information

Z: Q: R: C:

Z: Q: R: C: 0 Z: Q: R: C: 3 4 4 4................................ 4 4.................................. 7 5 3 5...................... 3 5......................... 40 5.3 snz) z)........................... 4 6 46 x

More information

春期講座 ~ 極限 1 1, 1 2, 1 3, 1 4,, 1 n, n n {a n } n a n α {a n } α {a n } α lim n an = α n a n α α {a n } {a n } {a n } 1. a n = 2 n {a n } 2, 4, 8, 16,

春期講座 ~ 極限 1 1, 1 2, 1 3, 1 4,, 1 n, n n {a n } n a n α {a n } α {a n } α lim n an = α n a n α α {a n } {a n } {a n } 1. a n = 2 n {a n } 2, 4, 8, 16, 春期講座 ~ 極限 1 1, 1 2, 1 3, 1 4,, 1 n, n n {a n } n a n α {a n } α {a n } α lim an = α n a n α α {a n } {a n } {a n } 1. a n = 2 n {a n } 2, 4, 8, 16, 32, n a n {a n } {a n } 2. a n = 10n + 1 {a n } lim an

More information

semi10.dvi

semi10.dvi TEX 2001 4 9 4 1 TEX 2 1.1 TEX.................................................. 2 1.2 L A TEX................................................ 2 1.2.1............................................. 2 1.2.2.............................................

More information

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

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

More information

1 (Berry,1975) 2-6 p (S πr 2 )p πr 2 p 2πRγ p p = 2γ R (2.5).1-1 : : : : ( ).2 α, β α, β () X S = X X α X β (.1) 1 2

1 (Berry,1975) 2-6 p (S πr 2 )p πr 2 p 2πRγ p p = 2γ R (2.5).1-1 : : : : ( ).2 α, β α, β () X S = X X α X β (.1) 1 2 2005 9/8-11 2 2.2 ( 2-5) γ ( ) γ cos θ 2πr πρhr 2 g h = 2γ cos θ ρgr (2.1) γ = ρgrh (2.2) 2 cos θ θ cos θ = 1 (2.2) γ = 1 ρgrh (2.) 2 2. p p ρgh p ( ) p p = p ρgh (2.) h p p = 2γ r 1 1 (Berry,1975) 2-6

More information

第86回日本感染症学会総会学術集会後抄録(II)

第86回日本感染症学会総会学術集会後抄録(II) χ μ μ μ μ β β μ μ μ μ β μ μ μ β β β α β β β λ Ι β μ μ β Δ Δ Δ Δ Δ μ μ α φ φ φ α γ φ φ γ φ φ γ γδ φ γδ γ φ φ φ φ φ φ φ φ φ φ φ φ φ α γ γ γ α α α α α γ γ γ γ γ γ γ α γ α γ γ μ μ κ κ α α α β α

More information

8 i, III,,,, III,, :!,,,, :!,,,,, 4:!,,,,,,!,,,, OK! 5:!,,,,,,,,,, OK 6:!, 0, 3:!,,,,! 7:!,,,,,, ii,,,,,, ( ),, :, ( ), ( ), :... : 3 ( )...,, () : ( )..., :,,, ( ), (,,, ),, (ϵ δ ), ( ), (ˆ ˆ;),,,,,,!,,,,.,,

More information

1 L A TEX

1 L A TEX L A TEX ( ) 2011 11 4 L A TEX 2007 4 4 2007 2007 9 4 2007 2007 9 18 2009 9 9 2009 2011 9 4 2011 2011 11 4 (A,B) http://osksn2.hep.sci.osaka-u.ac.jp/ taku/kakenhilatex/ http://jelt.mtk.nao.ac.jp/ iye/kakenhilatex/

More information

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

More information

all.dvi

all.dvi 72 9 Hooke,,,. Hooke. 9.1 Hooke 1 Hooke. 1, 1 Hooke. σ, ε, Young. σ ε (9.1), Young. τ γ G τ Gγ (9.2) X 1, X 2. Poisson, Poisson ν. ν ε 22 (9.) ε 11 F F X 2 X 1 9.1: Poisson 9.1. Hooke 7 Young Poisson G

More information

I, II 1, 2 ɛ-δ 100 A = A 4 : 6 = max{ A, } A A 10

I, II 1, 2 ɛ-δ 100 A = A 4 : 6 = max{ A, } A A 10 1 2007.4.13. 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 0. 1. 1. 2. 3. 2. ɛ-δ 1. ɛ-n

More information

L \ L annotation / / / ; / ; / ;.../ ;../ ; / ;dash/ ;hyphen/ ; / ; / ; / ; / ; / ; ;degree/ ;minute/ ;second/ ;cent/ ;pond/ ;ss/ ;paragraph/ ;dagger/

L \ L annotation / / / ; / ; / ;.../ ;../ ; / ;dash/ ;hyphen/ ; / ; / ; / ; / ; / ; ;degree/ ;minute/ ;second/ ;cent/ ;pond/ ;ss/ ;paragraph/ ;dagger/ L \ L annotation / / / ; /; /;.../;../ ; /;dash/ ;hyphen/ ; / ; / ; / ; / ; / ; ;degree/ ;minute/ ;second/ ;cent/;pond/ ;ss/ ;paragraph/ ;dagger/ ;ddagger/ ;angstrom/;permil/ ; cyrillic/ ;sharp/ ;flat/

More information

TOP URL 1

TOP URL   1 TOP URL http://amonphys.web.fc.com/ 1 19 3 19.1................... 3 19.............................. 4 19.3............................... 6 19.4.............................. 8 19.5.............................

More information

1 filename=mathformula tex 1 ax 2 + bx + c = 0, x = b ± b 2 4ac, (1.1) 2a x 1 + x 2 = b a, x 1x 2 = c a, (1.2) ax 2 + 2b x + c = 0, x = b ± b 2

1 filename=mathformula tex 1 ax 2 + bx + c = 0, x = b ± b 2 4ac, (1.1) 2a x 1 + x 2 = b a, x 1x 2 = c a, (1.2) ax 2 + 2b x + c = 0, x = b ± b 2 filename=mathformula58.tex ax + bx + c =, x = b ± b 4ac, (.) a x + x = b a, x x = c a, (.) ax + b x + c =, x = b ± b ac. a (.3). sin(a ± B) = sin A cos B ± cos A sin B, (.) cos(a ± B) = cos A cos B sin

More information

Dirac 38 5 Dirac 4 4 γ µ p µ p µ + m 2 = ( p µ γ µ + m)(p ν γ ν + m) (5.1) γ = p µ p ν γ µ γ ν p µ γ µ m + mp ν γ ν + m 2 = 1 2 p µp ν {γ µ, γ ν } + m

Dirac 38 5 Dirac 4 4 γ µ p µ p µ + m 2 = ( p µ γ µ + m)(p ν γ ν + m) (5.1) γ = p µ p ν γ µ γ ν p µ γ µ m + mp ν γ ν + m 2 = 1 2 p µp ν {γ µ, γ ν } + m Dirac 38 5 Dirac 4 4 γ µ p µ p µ + m 2 p µ γ µ + mp ν γ ν + m 5.1 γ p µ p ν γ µ γ ν p µ γ µ m + mp ν γ ν + m 2 1 2 p µp ν {γ µ, γ ν } + m 2 5.2 p m p p µ γ µ {, } 10 γ {γ µ, γ ν } 2η µν 5.3 p µ γ µ + mp

More information

(Compton Scattering) Beaming 1 exp [i (k x ωt)] k λ k = 2π/λ ω = 2πν k = ω/c k x ωt ( ω ) k α c, k k x ωt η αβ k α x β diag( + ++) x β = (ct, x) O O x

(Compton Scattering) Beaming 1 exp [i (k x ωt)] k λ k = 2π/λ ω = 2πν k = ω/c k x ωt ( ω ) k α c, k k x ωt η αβ k α x β diag( + ++) x β = (ct, x) O O x Compton Scattering Beaming exp [i k x ωt] k λ k π/λ ω πν k ω/c k x ωt ω k α c, k k x ωt η αβ k α x β diag + ++ x β ct, x O O x O O v k α k α β, γ k γ k βk, k γ k + βk k γ k k, k γ k + βk 3 k k 4 k 3 k

More information

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

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

More information

ohpmain.dvi

ohpmain.dvi fujisawa@ism.ac.jp 1 Contents 1. 2. 3. 4. γ- 2 1. 3 10 5.6, 5.7, 5.4, 5.5, 5.8, 5.5, 5.3, 5.6, 5.4, 5.2. 5.5 5.6 +5.7 +5.4 +5.5 +5.8 +5.5 +5.3 +5.6 +5.4 +5.2 =5.5. 10 outlier 5 5.6, 5.7, 5.4, 5.5, 5.8,

More information

(iii) 0 V, x V, x + 0 = x. 0. (iv) x V, y V, x + y = 0., y x, y = x. (v) 1x = x. (vii) (α + β)x = αx + βx. (viii) (αβ)x = α(βx)., V, C.,,., (1)

(iii) 0 V, x V, x + 0 = x. 0. (iv) x V, y V, x + y = 0., y x, y = x. (v) 1x = x. (vii) (α + β)x = αx + βx. (viii) (αβ)x = α(βx)., V, C.,,., (1) 1. 1.1...,. 1.1.1 V, V x, y, x y x + y x + y V,, V x α, αx αx V,, (i) (viii) : x, y, z V, α, β C, (i) x + y = y + x. (ii) (x + y) + z = x + (y + z). 1 (iii) 0 V, x V, x + 0 = x. 0. (iv) x V, y V, x + y

More information

Microsoft Word - Wordで楽に数式を作る.docx

Microsoft Word - Wordで楽に数式を作る.docx Ver. 3.1 2015/1/11 門 馬 英 一 郎 Word 1 する必要がある Alt+=の後に Ctrl+i とセットで覚えておく 1.4. 変換が出来ない場合 ごく稀に以下で説明する変換機能が無効になる場合がある その際は Word を再起動するとまた使えるようになる 1.5. 独立数式と文中数式 数式のスタイルは独立数式 文中数式(2 次元)と文中数式(線形)の 3 種類があ り 数式モードの右端の矢印を選ぶとメニューが出てくる

More information

コンピュータ基礎 5. マークアップによるレポート作成

コンピュータ基礎 5. マークアップによるレポート作成 5. Chris Plaintail December 13, 2016 1 / 70 1 L A TEX L A TEX 2 L A TEX 3 4 L A TEXbeamer 2 / 70 L A TEX 3 / 70 PDF 4 / 70 HTML(Hyper Text Markup Language) XML(eXtensible Markup Language) XHTML, SVG, SMIL,

More information

/02/18

/02/18 3 09/0/8 i III,,,, III,?,,,,,,,,,,,,,,,,,,,,?,?,,,,,,,,,,,,,,!!!,? 3,,,, ii,,,!,,,, OK! :!,,,, :!,,,,,, 3:!,, 4:!,,,, 5:!,,! 7:!,,,,, 8:!,! 9:!,,,,,,,,, ( ),, :, ( ), ( ), 6:!,,, :... : 3 ( )... iii,,

More information

Note.tex 2008/09/19( )

Note.tex 2008/09/19( ) 1 20 9 19 2 1 5 1.1........................ 5 1.2............................. 8 2 9 2.1............................. 9 2.2.............................. 10 3 13 3.1.............................. 13 3.2..................................

More information

TEX 6.2. EQUATIONS Y=[ Y=] equation y = ax + b y = ax + b (6.1) Y=[ Y=] Y=nonumber eqnarray 3 2 eqnarray equation Y=Y= eqnarray y = ax + b (6.2) y = x

TEX 6.2. EQUATIONS Y=[ Y=] equation y = ax + b y = ax + b (6.1) Y=[ Y=] Y=nonumber eqnarray 3 2 eqnarray equation Y=Y= eqnarray y = ax + b (6.2) y = x 6 ArkOak TEX L A TEX2e 2015 11 4 6.1 making title 6.2 Equations 6.2.1 y = ax + b $ $ x x $ 6.2.2 Y=[ Y=] equation 1 TEX 6.2. EQUATIONS Y=[ Y=] equation y = ax + b y = ax + b (6.1) Y=[ Y=] Y=nonumber eqnarray

More information

Untitled

Untitled II 14 14-7-8 8/4 II (http://www.damp.tottori-u.ac.jp/~ooshida/edu/fluid/) [ (3.4)] Navier Stokes [ 6/ ] Navier Stokes 3 [ ] Reynolds [ (4.6), (45.8)] [ p.186] Navier Stokes I 1 balance law t (ρv i )+ j

More information

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

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

More information

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

m(ẍ + γẋ + ω 0 x) = ee (2.118) e iωt P(ω) = χ(ω)e = ex = e2 E(ω) m ω0 2 ω2 iωγ (2.119) Z N ϵ(ω) ϵ 0 = 1 + Ne2 m j f j ω 2 j ω2 iωγ j (2.120)

m(ẍ + γẋ + ω 0 x) = ee (2.118) e iωt P(ω) = χ(ω)e = ex = e2 E(ω) m ω0 2 ω2 iωγ (2.119) Z N ϵ(ω) ϵ 0 = 1 + Ne2 m j f j ω 2 j ω2 iωγ j (2.120) 2.6 2.6.1 mẍ + γẋ + ω 0 x) = ee 2.118) e iωt Pω) = χω)e = ex = e2 Eω) m ω0 2 ω2 iωγ 2.119) Z N ϵω) ϵ 0 = 1 + Ne2 m j f j ω 2 j ω2 iωγ j 2.120) Z ω ω j γ j f j f j f j sum j f j = Z 2.120 ω ω j, γ ϵω) ϵ

More information

V(x) m e V 0 cos x π x π V(x) = x < π, x > π V 0 (i) x = 0 (V(x) V 0 (1 x 2 /2)) n n d 2 f dξ 2ξ d f 2 dξ + 2n f = 0 H n (ξ) (ii) H

V(x) m e V 0 cos x π x π V(x) = x < π, x > π V 0 (i) x = 0 (V(x) V 0 (1 x 2 /2)) n n d 2 f dξ 2ξ d f 2 dξ + 2n f = 0 H n (ξ) (ii) H 199 1 1 199 1 1. Vx) m e V cos x π x π Vx) = x < π, x > π V i) x = Vx) V 1 x /)) n n d f dξ ξ d f dξ + n f = H n ξ) ii) H n ξ) = 1) n expξ ) dn dξ n exp ξ )) H n ξ)h m ξ) exp ξ )dξ = π n n!δ n,m x = Vx)

More information

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

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

More information

Excel ではじめる数値解析 サンプルページ この本の定価 判型などは, 以下の URL からご覧いただけます. このサンプルページの内容は, 初版 1 刷発行時のものです.

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

More information

Ver.2.2 20.07.2 3 200 6 2 4 ) 2) 3) 4) 5) (S45 9 ) ( 4) III 6) 7) 8) 9) ) 2) 3) 4) BASIC 5) 6) 7) 8) 9) ..2 3.2. 3.2.2 4.2.3 5.2.4 6.3 8.3. 8.3.2 8.3.3 9.4 2.5 3.6 5 2.6. 5.6.2 6.6.3 9.6.4 20.6.5 2.6.6

More information

1 I 1.1 ± e = = - = C C MKSA [m], [Kg] [s] [A] 1C 1A 1 MKSA 1C 1C +q q +q q 1

1 I 1.1 ± e = = - = C C MKSA [m], [Kg] [s] [A] 1C 1A 1 MKSA 1C 1C +q q +q q 1 1 I 1.1 ± e = = - =1.602 10 19 C C MKA [m], [Kg] [s] [A] 1C 1A 1 MKA 1C 1C +q q +q q 1 1.1 r 1,2 q 1, q 2 r 12 2 q 1, q 2 2 F 12 = k q 1q 2 r 12 2 (1.1) k 2 k 2 ( r 1 r 2 ) ( r 2 r 1 ) q 1 q 2 (q 1 q 2

More information

http://www.ike-dyn.ritsumei.ac.jp/ hyoo/wave.html 1 1, 5 3 1.1 1..................................... 3 1.2 5.1................................... 4 1.3.......................... 5 1.4 5.2, 5.3....................

More information

1. 1 A : l l : (1) l m (m 3) (2) m (3) n (n 3) (4) A α, β γ α β + γ = 2 m l lm n nα nα = lm. α = lm n. m lm 2β 2β = lm β = lm 2. γ l 2. 3

1. 1 A : l l : (1) l m (m 3) (2) m (3) n (n 3) (4) A α, β γ α β + γ = 2 m l lm n nα nα = lm. α = lm n. m lm 2β 2β = lm β = lm 2. γ l 2. 3 1. 1 A : l l : (1) l m (m 3) (2) m (3) n (n 3) (4) A 2 1 2 1 2 3 α, β γ α β + γ = 2 m l lm n nα nα = lm. α = lm n. m lm 2β 2β = lm β = lm 2. γ l 2. 3 4 P, Q R n = {(x 1, x 2,, x n ) ; x 1, x 2,, x n R}

More information

( ) 2002 1 1 1 1.1....................................... 1 1.1.1................................. 1 1.1.2................................. 1 1.1.3................... 3 1.1.4......................................

More information

2.2 h h l L h L = l cot h (1) (1) L l L l l = L tan h (2) (2) L l 2 l 3 h 2.3 a h a h (a, h)

2.2 h h l L h L = l cot h (1) (1) L l L l l = L tan h (2) (2) L l 2 l 3 h 2.3 a h a h (a, h) 1 16 10 5 1 2 2.1 a a a 1 1 1 2.2 h h l L h L = l cot h (1) (1) L l L l l = L tan h (2) (2) L l 2 l 3 h 2.3 a h a h (a, h) 4 2 3 4 2 5 2.4 x y (x,y) l a x = l cot h cos a, (3) y = l cot h sin a (4) h a

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