-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdelta v sinal.nb
19312 lines (19127 loc) · 728 KB
/
delta v sinal.nb
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
(* Content-type: application/vnd.wolfram.mathematica *)
(*** Wolfram Notebook File ***)
(* http://www.wolfram.com/nb *)
(* CreatedBy='Mathematica 10.0' *)
(*CacheID: 234*)
(* Internal cache information:
NotebookFileLineBreakTest
NotebookFileLineBreakTest
NotebookDataPosition[ 158, 7]
NotebookDataLength[ 725749, 19304]
NotebookOptionsPosition[ 718442, 19057]
NotebookOutlinePosition[ 718809, 19073]
CellTagsIndexPosition[ 718766, 19070]
WindowFrame->Normal*)
(* Beginning of Notebook Content *)
Notebook[{
Cell[CellGroupData[{
Cell["Calculando a expans\[ATilde]o abaixo at\[EAcute] ordem 5:", \
"Subsubsection",
CellChangeTimes->{{3.719304679954593*^9, 3.719304708315215*^9}}],
Cell[BoxData[
GraphicsBox[
TagBox[RasterBox[CompressedData["
1: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
AAAAAAAAAAAAAAAAAAAAAACAr38BXvrqhw==
"], {{0, 79}, {822, 0}}, {0, 255},
ColorFunction->RGBColor],
BoxForm`ImageTag["Byte", ColorSpace -> "RGB", Interleaving -> True],
Selectable->False],
BaseStyle->"ImageGraphics",
ImageSizeRaw->{822, 79},
PlotRange->{{0, 822}, {0, 79}}]], "Output",
CellChangeTimes->{3.7198668433544683`*^9}],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"A", "=",
RowBox[{
RowBox[{"1", "/",
RowBox[{"Gamma", "[",
RowBox[{"-", "v"}], "]"}]}], "*",
RowBox[{
RowBox[{"(",
RowBox[{"\[Lambda]", "*",
RowBox[{"2", "/",
RowBox[{"(",
RowBox[{"g", "^",
RowBox[{"(", "2", ")"}]}], ")"}]}]}], ")"}], "^",
RowBox[{"(",
RowBox[{"-", "v"}], ")"}]}]}]}]], "Input",
CellChangeTimes->{{3.7193048116341248`*^9, 3.7193049011002417`*^9}, {
3.726236974618165*^9, 3.7262369833697805`*^9}}],
Cell[BoxData[
FractionBox[
RowBox[{
SuperscriptBox["2",
RowBox[{"-", "v"}]], " ",
SuperscriptBox[
RowBox[{"(",
FractionBox["\[Lambda]",
SuperscriptBox["g", "2"]], ")"}],
RowBox[{"-", "v"}]]}],
RowBox[{"Gamma", "[",
RowBox[{"-", "v"}], "]"}]]], "Output",
CellChangeTimes->{3.719304903620386*^9, 3.726236987878188*^9}]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"v", "=",
RowBox[{"n", "+", "\[Delta]v"}]}]], "Input",
CellChangeTimes->{{3.7193049093597145`*^9, 3.7193049200933285`*^9}}],
Cell[BoxData[
RowBox[{"n", "+", "\[Delta]v"}]], "Output",
CellChangeTimes->{3.719304923426519*^9, 3.7262369949606004`*^9}]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData["A"], "Input",
CellChangeTimes->{3.7193049249206047`*^9}],
Cell[BoxData[
FractionBox[
RowBox[{
SuperscriptBox["2",
RowBox[{
RowBox[{"-", "n"}], "-", "\[Delta]v"}]], " ",
SuperscriptBox[
RowBox[{"(",
FractionBox["\[Lambda]",
SuperscriptBox["g", "2"]], ")"}],
RowBox[{
RowBox[{"-", "n"}], "-", "\[Delta]v"}]]}],
RowBox[{"Gamma", "[",
RowBox[{
RowBox[{"-", "n"}], "-", "\[Delta]v"}], "]"}]]], "Output",
CellChangeTimes->{3.7193049256796474`*^9, 3.726236996941804*^9}]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"Series", "[",
RowBox[{
SuperscriptBox[
RowBox[{"(", "w", ")"}],
RowBox[{"-", "\[Delta]v"}]], ",",
RowBox[{"{",
RowBox[{"\[Delta]v", ",", "0", ",", "5"}], "}"}]}], "]"}]], "Input",
CellChangeTimes->{{3.71930498865725*^9, 3.719305030920667*^9}, {
3.7193050779223557`*^9, 3.7193050909491005`*^9}, {3.7203856017999387`*^9,
3.720385608304311*^9}, 3.72038566301544*^9}],
Cell[BoxData[
InterpretationBox[
RowBox[{"1", "-",
RowBox[{
RowBox[{"Log", "[", "w", "]"}], " ", "\[Delta]v"}], "+",
RowBox[{
FractionBox["1", "2"], " ",
SuperscriptBox[
RowBox[{"Log", "[", "w", "]"}], "2"], " ",
SuperscriptBox["\[Delta]v", "2"]}], "-",
RowBox[{
FractionBox["1", "6"], " ",
SuperscriptBox[
RowBox[{"Log", "[", "w", "]"}], "3"], " ",
SuperscriptBox["\[Delta]v", "3"]}], "+",
RowBox[{
FractionBox["1", "24"], " ",
SuperscriptBox[
RowBox[{"Log", "[", "w", "]"}], "4"], " ",
SuperscriptBox["\[Delta]v", "4"]}], "-",
RowBox[{
FractionBox["1", "120"], " ",
SuperscriptBox[
RowBox[{"Log", "[", "w", "]"}], "5"], " ",
SuperscriptBox["\[Delta]v", "5"]}], "+",
InterpretationBox[
SuperscriptBox[
RowBox[{"O", "[", "\[Delta]v", "]"}], "6"],
SeriesData[$CellContext`\[Delta]v, 0, {}, 0, 6, 1],
Editable->False]}],
SeriesData[$CellContext`\[Delta]v, 0, {
1, -Log[$CellContext`w], Rational[1, 2] Log[$CellContext`w]^2,
Rational[-1, 6] Log[$CellContext`w]^3, Rational[1, 24]
Log[$CellContext`w]^4, Rational[-1, 120] Log[$CellContext`w]^5}, 0, 6, 1],
Editable->False]], "Output",
CellChangeTimes->{3.720385663868489*^9, 3.7262370020118127`*^9}]
}, Open ]],
Cell[BoxData[
RowBox[{
RowBox[{"A1", "[", "w_", "]"}], ":=",
RowBox[{"1", "-",
RowBox[{
RowBox[{"Log", "[", "w", "]"}], " ", "\[Delta]v"}], "+",
RowBox[{
FractionBox["1", "2"], " ",
SuperscriptBox[
RowBox[{"Log", "[", "w", "]"}], "2"], " ",
SuperscriptBox["\[Delta]v", "2"]}], "-",
RowBox[{
FractionBox["1", "6"], " ",
SuperscriptBox[
RowBox[{"Log", "[", "w", "]"}], "3"], " ",
SuperscriptBox["\[Delta]v", "3"]}], "+",
RowBox[{
FractionBox["1", "24"], " ",
SuperscriptBox[
RowBox[{"Log", "[", "w", "]"}], "4"], " ",
SuperscriptBox["\[Delta]v", "4"]}], "-",
RowBox[{
FractionBox["1", "120"], " ",
SuperscriptBox[
RowBox[{"Log", "[", "w", "]"}], "5"], " ",
SuperscriptBox["\[Delta]v", "5"]}]}]}]], "Input",
CellChangeTimes->{{3.7193051179386444`*^9, 3.719305118349668*^9}, {
3.7203856899379797`*^9, 3.7203857262840586`*^9}}],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"A2", "=",
RowBox[{"A1", "[",
RowBox[{"2",
RowBox[{"\[Lambda]", "/",
RowBox[{"g", "^", "2"}]}]}], "]"}]}]], "Input",
CellChangeTimes->{{3.720385730349291*^9, 3.7203857432420287`*^9}, {
3.720386225307601*^9, 3.720386226777685*^9}, {3.726237076767144*^9,
3.7262370793567486`*^9}}],
Cell[BoxData[
RowBox[{"1", "-",
RowBox[{"\[Delta]v", " ",
RowBox[{"Log", "[",
FractionBox[
RowBox[{"2", " ", "\[Lambda]"}],
SuperscriptBox["g", "2"]], "]"}]}], "+",
RowBox[{
FractionBox["1", "2"], " ",
SuperscriptBox["\[Delta]v", "2"], " ",
SuperscriptBox[
RowBox[{"Log", "[",
FractionBox[
RowBox[{"2", " ", "\[Lambda]"}],
SuperscriptBox["g", "2"]], "]"}], "2"]}], "-",
RowBox[{
FractionBox["1", "6"], " ",
SuperscriptBox["\[Delta]v", "3"], " ",
SuperscriptBox[
RowBox[{"Log", "[",
FractionBox[
RowBox[{"2", " ", "\[Lambda]"}],
SuperscriptBox["g", "2"]], "]"}], "3"]}], "+",
RowBox[{
FractionBox["1", "24"], " ",
SuperscriptBox["\[Delta]v", "4"], " ",
SuperscriptBox[
RowBox[{"Log", "[",
FractionBox[
RowBox[{"2", " ", "\[Lambda]"}],
SuperscriptBox["g", "2"]], "]"}], "4"]}], "-",
RowBox[{
FractionBox["1", "120"], " ",
SuperscriptBox["\[Delta]v", "5"], " ",
SuperscriptBox[
RowBox[{"Log", "[",
FractionBox[
RowBox[{"2", " ", "\[Lambda]"}],
SuperscriptBox["g", "2"]], "]"}], "5"]}]}]], "Output",
CellChangeTimes->{3.720386229727854*^9, 3.72623703427267*^9,
3.7262370835999565`*^9}]
}, Open ]]
}, Open ]],
Cell[CellGroupData[{
Cell["Calcular 1/\[CapitalGamma](-n-\[Delta]v)", "Subsection",
CellChangeTimes->{{3.719306304167493*^9, 3.719306387603265*^9}}],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"Product", "[",
RowBox[{
RowBox[{"(",
RowBox[{"1", "+",
RowBox[{"\[Delta]v", "/", "j"}]}], ")"}], ",",
RowBox[{"{",
RowBox[{"j", ",", "1", ",", "n"}], "}"}]}], "]"}]], "Input",
CellChangeTimes->{{3.7193064087664757`*^9, 3.7193064123336797`*^9}, {
3.719306449569809*^9, 3.7193064857018757`*^9}}],
Cell[BoxData[
FractionBox[
RowBox[{"Pochhammer", "[",
RowBox[{
RowBox[{"1", "+", "\[Delta]v"}], ",", "n"}], "]"}],
RowBox[{"n", "!"}]]], "Output",
CellChangeTimes->{3.7193064872009616`*^9, 3.71986684415232*^9,
3.7203836032396274`*^9, 3.720385802444415*^9, 3.7262371150652113`*^9}]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"aux", "=",
RowBox[{"Series", "[",
RowBox[{
FractionBox[
RowBox[{"Pochhammer", "[",
RowBox[{
RowBox[{"1", "+", "\[Delta]v"}], ",", "n"}], "]"}],
RowBox[{"n", "!"}]], ",",
RowBox[{"{",
RowBox[{"\[Delta]v", ",", "0", ",", "5"}], "}"}]}], "]"}]}]], "Input",
CellChangeTimes->{{3.719306515455578*^9, 3.7193065678125725`*^9}, {
3.7198669244467297`*^9, 3.7198669260572863`*^9}, {3.7198674572885537`*^9,
3.7198674573979197`*^9}}],
Cell[BoxData[
InterpretationBox[
RowBox[{
FractionBox[
RowBox[{"Gamma", "[",
RowBox[{"1", "+", "n"}], "]"}],
RowBox[{"n", "!"}]], "+",
FractionBox[
RowBox[{
RowBox[{"(",
RowBox[{
RowBox[{"EulerGamma", " ",
RowBox[{"Gamma", "[",
RowBox[{"1", "+", "n"}], "]"}]}], "+",
RowBox[{
RowBox[{"Gamma", "[",
RowBox[{"1", "+", "n"}], "]"}], " ",
RowBox[{"PolyGamma", "[",
RowBox[{"0", ",",
RowBox[{"1", "+", "n"}]}], "]"}]}]}], ")"}], " ", "\[Delta]v"}],
RowBox[{"n", "!"}]], "+",
RowBox[{
FractionBox["1",
RowBox[{"12", " ",
RowBox[{"n", "!"}]}]],
RowBox[{
RowBox[{"(",
RowBox[{
RowBox[{"6", " ",
SuperscriptBox["EulerGamma", "2"], " ",
RowBox[{"Gamma", "[",
RowBox[{"1", "+", "n"}], "]"}]}], "-",
RowBox[{
SuperscriptBox["\[Pi]", "2"], " ",
RowBox[{"Gamma", "[",
RowBox[{"1", "+", "n"}], "]"}]}], "+",
RowBox[{"12", " ", "EulerGamma", " ",
RowBox[{"Gamma", "[",
RowBox[{"1", "+", "n"}], "]"}], " ",
RowBox[{"PolyGamma", "[",
RowBox[{"0", ",",
RowBox[{"1", "+", "n"}]}], "]"}]}], "+",
RowBox[{"6", " ",
RowBox[{"Gamma", "[",
RowBox[{"1", "+", "n"}], "]"}], " ",
SuperscriptBox[
RowBox[{"PolyGamma", "[",
RowBox[{"0", ",",
RowBox[{"1", "+", "n"}]}], "]"}], "2"]}], "+",
RowBox[{"6", " ",
RowBox[{"Gamma", "[",
RowBox[{"1", "+", "n"}], "]"}], " ",
RowBox[{"PolyGamma", "[",
RowBox[{"1", ",",
RowBox[{"1", "+", "n"}]}], "]"}]}]}], ")"}], " ",
SuperscriptBox["\[Delta]v", "2"]}]}], "+",
RowBox[{
FractionBox["1",
RowBox[{"n", "!"}]],
RowBox[{
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"(",
RowBox[{
FractionBox[
SuperscriptBox["EulerGamma", "2"], "2"], "-",
FractionBox[
SuperscriptBox["\[Pi]", "2"], "12"]}], ")"}], " ",
RowBox[{"Gamma", "[",
RowBox[{"1", "+", "n"}], "]"}], " ",
RowBox[{"PolyGamma", "[",
RowBox[{"0", ",",
RowBox[{"1", "+", "n"}]}], "]"}]}], "+",
RowBox[{
FractionBox["1", "2"], " ", "EulerGamma", " ",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"Gamma", "[",
RowBox[{"1", "+", "n"}], "]"}], " ",
SuperscriptBox[
RowBox[{"PolyGamma", "[",
RowBox[{"0", ",",
RowBox[{"1", "+", "n"}]}], "]"}], "2"]}], "+",
RowBox[{
RowBox[{"Gamma", "[",
RowBox[{"1", "+", "n"}], "]"}], " ",
RowBox[{"PolyGamma", "[",
RowBox[{"1", ",",
RowBox[{"1", "+", "n"}]}], "]"}]}]}], ")"}]}], "+",
RowBox[{
FractionBox["1", "12"], " ",
RowBox[{"Gamma", "[",
RowBox[{"1", "+", "n"}], "]"}], " ",
RowBox[{"(",
RowBox[{
RowBox[{"2", " ",
SuperscriptBox["EulerGamma", "3"]}], "-",
RowBox[{"EulerGamma", " ",
SuperscriptBox["\[Pi]", "2"]}], "-",
RowBox[{"2", " ",
RowBox[{"PolyGamma", "[",
RowBox[{"2", ",", "1"}], "]"}]}]}], ")"}]}], "+",
RowBox[{
FractionBox["1", "6"], " ",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"Gamma", "[",
RowBox[{"1", "+", "n"}], "]"}], " ",
SuperscriptBox[
RowBox[{"PolyGamma", "[",
RowBox[{"0", ",",
RowBox[{"1", "+", "n"}]}], "]"}], "3"]}], "+",
RowBox[{"3", " ",
RowBox[{"Gamma", "[",
RowBox[{"1", "+", "n"}], "]"}], " ",
RowBox[{"PolyGamma", "[",
RowBox[{"0", ",",
RowBox[{"1", "+", "n"}]}], "]"}], " ",
RowBox[{"PolyGamma", "[",
RowBox[{"1", ",",
RowBox[{"1", "+", "n"}]}], "]"}]}], "+",
RowBox[{
RowBox[{"Gamma", "[",
RowBox[{"1", "+", "n"}], "]"}], " ",
RowBox[{"PolyGamma", "[",
RowBox[{"2", ",",
RowBox[{"1", "+", "n"}]}], "]"}]}]}], ")"}]}]}], ")"}], " ",
SuperscriptBox["\[Delta]v", "3"]}]}], "+",
RowBox[{
FractionBox["1",
RowBox[{"n", "!"}]],
RowBox[{
RowBox[{"(",
RowBox[{
RowBox[{
FractionBox["1", "2"], " ",
RowBox[{"(",
RowBox[{
FractionBox[
SuperscriptBox["EulerGamma", "2"], "2"], "-",
FractionBox[
SuperscriptBox["\[Pi]", "2"], "12"]}], ")"}], " ",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"Gamma", "[",
RowBox[{"1", "+", "n"}], "]"}], " ",
SuperscriptBox[
RowBox[{"PolyGamma", "[",
RowBox[{"0", ",",
RowBox[{"1", "+", "n"}]}], "]"}], "2"]}], "+",
RowBox[{
RowBox[{"Gamma", "[",
RowBox[{"1", "+", "n"}], "]"}], " ",
RowBox[{"PolyGamma", "[",
RowBox[{"1", ",",
RowBox[{"1", "+", "n"}]}], "]"}]}]}], ")"}]}], "+",
RowBox[{
FractionBox["1", "12"], " ",
RowBox[{"Gamma", "[",
RowBox[{"1", "+", "n"}], "]"}], " ",
RowBox[{"PolyGamma", "[",
RowBox[{"0", ",",
RowBox[{"1", "+", "n"}]}], "]"}], " ",
RowBox[{"(",
RowBox[{
RowBox[{"2", " ",
SuperscriptBox["EulerGamma", "3"]}], "-",
RowBox[{"EulerGamma", " ",
SuperscriptBox["\[Pi]", "2"]}], "-",
RowBox[{"2", " ",
RowBox[{"PolyGamma", "[",
RowBox[{"2", ",", "1"}], "]"}]}]}], ")"}]}], "+",
FractionBox[
RowBox[{
RowBox[{"Gamma", "[",
RowBox[{"1", "+", "n"}], "]"}], " ",
RowBox[{"(",
RowBox[{
RowBox[{"60", " ",
SuperscriptBox["EulerGamma", "4"]}], "-",
RowBox[{"60", " ",
SuperscriptBox["EulerGamma", "2"], " ",
SuperscriptBox["\[Pi]", "2"]}], "+",
SuperscriptBox["\[Pi]", "4"], "-",
RowBox[{"240", " ", "EulerGamma", " ",
RowBox[{"PolyGamma", "[",
RowBox[{"2", ",", "1"}], "]"}]}]}], ")"}]}], "1440"], "+",
RowBox[{
FractionBox["1", "6"], " ", "EulerGamma", " ",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"Gamma", "[",
RowBox[{"1", "+", "n"}], "]"}], " ",
SuperscriptBox[
RowBox[{"PolyGamma", "[",
RowBox[{"0", ",",
RowBox[{"1", "+", "n"}]}], "]"}], "3"]}], "+",
RowBox[{"3", " ",
RowBox[{"Gamma", "[",
RowBox[{"1", "+", "n"}], "]"}], " ",
RowBox[{"PolyGamma", "[",
RowBox[{"0", ",",
RowBox[{"1", "+", "n"}]}], "]"}], " ",
RowBox[{"PolyGamma", "[",
RowBox[{"1", ",",
RowBox[{"1", "+", "n"}]}], "]"}]}], "+",
RowBox[{
RowBox[{"Gamma", "[",
RowBox[{"1", "+", "n"}], "]"}], " ",
RowBox[{"PolyGamma", "[",
RowBox[{"2", ",",
RowBox[{"1", "+", "n"}]}], "]"}]}]}], ")"}]}], "+",
RowBox[{
FractionBox["1", "24"], " ",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"Gamma", "[",
RowBox[{"1", "+", "n"}], "]"}], " ",
SuperscriptBox[
RowBox[{"PolyGamma", "[",
RowBox[{"0", ",",
RowBox[{"1", "+", "n"}]}], "]"}], "4"]}], "+",
RowBox[{"6", " ",
RowBox[{"Gamma", "[",
RowBox[{"1", "+", "n"}], "]"}], " ",
SuperscriptBox[
RowBox[{"PolyGamma", "[",
RowBox[{"0", ",",
RowBox[{"1", "+", "n"}]}], "]"}], "2"], " ",
RowBox[{"PolyGamma", "[",
RowBox[{"1", ",",
RowBox[{"1", "+", "n"}]}], "]"}]}], "+",
RowBox[{"3", " ",
RowBox[{"Gamma", "[",
RowBox[{"1", "+", "n"}], "]"}], " ",
SuperscriptBox[
RowBox[{"PolyGamma", "[",
RowBox[{"1", ",",
RowBox[{"1", "+", "n"}]}], "]"}], "2"]}], "+",
RowBox[{"4", " ",
RowBox[{"Gamma", "[",
RowBox[{"1", "+", "n"}], "]"}], " ",
RowBox[{"PolyGamma", "[",
RowBox[{"0", ",",
RowBox[{"1", "+", "n"}]}], "]"}], " ",
RowBox[{"PolyGamma", "[",
RowBox[{"2", ",",
RowBox[{"1", "+", "n"}]}], "]"}]}], "+",
RowBox[{
RowBox[{"Gamma", "[",
RowBox[{"1", "+", "n"}], "]"}], " ",
RowBox[{"PolyGamma", "[",
RowBox[{"3", ",",
RowBox[{"1", "+", "n"}]}], "]"}]}]}], ")"}]}]}], ")"}], " ",
SuperscriptBox["\[Delta]v", "4"]}]}], "+",
RowBox[{
FractionBox["1",
RowBox[{"n", "!"}]],
RowBox[{
RowBox[{"(",
RowBox[{
RowBox[{
FractionBox["1", "24"], " ",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"Gamma", "[",
RowBox[{"1", "+", "n"}], "]"}], " ",
SuperscriptBox[
RowBox[{"PolyGamma", "[",
RowBox[{"0", ",",
RowBox[{"1", "+", "n"}]}], "]"}], "2"]}], "+",
RowBox[{
RowBox[{"Gamma", "[",
RowBox[{"1", "+", "n"}], "]"}], " ",
RowBox[{"PolyGamma", "[",
RowBox[{"1", ",",
RowBox[{"1", "+", "n"}]}], "]"}]}]}], ")"}], " ",
RowBox[{"(",
RowBox[{
RowBox[{"2", " ",
SuperscriptBox["EulerGamma", "3"]}], "-",
RowBox[{"EulerGamma", " ",
SuperscriptBox["\[Pi]", "2"]}], "-",
RowBox[{"2", " ",
RowBox[{"PolyGamma", "[",
RowBox[{"2", ",", "1"}], "]"}]}]}], ")"}]}], "+",
FractionBox[
RowBox[{
RowBox[{"Gamma", "[",
RowBox[{"1", "+", "n"}], "]"}], " ",
RowBox[{"PolyGamma", "[",
RowBox[{"0", ",",
RowBox[{"1", "+", "n"}]}], "]"}], " ",
RowBox[{"(",
RowBox[{
RowBox[{"60", " ",
SuperscriptBox["EulerGamma", "4"]}], "-",
RowBox[{"60", " ",
SuperscriptBox["EulerGamma", "2"], " ",
SuperscriptBox["\[Pi]", "2"]}], "+",
SuperscriptBox["\[Pi]", "4"], "-",
RowBox[{"240", " ", "EulerGamma", " ",
RowBox[{"PolyGamma", "[",
RowBox[{"2", ",", "1"}], "]"}]}]}], ")"}]}], "1440"], "+",
RowBox[{
FractionBox["1", "6"], " ",
RowBox[{"(",
RowBox[{
FractionBox[
SuperscriptBox["EulerGamma", "2"], "2"], "-",
FractionBox[
SuperscriptBox["\[Pi]", "2"], "12"]}], ")"}], " ",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"Gamma", "[",
RowBox[{"1", "+", "n"}], "]"}], " ",
SuperscriptBox[
RowBox[{"PolyGamma", "[",
RowBox[{"0", ",",
RowBox[{"1", "+", "n"}]}], "]"}], "3"]}], "+",
RowBox[{"3", " ",
RowBox[{"Gamma", "[",
RowBox[{"1", "+", "n"}], "]"}], " ",
RowBox[{"PolyGamma", "[",
RowBox[{"0", ",",
RowBox[{"1", "+", "n"}]}], "]"}], " ",
RowBox[{"PolyGamma", "[",
RowBox[{"1", ",",
RowBox[{"1", "+", "n"}]}], "]"}]}], "+",
RowBox[{
RowBox[{"Gamma", "[",
RowBox[{"1", "+", "n"}], "]"}], " ",
RowBox[{"PolyGamma", "[",
RowBox[{"2", ",",
RowBox[{"1", "+", "n"}]}], "]"}]}]}], ")"}]}], "+",
RowBox[{
FractionBox["1", "24"], " ", "EulerGamma", " ",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"Gamma", "[",
RowBox[{"1", "+", "n"}], "]"}], " ",
SuperscriptBox[
RowBox[{"PolyGamma", "[",
RowBox[{"0", ",",
RowBox[{"1", "+", "n"}]}], "]"}], "4"]}], "+",
RowBox[{"6", " ",
RowBox[{"Gamma", "[",
RowBox[{"1", "+", "n"}], "]"}], " ",
SuperscriptBox[
RowBox[{"PolyGamma", "[",
RowBox[{"0", ",",
RowBox[{"1", "+", "n"}]}], "]"}], "2"], " ",
RowBox[{"PolyGamma", "[",
RowBox[{"1", ",",
RowBox[{"1", "+", "n"}]}], "]"}]}], "+",
RowBox[{"3", " ",
RowBox[{"Gamma", "[",
RowBox[{"1", "+", "n"}], "]"}], " ",
SuperscriptBox[
RowBox[{"PolyGamma", "[",
RowBox[{"1", ",",
RowBox[{"1", "+", "n"}]}], "]"}], "2"]}], "+",
RowBox[{"4", " ",
RowBox[{"Gamma", "[",
RowBox[{"1", "+", "n"}], "]"}], " ",
RowBox[{"PolyGamma", "[",
RowBox[{"0", ",",
RowBox[{"1", "+", "n"}]}], "]"}], " ",
RowBox[{"PolyGamma", "[",
RowBox[{"2", ",",
RowBox[{"1", "+", "n"}]}], "]"}]}], "+",
RowBox[{
RowBox[{"Gamma", "[",
RowBox[{"1", "+", "n"}], "]"}], " ",
RowBox[{"PolyGamma", "[",
RowBox[{"3", ",",
RowBox[{"1", "+", "n"}]}], "]"}]}]}], ")"}]}], "+",
RowBox[{
FractionBox["1", "1440"],
RowBox[{
RowBox[{"Gamma", "[",
RowBox[{"1", "+", "n"}], "]"}], " ",
RowBox[{"(",
RowBox[{
RowBox[{"12", " ",
SuperscriptBox["EulerGamma", "5"]}], "-",
RowBox[{"20", " ",
SuperscriptBox["EulerGamma", "3"], " ",
SuperscriptBox["\[Pi]", "2"]}], "+",
RowBox[{"EulerGamma", " ",
SuperscriptBox["\[Pi]", "4"]}], "-",
RowBox[{"120", " ",
SuperscriptBox["EulerGamma", "2"], " ",
RowBox[{"PolyGamma", "[",
RowBox[{"2", ",", "1"}], "]"}]}], "+",
RowBox[{"20", " ",
SuperscriptBox["\[Pi]", "2"], " ",
RowBox[{"PolyGamma", "[",
RowBox[{"2", ",", "1"}], "]"}]}], "-",
RowBox[{"12", " ",
RowBox[{"PolyGamma", "[",
RowBox[{"4", ",", "1"}], "]"}]}]}], ")"}]}]}], "+",
RowBox[{
FractionBox["1", "120"], " ",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"Gamma", "[",
RowBox[{"1", "+", "n"}], "]"}], " ",
SuperscriptBox[
RowBox[{"PolyGamma", "[",
RowBox[{"0", ",",
RowBox[{"1", "+", "n"}]}], "]"}], "5"]}], "+",
RowBox[{"10", " ",
RowBox[{"Gamma", "[",
RowBox[{"1", "+", "n"}], "]"}], " ",
SuperscriptBox[
RowBox[{"PolyGamma", "[",
RowBox[{"0", ",",
RowBox[{"1", "+", "n"}]}], "]"}], "3"], " ",
RowBox[{"PolyGamma", "[",
RowBox[{"1", ",",
RowBox[{"1", "+", "n"}]}], "]"}]}], "+",
RowBox[{"15", " ",
RowBox[{"Gamma", "[",
RowBox[{"1", "+", "n"}], "]"}], " ",
RowBox[{"PolyGamma", "[",
RowBox[{"0", ",",
RowBox[{"1", "+", "n"}]}], "]"}], " ",
SuperscriptBox[
RowBox[{"PolyGamma", "[",
RowBox[{"1", ",",
RowBox[{"1", "+", "n"}]}], "]"}], "2"]}], "+",
RowBox[{"10", " ",
RowBox[{"Gamma", "[",
RowBox[{"1", "+", "n"}], "]"}], " ",
SuperscriptBox[
RowBox[{"PolyGamma", "[",
RowBox[{"0", ",",
RowBox[{"1", "+", "n"}]}], "]"}], "2"], " ",
RowBox[{"PolyGamma", "[",
RowBox[{"2", ",",
RowBox[{"1", "+", "n"}]}], "]"}]}], "+",
RowBox[{"10", " ",
RowBox[{"Gamma", "[",
RowBox[{"1", "+", "n"}], "]"}], " ",
RowBox[{"PolyGamma", "[",
RowBox[{"1", ",",
RowBox[{"1", "+", "n"}]}], "]"}], " ",
RowBox[{"PolyGamma", "[",
RowBox[{"2", ",",
RowBox[{"1", "+", "n"}]}], "]"}]}], "+",
RowBox[{"5", " ",
RowBox[{"Gamma", "[",
RowBox[{"1", "+", "n"}], "]"}], " ",
RowBox[{"PolyGamma", "[",
RowBox[{"0", ",",
RowBox[{"1", "+", "n"}]}], "]"}], " ",
RowBox[{"PolyGamma", "[",
RowBox[{"3", ",",
RowBox[{"1", "+", "n"}]}], "]"}]}], "+",
RowBox[{
RowBox[{"Gamma", "[",
RowBox[{"1", "+", "n"}], "]"}], " ",
RowBox[{"PolyGamma", "[",
RowBox[{"4", ",",
RowBox[{"1", "+", "n"}]}], "]"}]}]}], ")"}]}]}], ")"}], " ",
SuperscriptBox["\[Delta]v", "5"]}]}], "+",
InterpretationBox[
SuperscriptBox[
RowBox[{"O", "[", "\[Delta]v", "]"}], "6"],
SeriesData[$CellContext`\[Delta]v, 0, {}, 0, 6, 1],
Editable->False]}],
SeriesData[$CellContext`\[Delta]v, 0, {
Factorial[$CellContext`n]^(-1) Gamma[1 + $CellContext`n],
Factorial[$CellContext`n]^(-1) (EulerGamma Gamma[1 + $CellContext`n] +
Gamma[1 + $CellContext`n] PolyGamma[0, 1 + $CellContext`n]),
Rational[1, 12]
Factorial[$CellContext`n]^(-1) (6 EulerGamma^2 Gamma[1 + $CellContext`n] -
Pi^2 Gamma[1 + $CellContext`n] +
12 EulerGamma Gamma[1 + $CellContext`n] PolyGamma[0, 1 + $CellContext`n] +
6 Gamma[1 + $CellContext`n] PolyGamma[0, 1 + $CellContext`n]^2 +
6 Gamma[1 + $CellContext`n] PolyGamma[1, 1 + $CellContext`n]),
Factorial[$CellContext`n]^(-1) ((Rational[1, 2] EulerGamma^2 +
Rational[-1, 12] Pi^2) Gamma[1 + $CellContext`n]
PolyGamma[0, 1 + $CellContext`n] +
Rational[1, 2]
EulerGamma (
Gamma[1 + $CellContext`n] PolyGamma[0, 1 + $CellContext`n]^2 +
Gamma[1 + $CellContext`n] PolyGamma[1, 1 + $CellContext`n]) +
Rational[1, 12]
Gamma[1 + $CellContext`n] (2 EulerGamma^3 - EulerGamma Pi^2 - 2
PolyGamma[2, 1]) +
Rational[1, 6] (
Gamma[1 + $CellContext`n] PolyGamma[0, 1 + $CellContext`n]^3 +
3 Gamma[1 + $CellContext`n] PolyGamma[0, 1 + $CellContext`n]
PolyGamma[1, 1 + $CellContext`n] +
Gamma[1 + $CellContext`n] PolyGamma[2, 1 + $CellContext`n])),
Factorial[$CellContext`n]^(-1) (
Rational[1, 2] (Rational[1, 2] EulerGamma^2 + Rational[-1, 12] Pi^2) (
Gamma[1 + $CellContext`n] PolyGamma[0, 1 + $CellContext`n]^2 +
Gamma[1 + $CellContext`n] PolyGamma[1, 1 + $CellContext`n]) +
Rational[1, 12] Gamma[1 + $CellContext`n]
PolyGamma[0, 1 + $CellContext`n] (2 EulerGamma^3 - EulerGamma Pi^2 - 2
PolyGamma[2, 1]) +
Rational[1, 1440]
Gamma[1 + $CellContext`n] (60 EulerGamma^4 - 60 EulerGamma^2 Pi^2 +
Pi^4 - 240 EulerGamma PolyGamma[2, 1]) +
Rational[1, 6]
EulerGamma (
Gamma[1 + $CellContext`n] PolyGamma[0, 1 + $CellContext`n]^3 +
3 Gamma[1 + $CellContext`n] PolyGamma[0, 1 + $CellContext`n]
PolyGamma[1, 1 + $CellContext`n] +
Gamma[1 + $CellContext`n] PolyGamma[2, 1 + $CellContext`n]) +
Rational[1, 24] (
Gamma[1 + $CellContext`n] PolyGamma[0, 1 + $CellContext`n]^4 +
6 Gamma[1 + $CellContext`n] PolyGamma[0, 1 + $CellContext`n]^2
PolyGamma[1, 1 + $CellContext`n] +
3 Gamma[1 + $CellContext`n] PolyGamma[1, 1 + $CellContext`n]^2 +
4 Gamma[1 + $CellContext`n] PolyGamma[0, 1 + $CellContext`n]
PolyGamma[2, 1 + $CellContext`n] +
Gamma[1 + $CellContext`n] PolyGamma[3, 1 + $CellContext`n])),
Factorial[$CellContext`n]^(-1) (
Rational[1, 24] (
Gamma[1 + $CellContext`n] PolyGamma[0, 1 + $CellContext`n]^2 +
Gamma[1 + $CellContext`n] PolyGamma[1, 1 + $CellContext`n]) (
2 EulerGamma^3 - EulerGamma Pi^2 - 2 PolyGamma[2, 1]) +
Rational[1, 1440] Gamma[1 + $CellContext`n]
PolyGamma[0, 1 + $CellContext`n] (60 EulerGamma^4 - 60 EulerGamma^2
Pi^2 + Pi^4 - 240 EulerGamma PolyGamma[2, 1]) +
Rational[1, 6] (Rational[1, 2] EulerGamma^2 + Rational[-1, 12] Pi^2) (
Gamma[1 + $CellContext`n] PolyGamma[0, 1 + $CellContext`n]^3 +
3 Gamma[1 + $CellContext`n] PolyGamma[0, 1 + $CellContext`n]
PolyGamma[1, 1 + $CellContext`n] +
Gamma[1 + $CellContext`n] PolyGamma[2, 1 + $CellContext`n]) +
Rational[1, 24]
EulerGamma (
Gamma[1 + $CellContext`n] PolyGamma[0, 1 + $CellContext`n]^4 +
6 Gamma[1 + $CellContext`n] PolyGamma[0, 1 + $CellContext`n]^2
PolyGamma[1, 1 + $CellContext`n] +
3 Gamma[1 + $CellContext`n] PolyGamma[1, 1 + $CellContext`n]^2 +
4 Gamma[1 + $CellContext`n] PolyGamma[0, 1 + $CellContext`n]
PolyGamma[2, 1 + $CellContext`n] +
Gamma[1 + $CellContext`n] PolyGamma[3, 1 + $CellContext`n]) +
Rational[1, 1440]
Gamma[1 + $CellContext`n] (12 EulerGamma^5 - 20 EulerGamma^3 Pi^2 +
EulerGamma Pi^4 - 120 EulerGamma^2 PolyGamma[2, 1] +
20 Pi^2 PolyGamma[2, 1] - 12 PolyGamma[4, 1]) +
Rational[1, 120] (
Gamma[1 + $CellContext`n] PolyGamma[0, 1 + $CellContext`n]^5 +
10 Gamma[1 + $CellContext`n] PolyGamma[0, 1 + $CellContext`n]^3
PolyGamma[1, 1 + $CellContext`n] +
15 Gamma[1 + $CellContext`n] PolyGamma[0, 1 + $CellContext`n]
PolyGamma[1, 1 + $CellContext`n]^2 +
10 Gamma[1 + $CellContext`n] PolyGamma[0, 1 + $CellContext`n]^2
PolyGamma[2, 1 + $CellContext`n] +
10 Gamma[1 + $CellContext`n] PolyGamma[1, 1 + $CellContext`n]
PolyGamma[2, 1 + $CellContext`n] +
5 Gamma[1 + $CellContext`n] PolyGamma[0, 1 + $CellContext`n]
PolyGamma[3, 1 + $CellContext`n] +
Gamma[1 + $CellContext`n] PolyGamma[4, 1 + $CellContext`n]))}, 0, 6, 1],
Editable->False]], "Output",
CellChangeTimes->{{3.7193065546138177`*^9, 3.7193065729688673`*^9},
3.71986684500348*^9, 3.719866927251825*^9, 3.719867458898616*^9,
3.720383609174967*^9, 3.720385806259633*^9, 3.726237118840418*^9}]
}, Open ]],
Cell[BoxData[
RowBox[{"Do", "[",
RowBox[{
RowBox[{
RowBox[{"c", "[", "j", "]"}], "=",
RowBox[{"FullSimplify", "[",
RowBox[{"Coefficient", "[",
RowBox[{"aux", ",", "\[Delta]v", ",", "j"}], "]"}], "]"}]}], ",",
RowBox[{"{",
RowBox[{"j", ",", "0", ",", "5"}], "}"}]}], "]"}]], "Input",
CellChangeTimes->{{3.719866928277706*^9, 3.7198670399401455`*^9}, {
3.719867469730615*^9, 3.7198674698399954`*^9}}],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"c", "[", "0", "]"}]], "Input",
CellChangeTimes->{{3.7198669987589464`*^9, 3.7198669995474143`*^9}, {
3.719867269878595*^9, 3.7198672702692385`*^9}}],
Cell[BoxData["1"], "Output",
CellChangeTimes->{{3.719867000693798*^9, 3.7198670426320205`*^9},
3.719867271292259*^9, 3.719867481938938*^9, 3.7203837919424205`*^9,
3.7203858378824415`*^9, 3.7262371583864875`*^9}]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"c", "[", "1", "]"}]], "Input",
CellChangeTimes->{{3.719867272600314*^9, 3.719867273350571*^9}}],
Cell[BoxData[
RowBox[{"HarmonicNumber", "[", "n", "]"}]], "Output",
CellChangeTimes->{3.719867274039523*^9, 3.7198674836294546`*^9,
3.7203837939955378`*^9, 3.7203858992129498`*^9, 3.726237160944892*^9}]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"c", "[", "2", "]"}]], "Input",
CellChangeTimes->{{3.719867279155037*^9, 3.7198672799927263`*^9}}],
Cell[BoxData[
RowBox[{"-",
FractionBox[
RowBox[{"n", " ",
RowBox[{"Gamma", "[", "n", "]"}], " ",
RowBox[{"(",
RowBox[{
SuperscriptBox["\[Pi]", "2"], "-",
RowBox[{"6", " ",
SuperscriptBox[
RowBox[{"HarmonicNumber", "[", "n", "]"}], "2"]}], "-",
RowBox[{"6", " ",
RowBox[{"PolyGamma", "[",
RowBox[{"1", ",",
RowBox[{"1", "+", "n"}]}], "]"}]}]}], ")"}]}],
RowBox[{"12", " ",
RowBox[{"n", "!"}]}]]}]], "Output",
CellChangeTimes->{3.71986728079487*^9, 3.719867485231269*^9,
3.720383795707636*^9, 3.7262371638308973`*^9}]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"c", "[", "3", "]"}]], "Input",
CellChangeTimes->{{3.7198674875297303`*^9, 3.719867488264223*^9}}],
Cell[BoxData[
RowBox[{
FractionBox["1",
RowBox[{"12", " ",
RowBox[{"n", "!"}]}]],
RowBox[{
RowBox[{"Gamma", "[",