-
Notifications
You must be signed in to change notification settings - Fork 0
/
LwPT - Figs_1-2.nb
2311 lines (2270 loc) · 105 KB
/
LwPT - Figs_1-2.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 12.0' *)
(*CacheID: 234*)
(* Internal cache information:
NotebookFileLineBreakTest
NotebookFileLineBreakTest
NotebookDataPosition[ 158, 7]
NotebookDataLength[ 104764, 2303]
NotebookOptionsPosition[ 102098, 2249]
NotebookOutlinePosition[ 102441, 2264]
CellTagsIndexPosition[ 102398, 2261]
WindowFrame->Normal*)
(* Beginning of Notebook Content *)
Notebook[{
Cell[CellGroupData[{
Cell[TextData[{
"A ",
Cell[BoxData[
FormBox["w", TraditionalForm]],ExpressionUUID->
"cbee489e-56b1-40fa-872e-973d2a77b06c"],
" Phantom Transition at ",
Cell[BoxData[
FormBox[
RowBox[{
SubscriptBox["z", "t"], "<", "0.1"}], TraditionalForm]],ExpressionUUID->
"d394c90c-2f47-4c81-a40c-e511ac1af0f3"],
" as a Resolution of the Hubble Tension - G. Alestas, L. Kazantzidis and L. \
Perivolaropoulos - Figures 1 and 2"
}], "Title",
CellChangeTimes->{{3.8179935805762386`*^9, 3.817993663216342*^9}, {
3.8179937118707886`*^9, 3.8179937172631454`*^9}, {3.818094681740462*^9,
3.8180946818073225`*^9}},ExpressionUUID->"e15e04b5-10ad-417d-9daa-\
eed12d535c3b"],
Cell[CellGroupData[{
Cell[TextData[StyleBox["Section II - The Cosmological Comoving Distance in \
the LwPT Model",
FontColor->RGBColor[
0.6549019607843137, 0.24705882352941178`, 0.07058823529411765]]], "Chapter",
CellChangeTimes->{{3.804173405185279*^9, 3.804173411719531*^9}, {
3.8041745411621585`*^9, 3.804174543104787*^9}, {3.8041748377496443`*^9,
3.8041748458589425`*^9}, {3.808482403816185*^9, 3.808482406306266*^9}, {
3.8084824498056726`*^9, 3.8084824699959183`*^9}, {3.8120831790106397`*^9,
3.812083230329666*^9}, {3.8120855829964304`*^9, 3.8120855968318605`*^9}, {
3.817993540143202*^9, 3.817993553735096*^9}, {3.8179936733027596`*^9,
3.817993689806549*^9}},
Background->RGBColor[
1, 0.9, 0.8],ExpressionUUID->"835d8ec6-dab8-423e-b0b1-df10c8b95cd9"],
Cell[CellGroupData[{
Cell["General Settings ", "Section",
CellChangeTimes->{{3.804173405185279*^9, 3.804173411719531*^9}, {
3.808482479166914*^9,
3.8084824819237585`*^9}},ExpressionUUID->"a0c78984-aaf6-4839-a117-\
e0c35b6da057"],
Cell[CellGroupData[{
Cell["Setting the Directory", "Subsection",
CellChangeTimes->{{3.804173720261718*^9, 3.8041737234938517`*^9}, {
3.8041738693645115`*^9, 3.804173870792673*^9}, {3.8041739491715336`*^9,
3.804173949327444*^9}, {3.804174111550709*^9, 3.8041741165825677`*^9}, {
3.8084824963243666`*^9,
3.808482500213706*^9}},ExpressionUUID->"b41faed8-1f67-42ae-ba9b-\
c0a59617c632"],
Cell[BoxData[{
RowBox[{
RowBox[{
RowBox[{"SetDirectory", "[",
RowBox[{"NotebookDirectory", "[", "]"}], "]"}], ";"}], "\n",
RowBox[{"(*", " ",
RowBox[{
"Some", " ", "unimportant", " ", "error", " ", "messages", " ", "are", " ",
"switched", " ", "off", " ", "for", " ", "future", " ", "convenience"}],
" ", "*)"}]}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Off", "[",
RowBox[{
RowBox[{"NIntegrate", "::", "inumr"}], ",",
RowBox[{"FindRoot", "::", "lstol"}], ",",
RowBox[{"NIntegrate", "::", "ncvb"}], ",",
RowBox[{"NMinimize", "::", "cvmit"}], ",",
RowBox[{"NIntegrate", "::", "slwcon"}]}], "]"}], ";"}]}], "Input",
CellChangeTimes->{{3.802251291245939*^9, 3.8022512912479334`*^9}, {
3.802327645294495*^9, 3.802327645987621*^9}, 3.8028664237841225`*^9,
3.8030095771370077`*^9, {3.804173419135277*^9, 3.804173421643854*^9},
3.804235834832718*^9, {3.806078653047946*^9, 3.806078653406761*^9}, {
3.8124289198372593`*^9, 3.812428920411883*^9}, 3.8179935004892406`*^9},
CellLabel->"In[1]:=",ExpressionUUID->"ab9cf79e-f2e1-44f8-bfc1-fa1c4d991adc"]
}, Open ]],
Cell[CellGroupData[{
Cell["Various Constants", "Subsection",
CellChangeTimes->{{3.804173720261718*^9, 3.8041737234938517`*^9}, {
3.8041738693645115`*^9, 3.804173870792673*^9}, {3.8041739491715336`*^9,
3.804173949327444*^9}, {3.804174111550709*^9, 3.8041741165825677`*^9}, {
3.8084824963243666`*^9, 3.808482500213706*^9}, {3.808482574748309*^9,
3.8084825775133686`*^9}},ExpressionUUID->"ec21ed34-e971-4eab-81d7-\
c61197a720b8"],
Cell[BoxData[
RowBox[{
RowBox[{"(*", " ",
RowBox[{
RowBox[{
RowBox[{"Riess", "'"}], " ", "measurement"}], " ", "-", " ",
RowBox[{"See", " ",
RowBox[{"arxiv", ":", "1903.07603"}]}]}], " ", "*)"}],
"\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"h0r", "=", "0.74"}], ";"}], "\[IndentingNewLine]",
RowBox[{"(*", " ",
RowBox[{"Planck18", " ", "Values"}], " ", "*)"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"h0c", "=", "0.674"}], ";"}], " ", "\[IndentingNewLine]",
RowBox[{
RowBox[{"om0", "=", "0.31"}], ";"}], " "}]}]], "Input",
CellChangeTimes->{{3.817813630416875*^9, 3.817813796001585*^9},
3.8178138331203246`*^9, {3.817906042147457*^9, 3.8179060747196207`*^9},
3.817918266595867*^9, {3.8179933897777777`*^9, 3.817993402983701*^9}, {
3.8179934921353765`*^9, 3.8179935167472095`*^9}, {3.8179939542790003`*^9,
3.8179939610856514`*^9}, {3.8179962784509497`*^9, 3.817996318717033*^9}},
CellLabel->"In[3]:=",ExpressionUUID->"8a0eab2b-816b-495d-bf64-e3090aea6e26"]
}, Open ]],
Cell[CellGroupData[{
Cell["LwPT Model", "Subsection",
CellChangeTimes->{{3.804173720261718*^9, 3.8041737234938517`*^9}, {
3.8041738693645115`*^9, 3.804173870792673*^9}, {3.8041739491715336`*^9,
3.804173949327444*^9}, {3.804174111550709*^9, 3.8041741165825677`*^9}, {
3.8084824963243666`*^9, 3.808482500213706*^9}, {3.808482574748309*^9,
3.8084825775133686`*^9}, {3.817993745134432*^9, 3.8179937594947815`*^9}, {
3.8179938022712717`*^9,
3.8179938033210936`*^9}},ExpressionUUID->"d0b59938-b99e-4f15-838c-\
a29de5329228"],
Cell[CellGroupData[{
Cell["Figure 1", "Subsubsection",
CellChangeTimes->{{3.817994162063757*^9,
3.817994164446105*^9}},ExpressionUUID->"bddce5d0-0b8c-4def-9f37-\
7248ebcda2bc"],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{
RowBox[{"(*", " ",
RowBox[{
RowBox[{
"Relation", " ", "between", " ", "\[CapitalDelta]w", " ", "and", " ",
SubscriptBox["z", "t"], " ", "where", " ", Cell[
"h=h0c",ExpressionUUID->"be3200b4-73de-4ede-b0f1-6bf366a5584f"]}], ",",
" ",
RowBox[{
SubscriptBox["\[Omega]", "m"], "=",
RowBox[{
RowBox[{"om0", " ",
SuperscriptBox["h0c", "2"], " ", "and", " ",
SubscriptBox["h", "local"]}], "=",
RowBox[{"h0r", " ", "-", " ",
RowBox[{
RowBox[{"Eq", ".", " ",
RowBox[{"(", "2.4", ")"}]}], " ", "from", " ", "our", " ",
"paper"}]}]}]}]}], " ", "*)"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"dw", "=",
RowBox[{
RowBox[{"(",
RowBox[{
RowBox[{"Log", "[",
RowBox[{
RowBox[{"h0c", "^", "2"}], "-",
RowBox[{"om0", " ",
RowBox[{"h0c", "^", "2"}]}]}], "]"}], "-",
RowBox[{"Log", "[",
RowBox[{
RowBox[{"h0r", "^", "2"}], "-",
RowBox[{"om0", " ",
RowBox[{"h0c", "^", "2"}]}]}], "]"}]}], ")"}], "/",
RowBox[{"(",
RowBox[{"3",
RowBox[{"Log", "[",
RowBox[{"(",
RowBox[{"1", "+", "zt"}], ")"}], "]"}]}], ")"}]}]}], "\n",
RowBox[{"(*", " ",
RowBox[{
RowBox[{"Figure", " ", "1"}], " ", "-", " ",
RowBox[{
"The", " ", "equation", " ", "of", " ", "state", " ", "shift", " ",
"\[CapitalDelta]w", " ", "as", " ", "a", " ", "function", " ", "of",
" ", "the", " ", "transition", " ", "redshift", " ",
SubscriptBox["z", "t"]}]}], " ", "*)"}], "\[IndentingNewLine]",
RowBox[{"fig1", "=",
RowBox[{"Plot", "[",
RowBox[{"dw", ",",
RowBox[{"{",
RowBox[{"zt", ",", "0.01", ",", "0.1"}], "}"}], ",",
RowBox[{"PlotRange", "\[Rule]", "All"}], ",",
RowBox[{"Frame", "\[Rule]", "True"}], ",",
RowBox[{"Axes", "\[Rule]", "False"}], ",",
RowBox[{"FrameLabel", "\[Rule]",
RowBox[{"{",
RowBox[{
"\"\<\!\(\*SubscriptBox[\(z\), \(t\)]\)\>\"", ",",
"\"\<\[CapitalDelta]w\>\""}], "}"}]}], ",",
RowBox[{"BaseStyle", "\[Rule]",
RowBox[{"{",
RowBox[{
RowBox[{"FontFamily", "\[Rule]", "\"\<Times\>\""}], ",", "18"}],
"}"}]}], ",",
RowBox[{"LabelStyle", "\[Rule]",
RowBox[{"Directive", "[",
RowBox[{"Black", ",", "Large"}], "]"}]}]}], "]"}]}]}]}]], "Input",
CellChangeTimes->{{3.817813630416875*^9, 3.817813796001585*^9},
3.8178138331203246`*^9, {3.817906042147457*^9, 3.8179060747196207`*^9},
3.817918266595867*^9, {3.8179933897777777`*^9, 3.817993402983701*^9}, {
3.8179934921353765`*^9, 3.8179935167472095`*^9}, {3.8179937615826406`*^9,
3.8179937643985844`*^9}, {3.8179938095181727`*^9,
3.8179938373900747`*^9}, {3.8179938799640284`*^9,
3.8179941523471165`*^9}, {3.8179941986391487`*^9,
3.8179941991981277`*^9}, {3.817994611038623*^9, 3.8179946153002877`*^9}},
CellLabel->"In[6]:=",ExpressionUUID->"7074af1d-cb02-494b-bba3-5e7644ecf6d6"],
Cell[BoxData[
RowBox[{"-",
FractionBox["0.08687252296344952`",
RowBox[{"Log", "[",
RowBox[{"1", "+", "zt"}], "]"}]]}]], "Output",
CellChangeTimes->{{3.8178137307390394`*^9, 3.8178137966558456`*^9},
3.817813833822457*^9, 3.817918181674494*^9, {3.81791826289355*^9,
3.8179182677754297`*^9}, 3.8179933917972183`*^9, 3.817994087223906*^9,
3.8179941688896923`*^9, 3.8179942003068333`*^9, 3.8179946208683815`*^9,
3.817996273077289*^9, 3.8179971561924367`*^9},
CellLabel->"Out[6]=",ExpressionUUID->"1812c112-d66c-493c-bfa6-db1cd33a0008"],
Cell[BoxData[
GraphicsBox[{{{}, {},
TagBox[
{RGBColor[0.368417, 0.506779, 0.709798], AbsoluteThickness[1.6], Opacity[
1.], LineBox[CompressedData["
1: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
nzUkQtQHKVlZBLicKI9v0ifR/wCQkdiu
"]]},
Annotation[#, "Charting`Private`Tag$3282#1"]& ]}, {}},
AspectRatio->NCache[GoldenRatio^(-1), 0.6180339887498948],
Axes->{False, False},
AxesLabel->{None, None},
AxesOrigin->{Automatic, Automatic},
BaseStyle->{FontFamily -> "Times", 18},
DisplayFunction->Identity,
Frame->{{True, True}, {True, True}},
FrameLabel->{{
FormBox["\"\[CapitalDelta]w\"", TraditionalForm], None}, {
FormBox[
"\"\\!\\(\\*SubscriptBox[\\(z\\), \\(t\\)]\\)\"", TraditionalForm],
None}},
FrameTicks->FrontEndValueCache[{{Automatic,
Charting`ScaledFrameTicks[{Identity, Identity}]}, {Automatic,
Charting`ScaledFrameTicks[{Identity, Identity}]}}, {{Automatic, {{-8.,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.01, 0.}, {
AbsoluteThickness[0.1]}}, {-6.,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.01, 0.}, {
AbsoluteThickness[0.1]}}, {-4.,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.01, 0.}, {
AbsoluteThickness[0.1]}}, {-2.,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.01, 0.}, {
AbsoluteThickness[0.1]}}, {-10.,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {-9.5,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {-9.,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {-8.5,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {-7.5,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {-7.,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {-6.5,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {-5.5,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {-5.,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {-4.5,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {-3.5,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {-3.,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {-2.5,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {-1.5,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {-1.,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {-0.5,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {0.,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}}}, {Automatic, {{0.02,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.01, 0.}, {
AbsoluteThickness[0.1]}}, {0.04,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.01, 0.}, {
AbsoluteThickness[0.1]}}, {0.06,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.01, 0.}, {
AbsoluteThickness[0.1]}}, {0.08,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.01, 0.}, {
AbsoluteThickness[0.1]}}, {0.1,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.01, 0.}, {
AbsoluteThickness[0.1]}}, {0.,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {0.005,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {0.01,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {0.015,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {0.025,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {0.03,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {0.035,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {0.045,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {0.05,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {0.055,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {0.065,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {0.07,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {0.075,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {0.085,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {0.09,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {0.095,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {0.105,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {0.11,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {0.115,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {0.12,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}}}}],
GridLines->{None, None},
GridLinesStyle->Directive[
GrayLevel[0.5, 0.4]],
ImagePadding->All,
ImageSize->{664., Automatic},
LabelStyle->Directive[
GrayLevel[0], Large],
Method->{
"DefaultBoundaryStyle" -> Automatic,
"DefaultGraphicsInteraction" -> {
"Version" -> 1.2, "TrackMousePosition" -> {True, False},
"Effects" -> {
"Highlight" -> {"ratio" -> 2}, "HighlightPoint" -> {"ratio" -> 2},
"Droplines" -> {
"freeformCursorMode" -> True,
"placement" -> {"x" -> "All", "y" -> "None"}}}}, "DefaultMeshStyle" ->
AbsolutePointSize[6], "ScalingFunctions" -> None,
"CoordinatesToolOptions" -> {"DisplayFunction" -> ({
(Identity[#]& )[
Part[#, 1]],
(Identity[#]& )[
Part[#, 2]]}& ), "CopiedValueFunction" -> ({
(Identity[#]& )[
Part[#, 1]],
(Identity[#]& )[
Part[#, 2]]}& )}},
PlotRange->{All, All},
PlotRangeClipping->True,
PlotRangePadding->{{
Scaled[0.02],
Scaled[0.02]}, {
Scaled[0.05],
Scaled[0.05]}},
Ticks->{Automatic, Automatic}]], "Output",
CellChangeTimes->{{3.8178137307390394`*^9, 3.8178137966558456`*^9},
3.817813833822457*^9, 3.817918181674494*^9, {3.81791826289355*^9,
3.8179182677754297`*^9}, 3.8179933917972183`*^9, 3.817994087223906*^9,
3.8179941688896923`*^9, 3.8179942003068333`*^9, 3.8179946208683815`*^9,
3.817996273077289*^9, 3.817997156519248*^9},
CellLabel->"Out[7]=",ExpressionUUID->"1e4a847d-056f-4fe3-8b1e-e0bb65dc4477"]
}, Open ]],
Cell[BoxData[
RowBox[{
RowBox[{"Export", "[",
RowBox[{"\"\<fig1.pdf\>\"", ",", "fig1", ",",
RowBox[{"ImageResolution", "\[Rule]", "1000"}], ",",
RowBox[{"ImageSize", "\[Rule]", "Full"}]}], "]"}], ";"}]], "Input",
CellChangeTimes->{{3.8178147118840733`*^9, 3.8178147138418455`*^9}, {
3.817906034340926*^9, 3.8179060372056246`*^9}, 3.8179941757085805`*^9},
CellLabel->"In[8]:=",ExpressionUUID->"aca19b27-b88f-4e15-b90d-c56946acacf5"]
}, Open ]],
Cell[CellGroupData[{
Cell["Figure 2", "Subsubsection",
CellChangeTimes->{{3.817994162063757*^9, 3.817994164446105*^9},
3.817994240656599*^9},ExpressionUUID->"aee49b25-9939-4af3-9109-\
4241c6c81ef5"],
Cell[BoxData[
RowBox[{
RowBox[{"(*", " ",
RowBox[{
RowBox[{"The", " ", "H",
RowBox[{"(", "z", ")"}], " ", "deformation", " ", "for", " ",
RowBox[{"Planck18", "/", "\[CapitalLambda]CDM"}], " ", "model"}], " ",
"-", " ",
RowBox[{
RowBox[{"Eq", ".", " ",
RowBox[{"(", "2.1", ")"}]}], " ", "from", " ", "our", " ", "paper"}]}],
" ", "*)"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"hlcdm", "[", "z_", "]"}], ":=",
RowBox[{"h0c", " ",
RowBox[{"Sqrt", "[",
RowBox[{
RowBox[{"om0", " ",
RowBox[{
RowBox[{"(",
RowBox[{"1", "+", "z"}], ")"}], "^", "3"}]}], "+",
RowBox[{"(",
RowBox[{"1", "-", "om0"}], ")"}]}], "]"}]}]}], "\[IndentingNewLine]",
RowBox[{"(*", " ",
RowBox[{"The", " ", "comoving", " ", "distance", " ",
SubscriptBox["r", "\[CapitalLambda]"], " ", "function", " ", "for", " ",
RowBox[{"Planck18", "/", "\[CapitalLambda]CDM"}], " ", "model"}], " ",
"*)"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"rhlcdm", "[", "z_", "]"}], ":=",
RowBox[{"NIntegrate", "[",
RowBox[{
RowBox[{"1", "/",
RowBox[{"hlcdm", "[", "zp", "]"}]}], ",",
RowBox[{"{",
RowBox[{"zp", ",", "0", ",", "z"}], "}"}]}], "]"}]}], ";"}], "\n",
RowBox[{"(*", " ",
RowBox[{
RowBox[{"The", " ", "f",
RowBox[{"(", "z", ")"}]}], "\[Congruent]",
RowBox[{
FractionBox["z",
RowBox[{"r",
RowBox[{"(", "z", ")"}]}]], " ", "function", " ", "for", " ",
RowBox[{"Planck18", "/", "\[CapitalLambda]CDM"}], " ", "model", " ",
"as", " ", "a", " ", "function", " ", "of", " ", "z"}]}], "*)"}],
"\[IndentingNewLine]",
RowBox[{
RowBox[{"pl0", "=",
RowBox[{"Plot", "[",
RowBox[{
RowBox[{
RowBox[{"(",
RowBox[{
RowBox[{"rhlcdm", "[", "z", "]"}], "/", "z"}], ")"}], "^",
RowBox[{"-", "1"}]}], ",",
RowBox[{"{",
RowBox[{"z", ",", "0", ",", "1"}], "}"}], ",",
RowBox[{"PlotStyle", "\[Rule]",
RowBox[{"{", "Black", "}"}]}]}], "]"}]}], ";"}]}]}]], "Input",
CellChangeTimes->{{3.817786552366562*^9, 3.8177866220952077`*^9}, {
3.8177878136654544`*^9, 3.817787815869565*^9}, {3.8179060219601126`*^9,
3.8179060543091507`*^9}, {3.8179949424150767`*^9, 3.817994972281196*^9}, {
3.8179950079032965`*^9, 3.8179950145892982`*^9}},
CellLabel->"In[9]:=",ExpressionUUID->"787a3363-cb55-42ce-a17e-13b86eb07bbf"],
Cell[BoxData[
RowBox[{
RowBox[{"(*", " ",
RowBox[{
RowBox[{"The", " ", "H",
RowBox[{"(", "z", ")"}], " ", "transition", " ", "model"}], " ", "-",
" ",
RowBox[{
RowBox[{"Eq", ".", " ",
RowBox[{"(", "2.5", ")"}]}], " ", "from", " ", "our", " ", "paper"}]}],
" ", "*)"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"hdlcdm", "[",
RowBox[{"z_", ",", "zt_"}], "]"}], ":=",
RowBox[{"Piecewise", "[",
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"h0r", " ",
RowBox[{"Sqrt", "[",
RowBox[{
RowBox[{"om0", " ",
RowBox[{
RowBox[{"(",
RowBox[{"1", "+", "z"}], ")"}], "^", "3"}]}], "+",
RowBox[{"(",
RowBox[{"1", "-", "om0"}], ")"}]}], "]"}]}], ",",
RowBox[{"z", "<", "zt"}]}], "}"}], ",",
RowBox[{"{",
RowBox[{
RowBox[{"h0c", " ",
RowBox[{"Sqrt", "[",
RowBox[{
RowBox[{"om0", " ",
RowBox[{
RowBox[{"(",
RowBox[{"1", "+", "z"}], ")"}], "^", "3"}]}], "+",
RowBox[{"(",
RowBox[{"1", "-", "om0"}], ")"}]}], "]"}]}], ",",
RowBox[{"z", ">", "zt"}]}], "}"}]}], "}"}], "]"}]}],
"\[IndentingNewLine]",
RowBox[{"(*", " ",
RowBox[{
"The", " ", "comoving", " ", "distance", " ", "function", " ", "for", " ",
"the", " ", "H",
RowBox[{"(", "z", ")"}], " ", "transition", " ", "model"}], " ", "*)"}],
"\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"rhdlcdm", "[",
RowBox[{"z_", ",", "zt_"}], "]"}], ":=",
RowBox[{"NIntegrate", "[",
RowBox[{
RowBox[{"1", "/",
RowBox[{"hdlcdm", "[",
RowBox[{"zp", ",", "zt"}], "]"}]}], ",",
RowBox[{"{",
RowBox[{"zp", ",", "0", ",", "z"}], "}"}]}], "]"}]}], ";"}],
"\[IndentingNewLine]",
RowBox[{"(*", " ",
RowBox[{
RowBox[{"The", " ", "f",
RowBox[{"(", "z", ")"}]}], "\[Congruent]",
RowBox[{
FractionBox["z",
RowBox[{"r",
RowBox[{"(", "z", ")"}]}]], " ", "function", " ", "for", " ", "the",
" ", "H",
RowBox[{"(", "z", ")"}], " ", "transition", " ", "model", " ", "as",
" ", "a", " ", "function", " ", "of", " ", "z"}]}], "*)"}], "\n",
RowBox[{
RowBox[{"pl1", "=",
RowBox[{"Plot", "[",
RowBox[{
RowBox[{
RowBox[{"(",
RowBox[{
RowBox[{"rhdlcdm", "[",
RowBox[{"z", ",", "0.05"}], "]"}], "/", "z"}], ")"}], "^",
RowBox[{"-", "1"}]}], ",",
RowBox[{"{",
RowBox[{"z", ",", "0", ",", "1"}], "}"}], ",",
RowBox[{"PlotStyle", "\[Rule]",
RowBox[{"{",
RowBox[{"Red", ",", "DotDashed"}], "}"}]}]}], "]"}]}],
";"}]}]}]], "Input",
CellChangeTimes->{{3.8177850759444933`*^9, 3.817785098020481*^9}, {
3.8177851547102175`*^9, 3.817785225013975*^9}, {3.8177852564379597`*^9,
3.817785291862279*^9}, 3.8177862977779384`*^9, 3.817786394831637*^9, {
3.817817108949072*^9, 3.817817117878191*^9}, {3.817994896532242*^9,
3.817994940491086*^9}, {3.8179951381808224`*^9, 3.8179951960838046`*^9}, {
3.8179954048724413`*^9, 3.8179954050732017`*^9}},
CellLabel->"In[12]:=",ExpressionUUID->"479873d7-2d00-4622-9b7d-d251d8456099"],
Cell[BoxData[
RowBox[{
RowBox[{"(*", " ",
RowBox[{
RowBox[{"The", " ", "H",
RowBox[{"(", "z", ")"}], " ", "deformation", " ", "for", " ", "LwPT",
" ", "with", " ",
SubscriptBox["z", "t"]}], "=", "0.1"}], " ", "*)"}],
"\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"hwdlcdm", "[",
RowBox[{"z_", ",", "zt_", ",", "dw_"}], "]"}], ":=",
RowBox[{"Piecewise", "[",
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"h0c", " ",
RowBox[{"Sqrt", "[",
RowBox[{
RowBox[{"om0", " ",
RowBox[{
RowBox[{"(",
RowBox[{"1", "+", "z"}], ")"}], "^", "3"}]}], "+",
RowBox[{
RowBox[{"(",
RowBox[{"1", "-", "om0"}], ")"}],
RowBox[{
RowBox[{"(",
RowBox[{
RowBox[{"(",
RowBox[{"1", "+", "z"}], ")"}], "/",
RowBox[{"(",
RowBox[{"1", "+", "zt"}], ")"}]}], ")"}], "^",
RowBox[{"(",
RowBox[{"3", "dw"}], ")"}]}]}]}], "]"}]}], ",",
RowBox[{"z", "<", "zt"}]}], "}"}], ",",
RowBox[{"{",
RowBox[{
RowBox[{"h0c", " ",
RowBox[{"Sqrt", "[",
RowBox[{
RowBox[{"om0", " ",
RowBox[{
RowBox[{"(",
RowBox[{"1", "+", "z"}], ")"}], "^", "3"}]}], "+",
RowBox[{"(",
RowBox[{"1", "-", "om0"}], ")"}]}], "]"}]}], ",",
RowBox[{"z", ">", "zt"}]}], "}"}]}], "}"}], "]"}]}],
"\[IndentingNewLine]",
RowBox[{"(*", " ",
RowBox[{
RowBox[{
"The", " ", "comoving", " ", "distance", " ", "function", " ", "for",
" ", "the", " ", "LwPT", " ", "model", " ", "with", " ",
SubscriptBox["z", "t"]}], "=", "0.1"}], " ", "*)"}],
"\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"rhwdlcdm", "[",
RowBox[{"z_", ",", "zt_", ",", "dw_"}], "]"}], ":=",
RowBox[{"NIntegrate", "[",
RowBox[{
RowBox[{"1", "/",
RowBox[{"hwdlcdm", "[",
RowBox[{"zp", ",", "zt", ",", "dw"}], "]"}]}], ",",
RowBox[{"{",
RowBox[{"zp", ",", "0", ",", "z"}], "}"}]}], "]"}]}], ";"}], "\n",
RowBox[{"(*", " ",
RowBox[{
RowBox[{
RowBox[{"The", " ", "f",
RowBox[{"(", "z", ")"}]}], "\[Congruent]",
RowBox[{
FractionBox["z",
RowBox[{"r",
RowBox[{"(", "z", ")"}]}]], " ", "function", " ", "for", " ", "the",
" ", "LwPT", " ", "model", " ", "with", " ",
SubscriptBox["z", "t"]}]}], "=",
RowBox[{
"0.1", " ", "as", " ", "a", " ", "function", " ", "of", " ", "z"}]}],
"*)"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"pl2a", "=",
RowBox[{"Plot", "[",
RowBox[{
RowBox[{
RowBox[{"(",
RowBox[{
RowBox[{"rhwdlcdm", "[",
RowBox[{"z", ",", "0.1", ",",
RowBox[{"-", "0.9114716"}]}], "]"}], "/", "z"}], ")"}], "^",
RowBox[{"-", "1"}]}], ",",
RowBox[{"{",
RowBox[{"z", ",", "0", ",", "1"}], "}"}], ",",
RowBox[{"PlotStyle", "\[Rule]",
RowBox[{"{", "Blue", "}"}]}]}], "]"}]}], ";"}]}]}]], "Input",
CellChangeTimes->{
3.8177855391736298`*^9, {3.817785651551385*^9, 3.81778575657284*^9}, {
3.8177858276897464`*^9, 3.81778585260034*^9}, {3.817785883606476*^9,
3.8177858870293293`*^9}, 3.8177859425422297`*^9, {3.817786151178235*^9,
3.817786152040926*^9}, 3.8177863107806215`*^9, {3.8177863430726385`*^9,
3.817786344190604*^9}, 3.8177863904104404`*^9, {3.817820351546378*^9,
3.817820392874902*^9}, {3.817820493311084*^9, 3.8178204963449645`*^9},
3.817905892519169*^9, {3.817995323811536*^9, 3.8179954182345953`*^9}},
CellLabel->"In[15]:=",ExpressionUUID->"837e4edd-08d3-477e-8826-2ad475d7a73f"],
Cell[BoxData[
RowBox[{
RowBox[{"(*", " ",
RowBox[{
RowBox[{"The", " ", "H",
RowBox[{"(", "z", ")"}], " ", "deformation", " ", "for", " ", "wCDM",
" ", "model"}], " ", "-", " ",
RowBox[{
RowBox[{"Eq", ".", " ",
RowBox[{"(", "2.6", ")"}]}], " ", "from", " ", "our", " ", "paper"}]}],
" ", "*)"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{
RowBox[{"hwcdm", "[",
RowBox[{"z_", ",", "w_"}], "]"}], ":=", " ",
RowBox[{"Sqrt", "[",
RowBox[{
RowBox[{"om0", " ",
RowBox[{"h0c", "^", "2"}],
RowBox[{
RowBox[{"(",
RowBox[{"1", "+", "z"}], ")"}], "^", "3"}]}], "+",
RowBox[{
RowBox[{"(",
RowBox[{
RowBox[{"h0r", "^", "2"}], "-",
RowBox[{"om0", " ",
RowBox[{"h0c", "^", "2"}]}]}], ")"}],
RowBox[{
RowBox[{"(",
RowBox[{"1", "+", "z"}], ")"}], "^",
RowBox[{"(",
RowBox[{"3",
RowBox[{"(",
RowBox[{"1", "+", "w"}], ")"}]}], ")"}]}]}]}], "]"}]}], ";"}],
"\[IndentingNewLine]",
RowBox[{"(*", " ",
RowBox[{
"The", " ", "comoving", " ", "distance", " ", "function", " ", "for", " ",
"wCDM", " ", "model"}], " ", "*)"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"rhwcdm", "[",
RowBox[{"z_", ",", "w_"}], "]"}], ":=",
RowBox[{"NIntegrate", "[",
RowBox[{
RowBox[{"1", "/",
RowBox[{"hwcdm", "[",
RowBox[{"zp", ",", "w"}], "]"}]}], ",",
RowBox[{"{",
RowBox[{"zp", ",", "0", ",", "z"}], "}"}]}], "]"}]}], ";"}],
"\[IndentingNewLine]",
RowBox[{"(*", " ",
RowBox[{
RowBox[{"The", " ", "f",
RowBox[{"(", "z", ")"}]}], "\[Congruent]",
RowBox[{
FractionBox["z",
RowBox[{"r",
RowBox[{"(", "z", ")"}]}]], " ", "function", " ", "for", " ", "wCDM",
" ", "model", " ", "as", " ", "a", " ", "function", " ", "of", " ",
"z"}]}], "*)"}], "\n",
RowBox[{
RowBox[{"pl3", "=",
RowBox[{"Plot", "[",
RowBox[{
RowBox[{
RowBox[{"(",
RowBox[{
RowBox[{"rhwcdm", "[",
RowBox[{"z", ",",
RowBox[{"-", "1.2"}]}], "]"}], "/", "z"}], ")"}], "^",
RowBox[{"-", "1"}]}], ",",
RowBox[{"{",
RowBox[{"z", ",", "0", ",", "1"}], "}"}], ",",
RowBox[{"PlotStyle", "\[Rule]",
RowBox[{"{",
RowBox[{"Magenta", ",", "Thick", ",", "Dotted"}], "}"}]}]}], "]"}]}],
";"}]}]}]], "Input",
CellChangeTimes->{{3.817816394937684*^9, 3.817816442148136*^9}, {
3.817816496164472*^9, 3.8178166419686728`*^9}, {3.817816676484898*^9,
3.8178166777226095`*^9}, 3.8178168089932837`*^9, {3.8178170835511885`*^9,
3.8178170915085506`*^9}, {3.8178172104117136`*^9,
3.8178172176872497`*^9}, {3.8179181558841066`*^9, 3.817918164043069*^9}, {
3.8179945649414616`*^9, 3.8179946478694077`*^9}, {3.817994684391036*^9,
3.8179947975814967`*^9}, {3.8179949988544035`*^9, 3.8179950030617547`*^9}},
CellLabel->"In[18]:=",ExpressionUUID->"08874cb0-8718-4f4a-985f-d9321b644357"],
Cell[BoxData[
RowBox[{
RowBox[{"(*", " ",
RowBox[{
RowBox[{"The", " ", "H",
RowBox[{"(", "z", ")"}], " ", "deformation", " ", "for", " ", "LwPT",
" ", "with", " ",
SubscriptBox["z", "t"]}], "=", "0.05"}], " ", "*)"}],
"\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"hwdlcdm", "[",
RowBox[{"z_", ",", "zt_", ",", "w0_", ",", "w2_"}], "]"}], ":=",
RowBox[{"Piecewise", "[",
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"h0c", " ",
RowBox[{"Sqrt", "[",
RowBox[{
RowBox[{"om0", " ",
RowBox[{
RowBox[{"(",
RowBox[{"1", "+", "z"}], ")"}], "^", "3"}]}], "+",
RowBox[{
RowBox[{"(",
RowBox[{"1", "-", "om0"}], ")"}],
RowBox[{
RowBox[{"(",
RowBox[{
RowBox[{"(",
RowBox[{"1", "+", "z"}], ")"}], "/",
RowBox[{"(",
RowBox[{"1", "+", "zt"}], ")"}]}], ")"}], "^",
RowBox[{"(",
RowBox[{"3",
RowBox[{"(",
RowBox[{"1", "+", "w0"}], ")"}]}], ")"}]}]}]}], "]"}]}], ",",
RowBox[{"z", "<", "zt"}]}], "}"}], ",",
RowBox[{"{",
RowBox[{
RowBox[{"h0c", " ",
RowBox[{"Sqrt", "[",
RowBox[{
RowBox[{"om0", " ",
RowBox[{
RowBox[{"(",
RowBox[{"1", "+", "z"}], ")"}], "^", "3"}]}], "+",
RowBox[{
RowBox[{"(",
RowBox[{"1", "-", "om0"}], ")"}],
RowBox[{
RowBox[{"(",
RowBox[{"1", "+", "z"}], ")"}], "^",
RowBox[{"(",
RowBox[{"3",
RowBox[{"(",
RowBox[{"1", "+", "w2"}], ")"}]}], ")"}]}]}]}], "]"}]}], ",",
RowBox[{"z", ">", "zt"}]}], "}"}]}], "}"}], "]"}]}],
"\[IndentingNewLine]",
RowBox[{"(*", " ",
RowBox[{
RowBox[{
"The", " ", "comoving", " ", "distance", " ", "function", " ", "for",
" ", "the", " ", "LwPT", " ", "model", " ", "with", " ",
SubscriptBox["z", "t"]}], "=", "0.05"}], " ", "*)"}],
"\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"rhwdlcdm", "[",
RowBox[{"z_", ",", "zt_", ",", "w0_", ",", "w2_"}], "]"}], ":=",
RowBox[{"NIntegrate", "[",
RowBox[{
RowBox[{"1", "/",
RowBox[{"hwdlcdm", "[",
RowBox[{"zp", ",", "zt", ",", "w0", ",", "w2"}], "]"}]}], ",",
RowBox[{"{",
RowBox[{"zp", ",", "0", ",", "z"}], "}"}]}], "]"}]}], ";"}], "\n",
RowBox[{"(*", " ",
RowBox[{
RowBox[{
RowBox[{"The", " ", "f",
RowBox[{"(", "z", ")"}]}], "\[Congruent]",
RowBox[{
FractionBox["z",
RowBox[{"r",
RowBox[{"(", "z", ")"}]}]], " ", "function", " ", "for", " ", "the",
" ", "LwPT", " ", "model", " ", "with", " ",
SubscriptBox["z", "t"]}]}], "=",
RowBox[{
"0.05", " ", "as", " ", "a", " ", "function", " ", "of", " ", "z"}]}],
"*)"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"pl2", "=",
RowBox[{"Plot", "[",
RowBox[{
RowBox[{
RowBox[{"(",
RowBox[{
RowBox[{"rhwdlcdm", "[",
RowBox[{"z", ",", "0.05", ",",
RowBox[{"-", "2.78"}], ",",
RowBox[{"-", "1"}]}], "]"}], "/", "z"}], ")"}], "^",
RowBox[{"-", "1"}]}], ",",
RowBox[{"{",
RowBox[{"z", ",", "0", ",", "1"}], "}"}], ",",
RowBox[{"PlotStyle", "\[Rule]",
RowBox[{"{",
RowBox[{"Green", ",", "Dashed"}], "}"}]}]}], "]"}]}],
";"}]}]}]], "Input",
CellChangeTimes->{{3.817786460115994*^9, 3.817786464087432*^9}, {
3.81778690701788*^9, 3.817786908227646*^9}, {3.81778694537535*^9,
3.817786954394247*^9}, {3.817787009437835*^9, 3.8177870290821676`*^9}, {
3.8177872796633854`*^9, 3.8177874265001144`*^9}, {3.817801902455146*^9,
3.817801902645589*^9}, {3.8178019487593384`*^9, 3.817801948902935*^9}, {
3.8178166915905466`*^9, 3.8178166935004377`*^9}, 3.817816742443542*^9, {
3.8178170704561872`*^9, 3.817817074655914*^9}, {3.817918170451174*^9,
3.8179181720010595`*^9}, {3.8179954348571587`*^9, 3.817995462196189*^9}},
CellLabel->"In[21]:=",ExpressionUUID->"825956a7-1167-45ba-9f49-851bdff29383"],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{
RowBox[{"(*", " ",