-
Notifications
You must be signed in to change notification settings - Fork 21
/
log2.tex
8127 lines (6899 loc) · 279 KB
/
log2.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
\documentclass[11pt,a4paper,titlepage]{article}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsthm}
\usepackage{commath}
\usepackage{xcolor}
\usepackage{hyperref}
\usepackage[skins,theorems]{tcolorbox}
\usepackage{titlesec}
\usepackage{wrapfig}
\usepackage{mathtools}
\usepackage{pgfplots}
\usepackage{subcaption}
\usepackage{float}
\usepackage{relsize}
\usepackage[inline]{enumitem}
\usepackage{cancel}
\usepackage{esint}
\usepackage{graphicx}
\usepackage{caption}
\usepackage{extarrows}
\usepackage[no-math]{fontspec}
\setmainfont{Times New Roman}
\setsansfont{Arial}
%\newfontfamily\greekfont[Script=Greek]{Linux Libertine O}
%\newfontfamily\greekfontsf[Script=Greek]{Linux Libertine O}
\usepackage{polyglossia}
\newfontfamily\greekfont[Script=Greek]{Times New Roman}
\newfontfamily\greekfontsf[Script=Greek]{Arial}
\newfontfamily\greekfonttt[Script=Greek]{Latin Modern Mono}
%\usepackage[greek]{babel}
\setdefaultlanguage{greek}
\setotherlanguage{english}
\newcommand{\textlatin}[1]{#1}
%\usepackage[utf8]{inputenc}
%\usepackage[greek]{babel}
\usetikzlibrary{arrows.meta}
\usetikzlibrary{calc}
%\usepackage{tkz-euclide} % loads TikZ and tkz-base
%\usetkzobj{angles} % important you want to use angles
\newlist{enumparen}{enumerate}{1}
\setlist[enumparen]{label=(\arabic*)}
\newlist{enumlatin}{enumerate}{1}
\setlist[enumlatin]{label=(\alph*)}
\usepackage[left=2cm,right=2cm,top=2cm,bottom=2cm]{geometry}
\makeatletter
%\newcommand{\attnboxed}[1]{\textcolor{red}{\fbox{\normalcolor\m@th$\displaystyle#1$}}}
\makeatother
\tcbuselibrary{breakable}
\tcbset{highlight math style={enhanced,colframe=red,colback=white,%
arc=0pt,boxrule=1pt,shrink tight,boxsep=1.5mm,extrude by=0.5mm}}
\newcommand{\attnboxed}[1]{\tcbhighmath[colback=red!5!white,drop fuzzy shadow,arc=0mm]{#1}}
\titleformat{\section}{\bf\Large}{Κεφάλαιο \thesection}{1em}{}
\newtcolorbox{attnbox}[1]{breakable,colback=red!5!white,%
colframe=red!75!black,fonttitle=\bfseries,title=#1}
\newtcolorbox{infobox}[1]{colback=blue!5!white,%
colframe=blue!75!black,fonttitle=\bfseries,title=#1}
\newtcolorbox{tbox}[1]{colback=green!5!white,%
colframe=green!75!black,fonttitle=\bfseries,title=Θεώρημα #1}
\title{Σημειώσεις Λογισμού ΙΙ}
\date{2016, Εαρινό εξάμηνο}
\author{\textlatin{\url{https://github.com/kongr45gpen/ece-notes}}}
\begin{document}
\maketitle
\tableofcontents
\newpage
\part{Ατρέας}
\setcounter{section}{-1}
\begin{itemize}
\item 2 ώρες Ζάχαρης (3.5 μον.)
\item 4 ώρες εγώ (6.5 μον.)
\textlatin{http://users.auth.gr/natreas}
\end{itemize}
\paragraph{}
\begin{itemize}
\item Ρασσιάς Θ.
\item Κωνσταντινίδου Μ.
\item Ξένος
\item Σημειώσεις
\end{itemize}
\section[Διανυσματικές συναρτήσεις \& καμπύλες στο χώρο]{Διανυσματικές συναρτήσεις \\ Καμπύλες στο χώρο}
\paragraph{Ορ.}
Μία συνάρτηση \( \mathbf{r}: A \subseteq \mathbb R \rightarrow \mathbb R ^ n \) απαρτίζεται από:
(α). το πεδίο ορισμού της \(A\) που είναι υποσύνολο της πραγματικής ευθείας και
(β). έναν τύπο έτσι ώστε σε κάθε πραγματικό αριθμό \(t \in A\) αντιστοιχεί \textbf{ΜΟΝΑΔΙΚΟ ΔΙΑΝΥΣΜΑ} \( \mathbf{r}(t) \) στο (διανυσματικό) χώρο \( \mathbb R ^ n \) δηλαδή:
\[
A \subseteq \mathbb R \rightarrow \mathbb R ^ n: \mathbf{r}(t) = \left( f_1(t), \dots, f_n(t) \right)
\]
όπου \(f_1: A \subseteq \mathbb R \rightarrow \mathbb R\) \textbf{συνήθεις} πραγματικές συναρτήσεις.
\paragraph{}
Πεδίο ορισμού διανυσματικής συνάρτησης είναι εκείνο το υποσύνολο του \( \mathbb R \) για όλα τα σημεία του οποίου ο τύπος της συνάρτησης \textbf{ΕΧΕΙ ΝΟΗΜΑ}.
\emph{Πρακτικά}, αν
\[ \mathbf{r}(t) = \left( f_1(t), \dots, f_n(t) \right), \]
τότε το πεδίο ορισμού της \( \mathbf{r} \) προκύπτει από τη \textbf{συναλήθευση} των πεδίων ορισμού ΟΛΩΝ των συναρτήσεων \( f_1,\dots,f_n\).
\emph{π.χ.}
\[ \mathbf r (t) = \left( \ln t, \sqrt{1-t^2} \right)
\quad \leftarrow \text{διανυσματική συνάρτηση πραγματικής μεταβλητής}
\]
Πρέπει
\[
\begin{cases}
t > 0 \text{ (λόγω λογαρίθμου)} \\
\quad \text{και} \\
1-t^2 > 0 \text{ (λόγω ρίζας)}
\end{cases}
\]
Άρα Π.Ο. της \(\mathbf r\) είναι το \((0,1]\).
\subsubsection{Όριο και συνέχεια διανυσματικών συναρτήσεων}
\paragraph{Θ.} Έστω \(\mathbf r: A \subseteq \mathbb R \rightarrow \mathbb R ^ n\), \( \mathbf r(t) = \left( f_1(t), \dots, f_n(t) \right) \) διανυσματική συνάρτηση και \(t_0\) είναι σημείο συσσώρευσης (σ.σ.) του \(A\).
Τότε:
\[ \lim _{ t \to t_0 } \mathbf r(t) = \vec{a} = \left( a_1, \dots, a_n \right) \iff
\begin{cases}
\lim_{ t \to t_0 } f_1(t) = a_1 \\
\quad \vdots \\
\lim_{ t \to t_0 } f_n(t) = a_n \\
\end{cases}
\]
Επίσης, αν \(τ_0 \in A\) είναι και σ.σ. του \(Α\), τότε:
\[ \mathbf r \text{ συνεχής στο } τ_0 \iff
f_1,f_2,\dots,f_n \text{ συνεχείς στο } τ_0
\]
δηλ.
\[ \lim _{ t \to t_0 } \mathbf r(t) = \mathbf r (t_0) \iff
\begin{cases}
\lim_{ t \to t_0 } f_1(t) = f_1(t_0) \\
\quad \vdots \\
\lim_{ t \to t_0 } f_n(t) = f_n(t_0) \\
\end{cases}
\]
\subsection{Καμπύλες στον \(\mathbb R^n\)}
\paragraph{Ορ.}
Έστω \(α,β \in \mathbb R\) με \(α<β\). Κάθε \textbf{ΣΥΝΕΧΗΣ} διανυσματική συνάρτηση:
\[
\mathbf{\gamma}: \attnboxed{[a,b]}
\rightarrow \mathbb R^n: \mathbf r_\gamma(t) = \left( f_1(t),f_2(t),\dots,f_n(t) \right)
\]
καλείται καμπύλη στο χώρο \( \mathbb R ^n \) (και το γράφημά της καλείται ΙΧΝΟΣ της \(\mathbf \gamma\)).
\begin{tikzpicture}
\draw[gray, thick] (-2.5,-2.5) -- (2.5,2.5);
\node[above right, rotate=45] at (-2.5,-2.5) {\(+\infty\)};
\node[above left, rotate=45] at (2.5,2.5) {\(-\infty\)};
\filldraw[black] (0.5,0.5) circle (2pt) node[anchor=west] {\(a\)};
\def\away{7}
\draw[->] (xyz cs:x=\away) -- (xyz cs:x=\away+2.5);
\draw[->] (xyz cs:y=0,x=\away) -- (xyz cs:y=2.5,x=\away);
\draw[->] (xyz cs:z=0,x=\away) -- (xyz cs:z=5,x=\away);
\draw[-{>[scale=2.5,width=3]}, gray] (0.5,0.5) to [bend left=90] (\away+1,3);
\coordinate (A) at (\away+1,2);
\coordinate (B) at (\away+2,1,-0.5);
\coordinate (C) at (\away+3.5,3.5);
\draw [blue, very thick] plot [smooth, tension=2] coordinates { (A) (B) (C) };
\draw[->, very thick] (\away,0) -- (A) node[anchor=east] {\(\mathbf r(a)\)};
\draw[->, very thick] (\away,0) -- (B) node[anchor=west] {\(\mathbf r(t)\)};
\draw[->, very thick] (\away,0) -- (C) node[anchor=east] {\(\mathbf r(b)\)};
\end{tikzpicture}
\subsubsection*{}
Έστω \( \gamma: [a,b] \rightarrow \mathbb R ^ n \) καμπύλη.
\begin{itemize}
\item Η \(\gamma\) θα καλείται \textbf{ΑΠΛΗ} αν είναι 1-1, δηλ. \( \forall t \in (a,b) \) με \(t_1 \neq t_2 \implies \mathbf r(t_1) \neq \mathbf r(t_2)\) (δηλ. ΔΕΝ αυτοτέμνεται).
\item Η \(\gamma\) καλείται \textbf{ΑΝΟΙΚΤΗ}, αν \[\mathbf r(a) \neq \mathbf r(b),\] αλλιώς \textbf{ΚΛΕΙΣΤΗ}.
\item Όλες οι καμπύλες \(\gamma: [a,b] \rightarrow \mathbb R ^ n\) \[\mathbf r_\gamma(t) = \left( f_1(t),f_2(t),\dots,f_n(t) \right)\] λέμε ότι είναι καμπύλες σε \textbf{ΠΑΡΑΜΕΤΡΙΚΗ} μορφή και οι
\(
\begin{cases}
x_1 = f_1(t) \\
x_2 = f_2(t) \\
\quad \vdots \\
x_n = f_n(t)
\end{cases}
\) καλούνται παραμετρικές εξισώσεις της \(\gamma\).
\item Δύο καμπύλες μπορεί να έχουν το \textbf{ΙΔΙΟ ΙΧΝΟΣ}.
\paragraph{π.χ.}
\begin{alignat*}{2}
&\mathbf r_{\gamma_1}(t) = ( \cos t, && \sin t ) \quad t \in [0, 2 \pi ) \\
&\mathbf r_{\gamma_2}(t) = ( \cos t, - && \sin t ) \quad t \in [0, 2 \pi )
\end{alignat*}
Δηλαδή το ίχνος είναι το ίδιο ΑΛΛΑ αλλάζει η ΦΟΡΑ ΔΙΑΓΡΑΦΗΣ ή ο προσανατολισμός.
\emph{Έτσι}, σε κάθε καμπύλη \(\gamma\) σε παραμετρική μορφή αντιστοιχεί με φυσικό τρόπο ένας \textbf{ΠΡΟΣΑΝΑΤΟΛΙΣΜΟΣ} (ή ΦΟΡΑ ΔΙΑΓΡΑΦΗΣ), πάντα προς την κατεύθυνση αύξησης των \(\gamma\).
\item Έστω \(\gamma_1: [a,b] \rightarrow \mathbb R^n, \gamma_2: [b,c] \rightarrow \mathbb R^n\) καμπύλες.
Καλώ \textbf{ΑΝΤΙΘΕΤΗ} της \(\gamma_1\), συμβολικά \(- \gamma_1\), την καμπύλη που έχει ίδιο ΙΧΝΟΣ με τη \(\gamma_1\) αλλά \textbf{αντίθετη} φορά διαγραφής.
\[ -{\gamma_1} : [a,b] \rightarrow \mathbb R^n : \mathbf r_{-\gamma_1}(t) - \mathbf r_{\gamma_1}(a+b-t)
\]
\item Αν \(\mathbf r_{\gamma_1}(b) = r_{\gamma_2}(b)\), ορίζω την καμπύλη \( \gamma_1+\gamma_2 \) ως εξής:
\[
\gamma_1+\gamma_2: [a,c] \rightarrow \mathbb R^n:
\mathbf r_{\gamma_1+\gamma_2}(t) =
\begin{cases}
\mathbf r_{\gamma_1}, \quad t \in [a,b] \\
\mathbf r_{\gamma_2}, \quad t \in (b, c]
\end{cases}
\]
\item Έστω \( \phi: [c,d] \rightarrow [a,b] \) \textbf{συνεχής} και γνησίως \textbf{μονότονη} συνάρτηση. Τότε η \textbf{σύνθεση}: \[ \mathbf \gamma_1 \circ \phi: [c, d] \rightarrow \mathbb R ^n \]
είναι καμπύλη που καλείται \textbf{ΙΣΟΔΥΝΑΜΗ} της \(\gamma_1\) και έχει το \textbf{ΙΔΙΟ ΙΧΝΟΣ} με τη \(\gamma_1\).
\item Αν \(\phi\) γν. αύξουσα, τότε η σύνθεση έχει και ίδιο προσανατολισμό, αλλιώς αντίθετο προσανατολισμό σε σχέση με τη \(\gamma_1\).
\end{itemize}
\subsection{Παραδείγματα καμπύλων σε παραμετρική μορφή}
\begin{itemize}
\item Έστω \(A,B \in \mathbb R^n\), το \(\overrightarrow{AB}\) παραμετροποιείται ως:
\begin{align*}
\mathbf r(t) &= (\text{αρχή}) + (\text{πέρας}-\text{αρχή}), \quad \attnboxed{t \in [0,1]} \\
&= (a_1, \dots, a_n) + t \left( (b_1, \dots, b_n) - (a_1, \dots, a_n) \right) \\
&= \left( a_1 + t (b_1 - a_1 ), \dots, a_n + t (b_n - a_n) \right), \quad \attnboxed{t \in [0,1]}
\end{align*}
επειδή για κάθε σημείο \(X \in \overrightarrow{AB}\):
\[
\overrightarrow{OX} = \overrightarrow{OA} + \overrightarrow{AX}
= \overrightarrow{OA} + t \overrightarrow{AB}
\]
\item Κύκλος \( (x-a)^2 + (y-b)^2 = R^2\) στο χώρο \(\mathbb R^2\):
\[\mathbf r(t) = \left( f_1(t), f_2(t) \right), \quad t \in [a,b] \quad \leftarrow \text{ παραμετροποίηση γενικά} \]
\emph{Ειδικότερα}
\[
\mathbf r(t) = \left( a+R \cos t, b+ R \sin t \right), \quad t \in [0, 2 \pi)
\]
με θετική φορά διαγραφής (αντιωρολογιακή).
Ή:
\[
\mathbf r(t) = \left( a+R \cos t, b - R \sin t \right), \quad t \in [0, 2 \pi)
\] με αρνητική φορά διαγραφής.
\item Συνάρτηση \(y=f(x)\) πραγματική όπου \(x \in [a,b]\)
\[\mathbf r(t) = \left( x(t), y(t) \right), \quad t \in [a,b] \quad \leftarrow \text{ παραμετροποίηση γενικά} \]
\emph{Ειδικότερα}
\[
\mathbf r(t) = \left( t, f(t) \right) \quad t \in [a, b)
\]
\item Έλλειψη \( \left( \frac{x-a}{A} \right) ^ 2 + \left( \frac{y-b}{B} \right) ^ 2 = 1 \quad \left( \mathbb R^2 \right) \)
\[
\begin{cases}
\frac{x-a}{A} &= \cos t \\
\frac{y-b}{B} &= \sin t
\end{cases}, \text{ τότε}
\begin{cases}
\frac{x}{A} = a+ A \cos{t} \\
\frac{y}{B} = b+ B \sin{t}
\end{cases}
\]
Έτσι \(\mathbf r (t) = (x, y) = (a + A \cos t, b + B \sin t), \quad t \in [0, 2 \pi) \)
\item Υπερβολή \( \left( \frac{x-a}{A} \right) ^ 2 - \left( \frac{y-b}{B} \right) ^ 2 = 1 \quad \left( \mathbb R^2 \right) \)
\[
\mathbf r (t) = (a + A \cosh t, b + B \sinh t), \quad t \in [0, 2 \pi)
\]
\end{itemize}
\subsection{Παράγωγος διανυσματικών συναρτήσεων μίας μεταβλητής}
\paragraph{Ορ.}
Έστω \(\mathbf r: A \subset \mathbb R \rightarrow \mathbb R^n : \mathbf r(t) = \left( f_1(t), \dots, f_n(t) \right), \quad t_0 \in A \) είναι σ.σ. του \(Α\). Θα λέμε ότι η \(\mathbf r\) παραγωγίσιμη στο \(t_0\) αν υπάρχει το όριο:
\[
\lim _{t \to t_0} \frac{\mathbf r(t)- \mathbf{r}(t_0)}{t-t_0}
\]
ή ισοδύναμα
\[
\lim _{h \to 0} \frac{\mathbf r(t_0+h)- \mathbf{r}(t_0)}{h}
\]
το οποίο είναι \textbf{ΔΙΑΝΥΣΜΑ} που συμβολίζουμε με \(\mathbf r' (t_0)\) ή \(\frac{\dif \mathbf r}{\dif t}\).
\begin{itemize}
\item Αν η \(\mathbf r\) παραγωγίσιμη σε κάθε σημείο του \(Α\), λέμε ότι είναι παραγωγίσιμη στο \(Α\).
\end{itemize}
\begin{tbox}{}
\(\mathbf{r}\text{ παραγωγίσιμη στο }A \iff f_1,\dots,f_n \text{ παραγ. στο } A\) και
\[
\mathbf r'(t) = \left( f_1'(t),\dots, f_n'(t) \right)
\]
\end{tbox}
\subsubsection{Γεωμετρική ερμηνεία}
Έστω \(h > 0\)
\begin{tikzpicture}
\draw[gray, thick] (-2.5,-2.5) -- (2.5,2.5);
\node[above right, rotate=45] at (-2.5,-2.5) {\(+\infty\)};
\node[above left, rotate=45] at (2.5,2.5) {\(-\infty\)};
\filldraw[black] (0.5,0.5) circle (2pt) node[anchor=west] {\(t_0\)};
\filldraw[black] (-1,-1) circle (2pt) node[anchor=west] {\(t_0+h\)};
\def\away{7}
\draw[->] (xyz cs:x=\away) -- (xyz cs:x=\away+2.5);
\draw[->] (xyz cs:y=0,x=\away) -- (xyz cs:y=2.5,x=\away);
\draw[->] (xyz cs:z=0,x=\away) -- (xyz cs:z=5,x=\away);
\draw[-{>[scale=2.5,width=3]}, gray] (0.5,0.5) to [bend left=90] (\away+1,3);
\coordinate (A) at (\away+0.2,1);
\coordinate (B) at (\away+1.5,3.2);
\coordinate (C) at (\away+4,4);
\draw [blue, very thick] plot [smooth, tension=1] coordinates { (A) (B) (C) };
%\draw[->, very thick] (\away,0) -- (A) node[anchor=east] {\(\mathbf r(a)\)};
\draw[->, very thick] (\away,0) -- (B) node[anchor=west] {\(\mathbf r(t_0)\)};
\draw[->, very thick] (\away,0) -- (C) node[anchor=east] {\(\mathbf r(t_0+h)\)};
\draw[->] (B) -- (C);
\end{tikzpicture}
Το \( \mathbf r'(t) \) έχει τη διεύθυνση της εφαπτόμενης ευθείας της \( \mathbf r\) στο σημείο \( \mathbf r(τ_0)\) και φορά τη φορά της κίνησης. Μπορεί να αναπαριστά π.χ. την ταχύτητα ενός υλικού σημείου.
\subsubsection[Εξίσωση εφαπτομένης]{Εξίσωση (Διανυσματική) εφαπτόμενης ευθείας καμπύλης \(\gamma: [a,b] \rightarrow \mathbb R ^n = \left(f_1(t),\dots,f_n(t) \right)\) παραγωγίσιμης στο σημείο \(t_0\)}
{\small Αρκεί να ξέρω σημείο της ευθείας και διάνυσμα παράλληλο στην ευθεία}
\begin{attnbox}{Προσοχή!!!}
\[
\mathbf r_{\text{εφ}}(t) = \mathbf r(t_0) + \lambda \cdot \mathbf r'(t_0), \quad \lambda \in \mathbb R
\]
\end{attnbox}
\subsubsection{Ιδιότητες παραγώγου}
Έστω \( \mathbf r_1, \mathbf r_2:[a,b] \rightarrow \mathbb R ^n\) παραγωγ. καμπύλες, τότε:
\begin{itemize}
\item \( \big( \mathbf r_1 \cdot \mathbf r_2 \big) ' (t) =
\mathbf r_1' \cdot \mathbf r_2(t) + \mathbf r_1 \cdot \mathbf r_2'(t)
\)
\item \( \big( \mathbf r_1 \times \mathbf r_2 \big) ' (t) =
\mathbf r_1' \times \mathbf r_2(t) + \mathbf r_1 \times \mathbf r_2'(t)
\)
\item \begin{align*}
[ \mathbf r_1, \mathbf r_2, \mathbf r_3 ]'(t) =
&[ \mathbf r_1', \mathbf r_2, \mathbf r_3 ] + \\
&[ \mathbf r_1, \mathbf r_2',\mathbf r_3 ] + \\
&[ \mathbf r_1, \mathbf r_2, \mathbf r_3' ]
\end{align*}
\end{itemize}
\subsection{}
\begin{infobox}{Πρόταση}
Έστω \( \gamma: [a,b] \rightarrow \mathbb R^n: \mathbf r_\gamma (t) = \left( f_1(t),\dots,f_n(t) \right) \) είναι μια παραγωγίσιμη καμπύλη στο \( [a,b] \). \emph{Τότε}:
\[ \left| \mathbf r_\gamma (t) \right| = c = \text{σταθερά } \forall t \iff
\mathbf r_\gamma (t) \bot \mathbf r'_\gamma (t) \ \forall t \]
\tcblower
\begin{proof}
\begin{align*}
|\mathbf r_\gamma(t)| = c \iff \\
|\mathbf r_\gamma(t)|^2 = c^2 \iff \\
\mathbf r_\gamma (t) \cdot \mathbf r_\gamma (t) = c^2 \iff \\
(\mathbf r_\gamma \cdot \mathbf r_\gamma)'(t) = 0 \iff \\
\mathbf r'_\gamma \cdot \mathbf r_\gamma + \mathbf r_\gamma \cdot \mathbf r'_\gamma = 0
\iff \\
\mathbf r'_\gamma \cdot \mathbf r_\gamma = 0 \iff \\
\mathbf r_\gamma \bot \mathbf r'_\gamma
\end{align*}
\end{proof}
\vspace{-20pt}
\begin{center}
\(\mathbb R^2 \)
\begin{tikzpicture}[scale=0.7]
\draw[gray, thick] (-2.5,-2.5) -- (2.5,2.5);
\node[above right, rotate=45] at (-2.5,-2.5) {\(+\infty\)};
\node[above left, rotate=45] at (2.5,2.5) {\(-\infty\)};
\filldraw[black] (0.5,0.5) circle (2pt) node[anchor=west] {\(t_0\)};
\def\away{7}
\draw[-{>[scale=2.5,width=3]}, gray] (0.5,0.5) to [bend left=90] (\away,3);
\draw[dashed] (\away,0) circle (3);
\draw (\away-4.22,0.37) -- (\away-0.58,3.44);
\draw (\away+0.15,3.53) -- (\away+3.69,1.1);
\draw (\away,0) -- (\away-1.93,2.3);
\draw (\away,0) -- (\away+1.78,2.41);
\end{tikzpicture}
\( \left|\mathbf r_\gamma(t)\right| = c \ \forall t \) σημαίνει κύκλος
\end{center}
\begin{center}
\(\mathbb R^3 \)
\begin{tikzpicture}[scale=0.7]
\draw[-{>[scale=2.5,width=3]}, gray] (0.5,0.5) to [bend left=90] (6,4);
\draw[gray, thick] (-2.5,-2.5) -- (2.5,2.5);
\node[above right, rotate=45] at (-2.5,-2.5) {\(+\infty\)};
\node[above left, rotate=45] at (2.5,2.5) {\(-\infty\)};
\filldraw[black] (0.5,0.5) circle (2pt) node[anchor=west] {\(t_0\)};
\begin{scope}[shift={(7,0)},scale=2]
\draw[dashed] (-1,0) arc (180:360:1cm and 0.5cm);
\draw[dashed] (-1,0) arc (180:0:1cm and 0.5cm);
\draw[dashed] (0,1) arc (90:270:0.5cm and 1cm);
\draw[dashed] (0,1) arc (90:-90:0.5cm and 1cm);
\draw (0,0) circle (1cm);
%\shade[ball color=blue!10!white,opacity=0.20] (0,0) circle (1cm);
\draw[->] (0,0) -- (0,1.5) node[above right] {$z$};
\draw[->] (0,0) -- (1.5,0) node[above right] {$y$};
\draw[->] (0,0) -- (-1,-1) node[below right] {$x$};
\end{scope}
\end{tikzpicture}
\( \left|\mathbf r_\gamma(t)\right| = c \ \forall t \) σημαίνει καμπύλη πάνω στη σφαίρα κέντρου \( O(0,0) \) και ακτίνας \(c\)
\end{center}
\end{infobox}
\subsection{Διαφορικό καμπύλης}
Ορίζω \(\dif \mathbf r _ \gamma (t) = \mathbf r '_ \gamma (t) \dif t\), \textbf{διάνυσμα} πάνω στην εφαπτόμενη καμπύλη στο σημείο \(t\) και φορά που καθορίζεται από το πρόσημο του \(\dif t\).
\begin{center}
\begin{tikzpicture}[scale=1]
\draw[-{>[scale=2.5,width=3]}, gray] (0.5,0.5) to [bend left=90] (6,4);
\draw[gray, thick] (-2.5,-2.5) -- (2.5,2.5);
\node[above right, rotate=45] at (-2.5,-2.5) {\(+\infty\)};
\node[above left, rotate=45] at (2.5,2.5) {\(-\infty\)};
\filldraw[black] (0.5,0.5) circle (2pt) node[anchor=west] {\(t\)};
\filldraw[black] (-0.5,-0.5) circle (2pt) node[anchor=west] {\(t+\mathrm d\, t\)};
\begin{scope}[shift={(6,-2)},scale=1.5]
\draw[->] (0,-0.5) -- (0,3) node[above right] {$y$};
\draw[->] (-0.5,0) -- (3,0) node[above right] {$x$};
\draw[very thick,blue] plot [smooth] coordinates {
(2.4,2.5) (1, 2.1) (0.5,2.5)
};
\draw[->] (0,0) -- (2.4,2.5) node[below,midway,sloped] {$\mathbf r_\gamma(t)$} ;
\draw[->] (0,0) -- (0.5,2.5) node[below,midway,sloped] {$\mathbf r_\gamma(t+\mathrm d\, t)$} ;
\draw[->,gray] (2.4,2.5) -- (1.5,841/250) node[above] {$\mathrm d\, \mathbf r_\gamma(t) = \mathbf r'_\gamma(t)\mathrm d\, t$};
\draw[->] (2.2,2.5) -- (0.7,2.5) node[above,midway,sloped] {$\mathbf r_\gamma(t+\mathrm d\, t) - \mathbf r_\gamma(t)$};
\draw (2.8,1.2) node {$\big(\mathrm d\, t > 0\big)$};
\end{scope}
\end{tikzpicture}
\end{center}
Για \(\dif t \to 0\), δηλ. κοντά στο \(t\) ισχύει:
\[ \mathbf r _\gamma (t+dt) - \mathbf r _\gamma (t) \approx d\mathbf r_\gamma (t) \]
\begin{center}
\begin{tikzpicture}[scale=3]
\draw[very thick,blue!80] plot [smooth,tension=1.2] coordinates {
(0,0) (0.2,0.5) (0.5,0.7) (1,1) (2,1) (2.3,1.1) (2.6,1) (3,1.05) (3.5,0.8)
};
\draw (0,0) -- (0.2,0.5) -- (0.5,0.7) -- (1,1) -- (2,1) -- (2.3,1.1) -- (2.6,1) -- (3,1.05) -- (3.5,0.8);
\filldraw[black] (0,0) circle(0.4pt);
\filldraw[black] (0.2,0.5) circle(0.4pt);
\filldraw[black] (0.5,0.7) circle(0.4pt);
\filldraw[black] (1,1) circle(0.4pt);
\filldraw[black] (2,1) circle(0.4pt);
\filldraw[black] (2.3,1.1) circle(0.4pt);
\filldraw[black] (2.6,1) circle(0.4pt);
\filldraw[black] (3,1.05) circle(0.4pt);
\filldraw[black] (3.5,0.8) circle(0.4pt);
\end{tikzpicture}
\end{center}
\subsubsection{}
\paragraph{Ορ.}
Έστω \(\gamma: [a,b] \to \mathbb R ^n\) καμπύλη σε παραμετρική μορφή.
\begin{enumerate}
\item Η \(\gamma\) καλείται \textbf{ΟΜΑΛΗ} αν είναι παραγωγίσιμη και \( \mathbf r' _ \gamma \neq \mathbf 0 \ \forall t \)
\item Η \( \gamma \) καλείται \textbf{ΛΕΙΑ} αν είναι ΟΜΑΛΗ και η \( \mathbf r _ \gamma \) είναι \textbf{ΣΥΝΕΧΗΣ} συνάρτηση στο \([a,b]\). Αν η \( \mathbf r '_ \gamma \) είναι τμηματικά συνεχής στο \([a,b]\), τότε η \( \mathbf r _ \gamma \) καλείται τμηματικά λεία.
\end{enumerate}
\paragraph{Ορ.}
Έστω \(\mathbf r:[a,b] \to \mathbb R ^n: \mathbf r _\gamma(t) =
\left( f_1(t), \dots, f_n(t) \right) \) είναι μια καμπύλη. Ορίζουμε το ορισμένο ολοκλήρωμα της \(\mathbf r_\gamma\) ως εξής:
\[
\underbrace{\int _a^b \mathbf r _\gamma (t) \dif t}_{\text{διάνυσμα στον }\mathbb R^n}
=
\left(
\int _a^b f_1(t) \dif t + \int _a^b f_2(t) \dif t + \dots
+ \int _a^b f_n(t) \dif t
\right)
\]
Επίσης, υπάρχει παραγωγίσιμη καμπύλη \(\mathbf q:[a,b] \to \mathbb R ^n:\)
\[
\mathbf q'(t) = \mathbf r_\gamma(t) \quad \forall t
\]
Η \(\mathbf q\) καλείται αντιπαράγωγος της \( \gamma \). Το σύνολο \(
\left\lbrace \mathbf q(t) + \overline{\mathbf c}: \mathbf{q}
\text { μια αντιπαράγωγος της } \mathbf r _ \gamma \text{ και } \mathbf c \in \mathbb R ^n \text{ σταθερά} \right\rbrace
\) καλείται ΑΟΡΙΣΤΟ ΟΛΟΚΛΗΡΩΜΑ της \( \mathbf r _ \gamma \), συμβολικά \(
\int \mathbf r _ \gamma (t) \dif t \)
Πράγματι,
\begin{align*}
\int \mathbf r _\gamma (t) \dif t
&= \left( \int f_1(t) \dif t , \int f_2(t) \dif t, \dots, \int f_n(t) \dif t \right) \\
&= \left( q_1(t)+\overbrace{c_1}^{c_1 \in \mathbb R \text{ αυθαίρετη σταθερά}}, q_2(t)+\overbrace{c_2}^{c_2 \in \mathbb R \text{ αυθαίρετη σταθερά}}, \dots, q_n(t)+\overbrace{c_n}^{c_n \in \mathbb R} \right) \\
&= \left( q_1(t), q_2(t), \dots, q_n(t) \right) + (c_1,\dots,c_n) =
\mathbf q(t) + \underbrace{\mathbf c}_{\text{αυθαίρετο διάνυσμα}} \in \mathbb R^n
\end{align*}
\subsection{Συμπέρασμα}
\begin{attnbox}{}
Η καμπυλότητα και η στρέψη είναι εκτός ύλης
\end{attnbox}
\subsection{Ασκήσεις}
\paragraph{Άσκ. 1}
Αν \(\gamma:[a,b] \to \mathbb R ^n: \mathbf r^n (t)
= \left( f_1(t),\dots,f_n(t) \right) \) είναι ΟΜΑΛΗ καμπύλη, ΝΔΟ:
\[
\mathbf r_\gamma (t) \cdot \mathbf r' _\gamma(t) = |\mathbf r _\gamma (t)| \cdot
\left( |\mathbf r_\gamma(t)| \right)'
\]
\begin{proof}
\begin{align*}
\mathbf r_\gamma(t) \cdot \mathbf r'_\gamma(t)
&= \left( f_1(t),\dots ,f_n(t) \right) \cdot \left( f_1'(t),\dots,f'_n(t) \right) \\
&= f_1(t)f'_1(t)+f_2(t)f'2(t)+\dots+f_n(t)f'_n(t)
\end{align*}
\begin{align*}
|\mathbf r _\gamma (t)| \cdot \left( |\mathbf r_\gamma(t)| \right)'
&= \sqrt{f_1^2(t) + \dots + f_n^2(t)} + \left( \sqrt{f_1^2(t) + \dots + f_n^2(t)} \right)' \\
&= \sqrt{f_1^2(t) + \dots + f_n^2(t)} + \frac{1}{2} \frac{2f_1(t)f'1(t)+\dots+2f_n(t)=f'_n(t)}{\sqrt{f_1^2(t) + \dots + f_n^2(t)}} \\
&= f_1(t)f'_1(t)+f_2(t)f'2(t)+\dots+f_n(t)f'_n(t)
\end{align*}
\end{proof}
\paragraph{Άσκ. 2}
Αν \( \mathbf r_\gamma(t) = t \mathbf i+2 \mathbf j + (t^2-3) \boldsymbol{\kappa}\), υπολογίστε την εξίσωση της εφαπτόμενης ευθείας της καμπύλης στο σημείο \((2,2,1)\).
\begin{proof}[Απάντηση]
\[
\begin{cases}
\mathbf i &= (1,0,0) \\
\mathbf j &= (0,1,0) \\
\boldsymbol{\kappa} &= (0,0,1) \\
\end{cases}
\]
\[ \mathbf r_\gamma(t) = \left( t,2,t^2-3 \right) \]
\begin{align*}
\mathbf r_\text{εφ}(t) &=
\left( \text{σημείο ευθείας γνωστό} \right) +
t \left( \text{διάνυσμα παράλληλο στην ευθεία} \right), \quad & t \in \mathbb R
\end{align*}
\begin{itemize}
\item Γνωστό σημείο το \(M=(2,2,1)\). Έτσι
\((2,2,1) = (t,2,t^2-3) \implies
\begin{cases}
t&=2\\2&=2\\t^2-3&=1
\end{cases}
\implies t=2
\)
\item Διάνυσμα γνωστό παράλληλο στην εφαπτομένη στο \((2,2,1)\) είναι το
\( \mathbf r'_\gamma(2)\).
\begin{align*}
\mathbf r'_\gamma(t) &= (1,0,2t) \\
\mathbf r'_\gamma(2) &= (1,0,4)
\end{align*}
και τελικά:
\begin{align*}
\boxed{
\mathbf r_\text{εφ}(t) = (2,2,1) + t(1,0,4), \quad t \in \mathbb R
}\\
\text{διανυσματική εξίσωση εφαπτόμενης ευθείας}
\end{align*}
\end{itemize}
\end{proof}
\paragraph{Ασκ. 3}[Απάντηση]
Αν \(\mathbf v(t) = \left( 2 \cos t, -t \sin (t^2), 2t \right) \) είναι η ταχύτητα του υλικού σημείου, βρείτε την εξίσωση κίνησης \(\mathbf r_\gamma \), αν \( \mathbf r_\gamma (0) = \mathbf i + 3 \mathbf k\)
\begin{proof}
Είναι γνωστό ότι \(\mathbf v(t) = \mathbf r'_\gamma(t) \implies \int \mathbf r'_\gamma(t) \dif t = \int \mathbf v(t) \dif t \implies \mathbf r_\gamma(t) = \int \mathbf v(t) \dif t = \left( \int 2 \cos t \dif t, \int - t \sin (t^2) \dif t, \int 2t \dif t \right) = \left( 2 \sin t+ c_1, \frac{\cos (t^2)}{2} + c_2, t^2+c_3 \right)\), όπου \(c_1,c_2,c_3 \in \mathbb R \) αυθαίρετες σταθερές (ΑΝΕΞΑΡΤΗΤΕΣ μεταξύ τους).
\[
(1,0,3) \overset{\text{υποθ.}}{=} \mathbf r_\gamma(0) =
\left( c_1, \frac{1}{2} + c_2, c_3 \right) \implies
\begin{cases}
c_1&=1 \\
c_2+\frac{1}{2}&=0 \\
c_3&=3
\end{cases}
\implies
\begin{cases}
c_1&=1 \\
c_2&=-\frac{1}{2}=0 \\
c_3&=3
\end{cases}
\]
Τελικά:
\[
\mathbf r_\gamma(t) =
\left(
2 \sin t +1, \frac{\cos (t^2)-1}{2}, t^2+3
\right)
\]
\end{proof}
\paragraph{Άσκ. 4}
Να παραμετροποιηθούν οι καμπύλες:
\begin{enumerate}
\item \( \left\lbrace \underbrace{x^2+z^2=a^2}_{\text{άπειρος κύλινδρος}}, \ \underbrace{2x+3y+7=1}_{\text{επίπεδο}} \right\rbrace\)
\item \( \left\lbrace \underbrace{x^2+y^2+z^2=a^2}_{\text{σφαίρα}}, \ \underbrace{2x+3y+z =1}_\text{επίπεδο} \right\rbrace \)
\end{enumerate}
\begin{proof}[Απάντηση]
\begin{enumerate}
\item Η καμπύλη προκύπτει ως τομή "άπειρου" κυλίνδρου \(x^2+z^2=a^2\) και επιπέδου \(2x+3y+z=1\).
\paragraph{Ενδεικτικό σχήμα}
Έστω π.χ. ότι αυτή η καμπύλη είναι η τομή κυλίνδρου και επιπέδου.\\
\begin{center}
\begin{tikzpicture}[scale=1.5]
\draw[-{>[scale=2.5,width=3]}] (-2,1) node[above] {$x^2+z^2=a^2$} to [bend right=45] (-0.9,0);
\draw[->,black!60] (0,0) -- (0,1.5) node[above right] {$y$};
\draw[->,black!60] (0,0) -- (1.5,0) node[above right] {$x$};
\draw[->,black!60] (0,0) -- (-1,-1) node[below right] {$z$};
\draw (0,0) circle(0.7 and 0.3);
\draw[dashed] (0,1) circle(0.7 and 0.3);
\draw[dashed] (0,-1) circle(0.7 and 0.3);
\draw (0.7,-1.5) -- (0.7,1.5);
\draw (-0.7,-1.5) -- (-0.7,1.5);
\end{tikzpicture}
\end{center}
\begin{infobox}{Παραμετροποίηση καμπύλης}
Γενικά:
\[
\mathbf r_\gamma(t) = \left( x(t), y(t), z(t) \right), \quad t \in [a,b]
\]
\end{infobox}
\[
\underbrace{\mathbf r_\text{προβολής}(t)}_{\mathclap{\text{πάντοτε είναι ο κύκλος }
\left\lbrace x^2+z^2=a^2,y=0 \right\rbrace}} = \left( x(t), 0 , z(t) \right)
\]
Αλλά ο κύκλος \( \left\lbrace x^2+z^2=a^2,y=0 \right\rbrace \) μπορεί να παραμετροποιηθεί ως εξής:
\[\mathbf r_\text{προβολής}(t) = \left( a \cos t, 0 , a \sin t \right), \quad t \in [0, 2\pi)\]
Έτσι
\[
\mathbf r_\gamma(t) = \left( a \cos t, y(t), a \sin t \right), t \in [0, 2\pi)
\]
όπου \(2x+3y+z=1 \implies y = \frac{1-z-2x}{3} = \frac{1-a \sin t -2 a \cos t}{3}\).
Τελικά:
\[
\mathbf r_\gamma(t) = \left( a \cos t, \frac{1-a \sin t - 2 a \cos t}{3}, a \sin t \right), \quad t \in [0, 2\pi)
\]
\item
\end{enumerate}
Έχουμε \textbf{ΤΟΜΗ} σφαίρας και επιπέδου που είναι \textbf{ΠΑΝΤΑ κύκλος}.
\subparagraph{Ενδεικτικό σχήμα}
\begin{center}
\begin{tikzpicture}[scale=1]
\draw[->,black!60] (0,0) -- (0,1.5) node[above right] {$z$};
\draw[->,black!60] (0,0) -- (1.5,0) node[above right] {$y$};
\draw[->,black!60] (0,0) -- (-1,-1) node[below right] {$x$};
\draw (-1,0) arc (180:360:1cm and 0.5cm);
\draw (-1,0) arc (180:0:1cm and 0.5cm);
\draw[dashed] (0,1) arc (90:270:0.5cm and 1cm);
\draw[dashed] (0,1) arc (90:-90:0.5cm and 1cm);
\draw (0,0) circle (1cm);
\end{tikzpicture}
\end{center}
Θέτω \(z=t\), οπότε \(x^2+y^2=a^2-t^2\), \(y=2x\), \(x^2=\frac{a^2-t^2}{5}\) και προχωρώ λύνοντας \(2 \times 2\) σύστημα
\emph{ή}
\[
\begin{cases}
x^2+y^2+z^2&=a^2 \\
y&=2x
\end{cases}
\iff
\begin{cases}
x^2+(2x)^2+z^2&=a^2 \\
y&=2x
\end{cases}
\iff
\begin{cases}
5x^2+z^2&=a^2 \\
y&=2x
\end{cases}
\]
Οι παραστάσεις είναι ισοδύναμες, δηλαδή η καμπύλη εκφράζεται ως τομή κυλίνδρου και επιπέδου, και ανάγομαι στο ερώτημα (α). Έτσι:
\[
\mathbf r_\gamma(t) = \left( x(t),y(t),z(t) \right), t \in [a,b]
\]
\[
\underbrace{\mathbf r_\text{προβολής}(t)}_{\mathclap{\text{είναι πάντα η έλλειψη }
\left\lbrace 5x^2+z^2=a^2,y=0 \right\rbrace}} = \left( x(t), 0 , z(t) \right)
\]
Άρα:
\[
\mathbf r_\text{προβολής}(t) = \left( \frac{a}{\sqrt{5}} \cos t,0,a \sin t \right),\quad t \in [0,2\pi)
\]
και έτσι
\[
\mathbf r_\gamma(t) = \left( \frac{a}{\sqrt{5}} \cos t,y(t),a \sin t \right)
\] με \(y(t)=2x(t)=\frac{2a}{\sqrt 5} \cos t\)
Τελικά:
\[
\mathbf r_\gamma(t) = \left( \frac{a}{\sqrt 5} \cos t, \frac{2a}{\sqrt 5} \cos t, a \sin t \right), \quad t \in [0, 2\pi)
\]
\end{proof}
\section{Διπλά Ολοκληρώματα}
\begin{attnbox}{}
Όποιος δεν κατάλαβε τα διπλά ολοκληρώματα, ας μην πάει παρακάτω.
\end{attnbox}
Έστω \(f: R \subset \mathbb R ^2 \to \mathbb R: \ z = f(x,y)\) είναι μια συνάρτηση δύο μεταβλητών ΦΡΑΓΜΕΝΗ επί της \textbf{ορθογώνιας περιοχής}:
\[R = \left\lbrace (x,y): a \leq x \leq b, \ c \leq y \leq d \right\rbrace\]
\begin{center}
\begin{tikzpicture}[scale=2]
\draw[->] (0,0) -- (0,2) node[above right] {$z$};
\draw[->] (0,0) -- (2.2,0) node[above right] {$y$};
\draw[->] (0,0) -- (-1.2,-1.2) node[below right] {$x$};
\draw (-0.1,-0.1) -- (0,-0.1) -- (0.1,0);
\filldraw (0, -0.05) circle(0.05pt);
\draw (0.1,0) -- (0.1,0.1) -- (0,0.1);
\filldraw (0.05,0.05) circle(0.05pt);
\draw (0,0.1) -- (-0.1,0) -- (-0.1,-0.1);
\filldraw (-0.05,0) circle(0.05pt);
\foreach \i in {0,...,5} {
\draw (1+\i*0.15,0) -- ++(45:-2cm);
\draw (-0.4-\i*0.15/1.5,-0.4-\i*0.15/1.5) -- ++(0:2.2cm);
}
\draw (1,0) node[above] {$c$};
\draw (1+5*0.15,0) node[above] {$d$};
\draw(-0.4,-0.4) node[above left] {$a$};
\draw(-0.4-5*0.15/1.5,-0.4-5*0.15/1.5) node[above left] {$b$};
\end{tikzpicture}
\end{center}
\begin{enumparen}
\item
Διαμερίζω το ορθογώνιο \(R\) μέσω διαμέρισης: \[
\Delta = \left( \Delta_x, \Delta_y \right)
\]
όπου \(
\begin{cases}
\Delta_x &= \left\lbrace a=x_1<x_2< \cdots < x_N = b \right\rbrace \\
\Delta_y &= \left\lbrace c=y_1 < y_2 < \cdots < y_N = d \right\rbrace
\end{cases}
\) σε στοιχειώδη ορθογώνια \(\Omega_{n,\kappa}\) με εβαδόν:
\[ Ε_{n,\kappa } = \left( x_{n+1} - x_n \right) \left( y_{k+1} - y_k \right) \]
\(n=1,\dots,N-1,\ k=1,\dots,M-1\)
\item
Έστω \((\widetilde{x_n}, \widetilde{y_n}) \in \Omega_{n,\kappa} \) είναι ΤΥΧΑΙΟ σημείο του \(\Omega_{n,\kappa}\). Ορίζω τις τιμές \(f(\widetilde{x_n}, \widetilde{y_n})\).
\item
Ορίζω το \textbf{άθροισμα}:
\[
S_{N,M,f} :=
\sum_{n=1}^{N-1} \sum_{k=1}^{M-1} \underbrace{f(\widetilde{x_n}, \widetilde{y_n}) \cdot E_{n_k}}_{\text{παριστάνει τον "όγκο"}}
\]
\item
Έστω \(|\Delta| = \max \left\lbrace \delta_{n, \kappa}:
\begin{cases}
n=1,\dots,N_1\\
k=1,\dots,M-1
\end{cases}
\right\rbrace\)
(όπου
\(\delta_{n,k}= \sqrt{ \left(x_{n+1} - x_n \right) ^2 + \left(y_{n+1} - y_n \right) ^2 }\)
είναι το μήκος της διαγωνίου του ορθογωνίου \(\Omega_{n,k}\) ) είναι το ΜΕΓΙΣΤΟ ΠΛΑΤΟΣ της διαμέρισης \(\Delta\). Αν
\[
\lim_{|\Delta | \to 0} S_{\Delta, f} =
\lim_{|\Delta | \to 0} \sum_{n=1}^{N-1} \sum_{k=1}^{M-1} f(\tilde{x_n}, \tilde{y_n}) \cdot E_{n_k}
= \lambda \in \mathbb R
\]
\textbf{ανεξάρτητα} της επιλογής της διαμέρισης \(\Delta\) και ανεξάρτητα της επιλογής των σημείων \( ( \widetilde{x_n},\widetilde{y_n}) \in \Omega_{n, \kappa } \).
Τότε λέμε ότι η \(f\) είναι ολοκληρώσιμη κατά \textlatin{Riemann} στην ορθογώνια περιοχή \(R\) και γράφουμε:
\[
\mathlarger{\mathlarger{
\iint_R f(x,y) \dif x \dif y = \lambda \in \mathbb R
}}
\]
\end{enumparen}
Προσεγγιστικά,
\[ \iint_R f(x,y) \dif x \dif y \approx \sum \sum f(x_n, y_k) \left( x_{n+1}-x_n \right) \left( y_{n+1}-y_n \right) \]
\subsection{Γενίκευση ορισμού σε μη ορθογώνια χωρία}
Έστω \(f: T \subset \mathbb R^2 \to \mathbb R\) ΦΡΑΓΜΕΝΗ συνάρτηση πάνω σε \textbf{ΦΡΑΓΜΕΝΟ χωρίο \(T\)} με το \textbf{σύνορο αυτού \(\partial T\)} να είναι σύνολο ΑΜΕΛΕΗΤΟΥ ΕΜΒΑΔΟΥ.
Έστω \(T \subset R\), όπου \(R\) είναι οποιοδήποτε \textbf{ορθογώνιο χωρίο} που καλύπτει το \(T\).
Ορίζω την επέκταση της \(f\) στο ορθογώνιο χωρίο \(R\) ως εξής:
\[
g(x,y) =
\begin{cases}
f(x,y),&(x,y) \in T \\
0,& (x,y) \in R-T
\end{cases}
\]
Αν η \(g: R \subset \mathbb R^2 \to \mathbb R\) είναι ολοκληρώσιμη επί του \textbf{ορθογωνίου} \(R\), τότε λέμε ότι η \(f\) είναι ολοκληρώσιμη επί του \(T\) και:
\[
\iint_T f(x,y) \dif x \dif y =
\iint_R g(x,y) \dif x \dif y
\]
\begin{attnbox}{Θεώρημα 1}
Έστω \(f:T \in \mathbb R ^2 \to \mathbb R \) είναι \boxed{\textbf{συνεχής}} συνάρτηση επί ΦΡΑΓΜΕΝΟΥ χωρίου \(T\) (το σύνορο \(\partial T\) του οποίου είναι σύνορο αμελητέου εμβαδού) \textbf{ΕΚΤΟΣ ΕΝΔΕΧΟΜΕΝΩΣ από ένα σύνολο σημείων αμελητέου εμβαδού}. Τότε η \(f\) είναι ολοκληρώσιμη επί του \(T\).
\paragraph{ΣΗΜΕΙΩΣΗ} Σύνολα αμελητέου εμβαδού:
\begin{enumparen}
\item Το πολύ αριθμήσιμο πλήθος σημείων
\item Τμηματικά λείες καμπύλες πεπερασμένου μήκος (ή το πολύ αριθμήσιμη ένωση τέτοιων)
\end{enumparen}
\end{attnbox}
\begin{infobox}{Αριθμήσιμο σύνολο \(A\)}
Υπάρχει 1-1 αντιστοιχία του συνόλου φυσικών \(\mathbb N\) με το \(A\).
\[
\mathbb N = \left\lbrace 1,2,3\dots \right\rbrace
\]
\textit{π.χ}
\begin{itemize}
\item Το \([a,b] \subset \mathbb R\) είναι υπεραριθμήσιμο
\item Το \(\mathbb Z\) είναι αριθμήσιμο
\item Το \(\mathbb Q\) είναι αριθμήσιμο
\end{itemize}
\end{infobox}
\textit{π.χ.}
Έστω \( T = \left\lbrace (x,y): x^2+y^2 \leq 1 \right\rbrace\) (μοναδιαίος κυκλικός δίσκος)
\begin{itemize}
\item \(f:T \to \mathbb{R}: f(x,y)=x^2+x^2y\)
συνεχής στο \(T\), άρα ολοκληρώσιμη
\item \(f:T\to \mathbb R : f(x,y) = \begin{cases}1,&x=y\\3,&T- \left\lbrace (x,x):|x| \leq 1 \right\rbrace \end{cases}\) %TODO Atreas graph 01
ολοκληρώσιμη διότι είναι συνεχής στο δίσκο \(T\) εκτός από ένα σύνολο σημείων αμελητέου εμβαδού (το σύνολο \( \left\lbrace (x,x): |x|<1 \right\rbrace\))
\item \(f(x,y) = \begin{cases}1 \ & (x,y): x,y \text{ ρητός}
\\
0& (x,y): x,y \text{ άρρητος}
\end{cases},\ (x,y) \in [0,1]^2 = [0,1] \times [0,1]
\)
δεν είναι ολοκληρώσιμη
\end{itemize}
\subsection{Ιδιότητες}
Ισχύουν οι γνωστές ιδιότητες του ολοκληρώματος.
Έστω \(f,g: T \in \mathbb R ^2 \to \mathbb R \) ολοκληρώσιμες σε φραγμένο χωρίο \(T\) (με σύνορο αμελητέου εμβαδού). Τότε:
\begin{enumparen}
\item \(af \pm bg\) ολοκλ. επί του \(T\) και
\[
\iint_T \big( af \pm bg \big) (x,y) \dif x \dif y
=
a\iint_T f(x,y) \dif x \dif y
\pm
b\iint_T g(x,y) \dif x \dif y
\]
\item \(f\cdot g, \ \frac{f}{g} (g \neq 0),\ |f|\) ολοκλ. επί του \(T\) και
\[
\left|
\iint_T f(x,y) \dif x \dif y
\right|
\leq
\iint_T \left| f(x,y) \right| \dif x \dif y
\]
\item Αν \(f(x,y) \leq g(x,y) \ \forall (x,y)\), τότε:
\[
\iint_T f(x,y) \dif x \dif y
\leq
\iint_T g(x,y) \dif x \dif y
\]
\item Αν \(T\) χωρίο αμελητέου εμβαδού, τότε:
\[
\iint_T f(x,y) \dif x \dif y = 0
\]
\item Αν \(T = T_1 \cup T_2\) και \(T_1 \cap T_2 = \emptyset\) (ή σύνολο αμελητέου εμβαδού), τότε:
\[
\iint_T f(x,y) \dif x \dif y =
\iint_{T_1} f(x,y) +
\iint_{T_2} f(x,y)
\]
\item Αν \(m \leq f(x,y) \leq M\), τότε: