-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpaper.bib
More file actions
2506 lines (2505 loc) · 102 KB
/
Copy pathpaper.bib
File metadata and controls
2506 lines (2505 loc) · 102 KB
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
@book{Euclid1482,
author={{Ratdolt, E.}},
year={1482},
title={{Euclides. Elementa geometriae}},
editor={Campano da Novara},
address={Venice},
publisher= {{Erhard Ratdolt}}, url={https://catalog.lindahall.org/discovery/delivery/01LINDAHALL_INST:LHL/1286816310005961}
}
@article{4050d5b1-6eca-3ffb-830b-c2dc0aa00f7c,
ISSN = {00255769},
URL = {http://www.jstor.org/stable/27956626},
author = {{Schrader, D. V }},
journal = {The Mathematics Teacher},
number = {5},
pages = {385--396},
publisher = {National Council of Teachers of Mathematics},
title = {The Newton-Leibniz controversy concerning the discovery of the calculus},
volume = {55},
year = {1962}
}
@article{158652a7-917b-3f7f-a54e-c3df4098be44,
ISSN = {00029890, 19300972},
URL = {http://www.jstor.org/stable/2308368},
author = {{Rosenthal, A.}},
journal = {The American Mathematical Monthly},
number = {2},
pages = {75--86},
publisher = {[Taylor & Francis, Ltd., Mathematical Association of America]},
title = {The History of Calculus},
volume = {58},
year = {1951}
}
@article{8050604b-681f-354b-ab48-39957b0409a7,
ISSN = {00029890, 19300972},
URL = {http://www.jstor.org/stable/2974042},
author = {{Cajori, F.}},
journal = {The American Mathematical Monthly},
number = {1},
pages = {15--20},
publisher = {[Taylor & Francis, Ltd., Mathematical Association of America]},
reviewed-author = {J. M. Child},
title = {Who Was the First Inventor of the Calculus?},
volume = {26},
year = {1919}
}
@article{b12b2451-33d8-353d-ad23-1608f2964126,
ISSN = {00318108, 15581470},
URL = {http://www.jstor.org/stable/2180670},
author = {{Cassirer, E.}},
journal = {The Philosophical Review},
number = {4},
pages = {366--391},
publisher = {[Duke University Press, Philosophical Review]},
title = {Newton and Leibniz},
volume = {52},
year = {1943}
}
@Inbook{Kossovsky2020,
author={{Kossovsky, A. E.}},
title="The Bitter Dispute with Leibniz over Calculus Priority",
bookTitle="The Birth of Science",
year="2020",
publisher="Springer International Publishing",
address="Cham",
pages="161--161",
abstract="Newton invented the calculus in the mid to late 1660s, almost a decade before Leibniz did so independently and ultimately more influentially. Newton later became involved in a long and very bitter dispute with Leibniz over priority in the development of calculus (a.k.a `the Leibniz--Newton Calculus Controversy'). Most modern historians believe that Newton and Leibniz developed calculus independently, although with very different notations.",
isbn="978-3-030-51744-1",
doi="10.1007/978-3-030-51744-1_33",
url="https://doi.org/10.1007/978-3-030-51744-1_33"
}
@article{koyama2005,
ISSN = {00029939, 10886826},
URL = {http://www.jstor.org/stable/4097775},
abstract = {We show that Euler's famous integrals whose integrands contain the logarithm of the sine function are expressed via multiple sine functions.},
author = {{Koyama, S. -J., & Kurokawa, N.}},
journal = {Proceedings of the American Mathematical Society},
number = {5},
pages = {1257--1265},
publisher = {American Mathematical Society},
title = {Euler's Integrals and Multiple Sine Functions},
volume = {133},
year = {2005}
}
@inbook{anglin1995,
author={{Anglin, W. S., Lambek, J.}},
title={Mathematics in the Renaissance},
bookTitle={The Heritage of Thales},
year={1995},
publisher={Springer},
address={New York, NY},
pages={125--131},
isbn={978-1-4612-0803-7},
doi={10.1007/978-1-4612-0803-7_25}
}
@book{gregory1668geometriae, url={https://archive.org/details/gregory_universalis/page/n144/mode/1up},
title={{Geometriae Pars Universalis, Inferuiens Quantitatum Curvarum transmutationi & mensurae}},
author={{Gregory, J.}},
year={1668},
publisher={Typis Heredum Pauli Frambotti},
address={Patavii},
language={lat}
}
@book{gregory1668exercitationes,
title={Exercitationes geometricae},
author={{Gregory, J.}},
url={https://books.google.at/books?id=ZtRYqgyD5YsC},
year={1668},
publisher={{Typis Guilielmi Godbid, & Impensis Mosis Pitt Bibliopolae, in vico vulgo vocato Little Britain}},
address={Londini},
language={lat}
}
@article{Divakaran2007,
ISSN = {00221791, 15730395},
URL = {http://www.jstor.org/stable/23497280},
author = {{Divakaran, P. P.}},
journal = {Journal of Indian Philosophy},
number = {5/6},
pages = {417--443},
publisher = {Springer},
title = {{The First Textbook of Calculus: "Yuktibhāṣā"}},
volume = {35},
year = {2007}
}
@book{Jyesthadeva1530,
title={{Ganita-Yukti-Bhasa (Rationales in Mathematical Astronomy)}},
author={{Jyesthadeva}}, url={https://archive.org/details/raswhishNA-124/page/n1/mode/1up},
year={1530},
publisher={Kerala school of astronomy and mathematics},
address={Kingdom of Cochin}
}
@article{whish1834,
author={{Whish, C. M.}},
title={{XXXIII. On the Hindú Quadrature of the Circle, and the infinite Series of the proportion of the circumference to the diameter exhibited in the four S'ástras, the Tantra Sangraham, Yucti Bháshá, Carana Padhati, and Sadratnamála}},
journal={Transactions of the Royal Asiatic Society of Great Britain and Ireland},
volume={3},
number={3},
year={1834},
pages={509--523},
doi={10.1017/S0950473700001221},
html={https://archive.org/details/transactionsofro03asia/page/n33/mode/1up},
abstract={A'ryab'hatta, who flourished in the beginning of the thirty-seventh century of the Cáli Yuga, of which four thousand nine hundred and twenty years have passed, has in his work, the Aryab'hatiyam, in which he mentions the period of his birth, exhibited the proportion of the diameter to the circumference of the circle as 20000 to 62832, in the following verse:
Chaturadhicam ṣatamashṭaguṇandwáshashṭistathá sahasráṇám Ayutadwaya vishcambhasyásannó vritta pariṇáhah.}
}
@article{GUPTA1974287,
title = {An Indian form of third order Taylor series approximation of the sine},
journal = {Historia Mathematica},
volume = {1},
number = {3},
pages = {287-289},
year = {1974},
issn = {0315-0860},
doi = {10.1016/0315-0860(74)90067-6},
url = {https://www.sciencedirect.com/science/article/pii/0315086074900676},
author = {{Gupta, R. C.}},
abstract = {The paper describes an approximation formula for sine (x + h) that differs from the first four terms of the Taylor expansion only by having 4 in place of 6 in the denominator of the fourth term. It appears in Sanskrit stanzas quoted in a work of about the fifteenth century and given here with translation and explanation.}
}
@book{gregory1939james,
title={James Gregory: Tercentenary Memorial Volume, Containing His Correspondence with John Collins and His Hither to Unpublished Mathematical Manuscripts, Together with Addresses and Essays Communicated to the Royal Society of Edinburgh, July 4, 1938},
author={{Gregory, J., & Collins, J.}},
editor={{Turnbull, H. W.}},
lccn={40013492},
url={https://books.google.at/books?id=\_eruAAAAMAAJ},
year={1939},
publisher={Royal Society of Edinburgh},
address={Edinburgh}
}
@misc{Collins1671,
author={{Collins, J.}},
year={1671},
month={02},
day={15},
title={{Extracts from a letter from James Gregory to John Collins, 15 February 1671}},
publisher={University Library},
address={{Cambridge}},
url={https://archivesearch.lib.cam.ac.uk/repositories/2/archival_objects/566767}
}
@book{taylor1715methodus,
title={{Methodus incrementorum directa & inversa. Auctore Brook Taylor, LL. D. & Regiae Societatis Secretario}},
author={{Taylor, B.}},
url={https://books.google.com/books?id=iXN1xgEACAAJ},
year={1715},
publisher={Typis Pearsonianis: Prostant apud Gul. Innys ad Insignia Principis in Coemeterio Paulino MDCCXV},
address={Londini}
}
@book{taylor1717methodus,
title={{Methodus incrementorum directa & inversa. Auctore Brook Taylor, LL. D. & Regiae Societatis Secretario}},
author={{Taylor, B.}},
url={https://books.google.com/books?id=r-Gq9YyZYXYC},
year={1717},
publisher={Impensis Gulielmi Innys ad Insignia Principis in Coemetrio D. Pauli. MDCCXVII},
address={Londini}
}
@article{17c5d199-da2b-3c2c-90b5-0f8b612544b7,
ISSN = {00031224},
URL = {http://www.jstor.org/stable/2090408},
abstract = {A pair of asymmetric coefficients is introduced which are appropriate for measuring the association in ordered contingency tables. Earlier statistical methods are reviewed, and the new coefficients are shown to be closely related to both Kendall's tau-b and to Goodman and Kruskal's gamma, as well as the commonly used "percentage-difference." They are also shown to have a operational interpretation (in the Goodman-Kruskal sense). Their utility in both square and non-square contingency tables is discussed, as well as the way they may be interpreted as ordinal analogues of the traditional regression coefficients.},
author = {{Somers, R. H.}},
journal = {American Sociological Review},
number = {6},
pages = {799--811},
publisher = {[American Sociological Association, Sage Publications, Inc.]},
title = {A New Asymmetric Measure of Association for Ordinal Variables},
urldate = {2025-01-27},
volume = {27},
year = {1962}
}
@article{665905b2-6123-3642-832e-05dbc1f48979,
ISSN = {00063444},
URL = {http://www.jstor.org/stable/2332226},
author = {{Kendall, M. G.}},
journal = {Biometrika},
number = {1/2},
pages = {81--93},
publisher = {[Oxford University Press, Biometrika Trust]},
title = {A New Measure of Rank Correlation},
urldate = {2025-01-27},
volume = {30},
year = {1938}
}
@article{ca468a70-0be4-389a-b0b9-5dd1ff52b33f,
ISSN = {00029556},
URL = {http://www.jstor.org/stable/1412159},
author = {{Spearman, C.}},
journal = {The American Journal of Psychology},
number = {1},
pages = {72--101},
publisher = {University of Illinois Press},
title = {The Proof and Measurement of Association between Two Things},
urldate = {2025-01-27},
volume = {15},
year = {1904}
}
@book{bortz2005,
title={Statistik},
subtitle={für Human- und Sozialwissenschaftler},
author={{Bortz, J., & Weber, R.}},
series={Springer-Lehrbuch},
year={2005},
edition={6},
address={{Berlin, Heidelberg}},
publisher={{Springer}},
doi={10.1007/b137571}
}
@book{bortz2010,
title={Statistik für Human- und Sozialwissenschaftler},
subtitle={Limitierte Sonderausgabe},
author={{Bortz, J., & Schuster, C.}},
series={Springer-Lehrbuch},
year={2010},
edition={7},
address={{Berlin, Heidelberg}},
publisher={{Springer}},
doi={10.1007/978-3-642-12770-0}
}
@book{bortz2008,
author={{Bortz, J., Lienert, G. A., & Boehnke, K.}},
title={{Verteilungsfreie Methoden in der Biostatistik}},
year="2008",
publisher="Springer",
address="Berlin, Heidelberg",
isbn="978-3-540-74707-9",
doi="10.1007/978-3-540-74707-9",
url="https://doi.org/10.1007/978-3-540-74707-9"
}
@book{krauth1973,
author={{Krauth, J., & Lienert, G.}},
year={1973},
title={{Die Konfigurationsfrequenzanalyse (KFA) und ihre Anwendung in Psychologie und Medizin: Ein multivariates nichtparametrisches Verfahren zum Aufdeckung von Typen und Syndromen; mit 70 Tab.}},
address={Freiburg},
publisher={Alber},
ISBN={978-3-495-47288-0},
url={https://d-nb.info/740097938}
}
@book{krauth1993,
title={{Einführung in die Konfigurationsfrequenzanalyse (KFA): Ein multivariates nichtparametrisches Verfahren zum Nachweis und zur Interpretation von Typen und Syndromen}},
author={{Krauth, J.}},
isbn={9783621271820},
url={https://books.google.com/books?id=4oeIAAAACAAJ},
year={1993},
publisher={BELTZ Psychologie Verlags Union},
address={Weinheim}
}
@book{Meyberg2001a,
author={{Meyberg, K., & Vachenauer, P.}},
Title={{Höhere Mathematik 1: Differential- und Integralrechnung Vektor- und Matrizenrechnung}},
year="2001",
publisher="Springer",
address="Berlin, Heidelberg",
doi="10.1007/978-3-642-56654-7",
url="https://doi.org/10.1007/978-3-642-56654-7"
}
@book{Meyberg2001b,
author={{Meyberg, K., & Vachenauer, P.}},
title={{Höhere Mathematik 2: Differentialgleichungen, Funktionentheorie, Fourier-Analysis, Variationsrechnung}},
year="2001",
publisher="Springer",
address="Berlin, Heidelberg",
isbn="978-3-642-56655-4",
doi="10.1007/978-3-642-56655-4",
url="https://doi.org/10.1007/978-3-642-56655-4"
}
@book{Remmert2002,
author={{Remmert, R.,
& Schumacher, G.}},
title={{Funktionentheorie 1}},
year="2002",
publisher="Springer Berlin Heidelberg",
address="Berlin, Heidelberg",
isbn="978-3-642-56281-5",
doi="10.1007/978-3-642-56281-5",
url="https://doi.org/10.1007/978-3-642-56281-5"
}
@book{Burckel2021,
author={{Burckel, R. B}},
title="Classical Analysis in the Complex Plane",
year="2021",
publisher="Springer",
address="New York, NY",
isbn="978-1-0716-1965-0",
doi="10.1007/978-1-0716-1965-0",
url="https://doi.org/10.1007/978-1-0716-1965-0"
}
@Inbook{Vince2021,
author={{Vince, J.}},
title="The Complex Plane",
bookTitle="Quaternions for Computer Graphics",
year="2021",
publisher="Springer",
address="London",
pages="55--70",
abstract="The history of some subjects often makes exciting reading, especially when there is a dispute over dates or prior art. Clarifying who did something before someone else is the work of historians, who can help unravel who should be blamed for an event, and who should take the credit. Untangling events from journals, books and private letters, and placing them in an unbiased, temporal sequence requires subject knowledge, tenacity and objective analysis.",
isbn="978-1-4471-7509-4",
doi="10.1007/978-1-4471-7509-4_4",
url="https://doi.org/10.1007/978-1-4471-7509-4_4"
}
@article{tate1955,
ISSN = {00063444, 14643510},
URL = {http://www.jstor.org/stable/2333437},
author = {{Tate, R. F.}},
journal = {Biometrika},
number = {1/2},
pages = {205--216},
publisher = {[Oxford University Press, Biometrika Trust]},
title = {The Theory of Correlation Between Two Continuous Variables when One is Dichotomized},
volume = {42},
year = {1955}
}
@article{pearson1900a,
author = {{Pearson, K.}},
title = {I. Mathematical contributions to the theory of evolution. —VII. On the correlation of characters not quantitatively measurable},
journal = {Philosophical Transactions of the Royal Society of London. Series A, Containing Papers of a Mathematical or Physical Character},
volume = {195},
number = {262-273},
pages = {1--47},
year = {1900},
doi = {10.1098/rsta.1900.0022}
}
@article{pearson1909,
ISSN = {00063444, 14643510},
URL = {http://www.jstor.org/stable/2345365},
author = {{Pearson, K.}},
journal = {Biometrika},
number = {1/2},
pages = {96--105},
publisher = {[Oxford University Press, Biometrika Trust]},
title = {On a New Method of Determining Correlation Between a Measured Character A, and a Character B, of which Only the Percentage of Cases Wherein B Exceeds (or Falls Short of) a Given Intensity is Recorded for Each Grade of A},
volume = {7},
year = {1909}
}
@book{Pearson1904,
author={{Pearson, K.}},
year={1904},
title={{Mathematical contributions to the theory of evolution. XIII. On the Theory of Contingency and its Relation to Association and Normal Correlation}},
series={{Drapers' Company research memoirs. Biometric Series, I}},
address={Department of Applied Mathematics. University College, University of London},
publisher={Dulau & Co},
url={https://openlibrary.org/books/OL24168960M}
}
@book{Pearson1905,
author={{Pearson, K.}},
year={1905},
title={{Mathematical contributions to the theory of evolution. XIV. On the general theory of skew correlation and non-linear regression}},
series={{Drapers' Company research memoirs. Biometric Series, II}},
address={Department of Applied Mathematics. University College, University of London},
publisher={Dulau & Co},
url={https://openlibrary.org/books/OL6555066M}
}
@book{bravais1844,
title={{Analyse Mathematique. Sur les probabilités des erreurs de situation d'un point}},
author={{Bravais, A.}},
url={https://books.google.com/books?id=7g\_hAQAACAAJ},
year={1844},
address={Paris},
publisher={Imprimerie Royale}
}
@article{galton1877,
author={{Galton, F.}},
year={1877},
title={{Typical Laws of Heredity 1}},
journal={Nature},
volume={15},
pages={492--495},
url={https://doi.org/10.1038/015492a0}
}
@article{841d8b21-4510-37ee-90ea-3fea092c5e1c,
ISSN = {09528385},
URL = {http://www.jstor.org/stable/2340126},
author = {{Yule, G. U.}},
journal = {Journal of the Royal Statistical Society},
number = {6},
pages = {579--652},
publisher = {[Wiley, Royal Statistical Society]},
title = {On the Methods of Measuring Association Between Two Attributes},
urldate = {2025-01-27},
volume = {75},
year = {1912}
}
@article{10.1214/aoms/1177730491,
author = {{Mann, H. B., & Whitney, D. R.}},
title = {{On a Test of Whether one of Two Random Variables is Stochastically Larger than the Other}},
volume = {18},
journal = {The Annals of Mathematical Statistics},
number = {1},
publisher = {Institute of Mathematical Statistics},
pages = {50 -- 60},
year = {1947},
doi = {10.1214/aoms/1177730491},
URL = {https://doi.org/10.1214/aoms/1177730491}
}
@article{Lüroth1876,
author={{Lüroth, J.}},
year={1876},
title={Vergleichung von zwei Werthen des wahrscheinlichen Fehlers},
journal={Astronomische Nachrichten},
volume={87},
number={14},
pages={209--220},
doi={10.1002/asna.18760871402},
url={https://doi.org/10.1002/asna.18760871402}
}
@article{Pearson1895,
author={{Pearson, K.}},
year={1895},
title={Contributions to the Mathematical Theory of Evolution. II. Skew Variation in Homogeneous Material},
journal={Philosophical Transactions of the Royal Society A: Mathematical, Physical and Engineering Sciences},
volume={186},
pages={343--414},
number={},
ISSN={1364-503X},
doi={10.1098/rsta.1895.0010},
url={https://doi.org/10.1098/rsta.1895.0010}
}
@article{Gosset1908,
author={{Gosset, W. S.}},
year={1908},
title={The probable error of a mean},
journal={Biometrika},
volume={6},
number={1},
pages={1--25},
url={https://doi.org/10.2307/2331554}
}
@article{Fisher1915,
doi={10.2307/2331838},
ISSN = {00063444},
URL = {http://www.jstor.org/stable/2331838},
author = {{Fisher, R. A.}},
journal = {Biometrika},
number = {4},
pages = {507--521},
publisher = {[Oxford University Press, Biometrika Trust]},
title = {Frequency Distribution of the Values of the Correlation Coefficient in Samples from an Indefinitely Large Population},
volume = {10},
year = {1915}
}
@article{10.1214/aoms/1177706717,
author = {{Olkin, I., & Pratt, J. W.}},
title = {{Unbiased Estimation of Certain Correlation Coefficients}},
volume = {29},
journal = {The Annals of Mathematical Statistics},
number = {1},
publisher = {Institute of Mathematical Statistics},
pages = {201 -- 211},
abstract = {This paper deals with the unbiased estimation of the correlation of two variates having a bivariate normal distribution (Sec. 2), and of the intraclass correlation, i.e., the common correlation coefficient of a $p$-variate normal distribution with equal variances and equal covariances (Sec. 3). In both cases, the estimator has the following properties. It is a function of a complete sufficient statistic and is therefore the unique (except for probability zero) minimum variance unbiased estimator. Its range is the region of possible values of the estimated quantity. It is a strictly increasing function of the usual estimator differing from it only by terms of order $1/n$ and consequently having the same asymptotic distribution. Since the unbiased estimators are cumbersome in form in that they are expressed as series or integrals, tables are included giving the unbiased estimators as functions of the usual estimators. In Sec. 4 we give an unbiased estimator of the squared multiple correlation. It has the properties mentioned in the second paragraph except that it may be negative, which the squared multiple correlation cannot. In each case the estimator is obtained by inverting a Laplace transform. We are grateful to W. H. Kruskal and L. J. Savage for very helpful comments and suggestions, and to R. R. Blough for his able computations.},
year = {1958},
doi = {10.1214/aoms/1177706717},
URL = {https://doi.org/10.1214/aoms/1177706717}
}
@article{Fisher1922,
author={{Fisher, R. A.}},
year={1922},
title={On the Interpretation of {χ2} from Contingency Tables, and the Calculation of P},
journal={Journal of the Royal Statistical Society},
volume={85},
number={1},
pages={87--94},
url={https://doi.org/10.2307/2340521}
}
@article{Agresti1177011454,
author = {Agresti, A.},
title = {{A Survey of Exact Inference for Contingency Tables}},
volume = {7},
journal = {Statistical Science},
number = {1},
publisher = {Institute of Mathematical Statistics},
pages = {131--153},
keywords = {categorical data, Chi-squared tests, computational algorithms, conditional inference, Fisher's exact test, logistic regression, loglinear models, Odds ratios, sufficient statistics},
year = {1992},
doi = {10.1214/ss/1177011454},
URL = {https://doi.org/10.1214/ss/1177011454}
}
@book{Cohen1977,
author={{Cohen, J.}},
year={1977},
title={Statistical Power Analysis for the Behavioral Science},
address={Amsterdam},
publisher={Elsevier Academic Press},
ISBN={978-0-12-179060-8},
url={https://doi.org/10.1016/C2013-0-10517-X}
}
@book{Cohen1988,
author={{Cohen, J.}},
year={1988},
title={Statistical Power Analysis for the Behavioral Science},
edition={2},
address={Hillsdale, NJ},
publisher={Lawrence Erlbaum Associates},
doi={10.4324/9780203771587}
}
@article{Cohen1992,
author={{Cohen, J.}},
year={1992},
title={A power primer},
journal={Psychological Bulletin},
volume={112},
number={1},
pages={155--159},
url={https://doi.org/10.1037/0033-2909.112.1.155}
}
@misc{Borenstein1997,
author={{Borenstein, M., Rothstein, H., & Cohen, J.}},
year={1997},
title={Power and precision : a computer program for statistical power analysis and confidence intervals},
publisher={Computer Science},
url={https://www.semanticscholar.org/paper/Power-and-precision-%3A-a-computer-program-for-power-Borenstein-Rothstein/f379f13a460b01488c35aea408e355436dbae839}
}
@manual{Borenstein2001,
author={{Borenstein, M., Rothstein, H., Cohen, J., Schoenfeld, D., Berlin, J., & Lakatos, E.}},
year={2001},
title={Power and Precision: A computer program for statistical power analysis and confidence intervals},
address={Englewood, NJ},
publisher={Biostat, Inc.}, url={https://books.google.com/books?id=tYg02XZBeNAC&printsec=frontcover&hl=de#v=onepage&q&f=false},
ebook={https://archive.org/details/powerprecisionco0000bore}
}
@article{Quenouille1949,
author = {{Quenouille, M. H.}},
title = {Approximate Tests of Correlation in Time-Series},
journal = {Journal of the Royal Statistical Society B},
series={Methodological},
volume = {11},
number = {1},
pages = {68--84},
doi = {10.1111/j.2517-6161.1949.tb00023.x},
url = {https://rss.onlinelibrary.wiley.com/doi/abs/10.1111/j.2517-6161.1949.tb00023.x},
year = {1949}
}
@article{Efron1979,
author = {{Efron, B.}},
title = {{Bootstrap Methods: Another Look at the Jackknife}},
volume = {7},
journal = {The Annals of Statistics},
number = {1},
publisher = {Institute of Mathematical Statistics},
pages = {1--26},
year = {1979},
doi = {10.1214/aos/1176344552},
URL = {https://doi.org/10.1214/aos/117634455}
}
@article{Efron1981,
author = {{Efron, B.}},
title = {Nonparametric estimates of standard error: The jackknife, the bootstrap and other methods},
journal = {Biometrika},
volume = {68},
number = {3},
pages = {589--599},
year = {1981},
month = {12},
abstract = {We discuss several nonparametric methods for attaching a standard error to a point estimate: the jackknife, the bootstrap, half-sampling, subsampling, balanced repeated replications, the infinitesimal jackknife, influence function techniques and the delta method. The last three methods are shown to be identical. All the methods derive from the same basic idea, which is also the idea underlying the common parametric methods. Extended numerical comparisons are made for the special case of the correlation coefficient.},
issn = {0006-3444},
doi = {10.1093/biomet/68.3.589},
url = {https://doi.org/10.1093/biomet/68.3.589}
}
@book{Efron1982,
author = {{Efron, B.}},
title = {The Jackknife, the Bootstrap and Other Resampling Plans},
publisher = {{SIAM, Society for Industrial and Applied Mathematics}},
year = {1982},
doi = {10.1137/1.9781611970319},
address = {Philadelphia},
series = {CBMS-NSF Regional Conference Series in Applied Mathematics, Monograph 38},
URL = {https://epubs.siam.org/doi/abs/10.1137/1.9781611970319}
}
@article{Pearson14786440009463897,
author = {{Pearson, K.}},
title = {{X. On the criterion that a given system of deviations from the probable in the case of a correlated system of variables is such that it can be reasonably supposed to have arisen from random sampling}},
journal = {The London, Edinburgh, and Dublin Philosophical Magazine and Journal of Science},
volume = {50},
number = {302},
pages = {157--175},
year = {1900},
publisher = {Taylor & Francis},
doi = {10.1080/14786440009463897},
URL = {https://doi.org/10.1080/14786440009463897},
eprint = {https://doi.org/10.1080/14786440009463897}
}
@article{Helmert1876,
author={{Helmert, F. R.}},
year={1876},
title={Ueber die Wahrscheinlichkeit der Potenzsummen der Beobachtungsfehler und über einige damit im Zusammenhange stehende Fragen},
journal={Zeitschrift für Mathematik und Physik},
volume={21},
pages={192--219},
url={https://gdz.sub.uni-goettingen.de/id/PPN599415665_0021}
}
@article{Plackett1983,
author={{Plackett, R. L.}},
year={1983},
title={Karl Pearson and the Chi-Squared Test},
journal={International Statistical Review / Revue Internationale de Statistique},
volume={51},
number={1},
pages={59--72},
url={https://doi.org/10.2307/1402731}
}
@article{Elderton1902,
author={{Elderton, W. P.}},
year={1902},
title={Tables for Testing the Goodness of Fit of Theory to Observation},
journal={Biometrika},
volume={1},
number={2},
pages={155--163},
doi={10.1093/biomet/1.2.155},
url={https://doi.org/10.1093/biomet/1.2.155}
}
@article{Pearson1914,
author={{Pearson, K.}},
year={1914},
title={On the probability that two independent distributions of frequency are really samples of the same population, with special reference to recent work on the identity of Trypanosome strains},
journal={Biometrika},
volume={10},
pages={85--154},
doi={10.1093/biomet/10.1.85},
url={https://doi.org/10.1093/biomet/10.1.85}
}
@article{Fisher1924,
author={{Fisher, R. A.}},
year={1924},
title={On a distribution yielding the error functions of several well-known statistics},
journal={Proceedings International Mathematical Congress, Toronto},
volume={2},
pages={805--813}, url={https://repository.rothamsted.ac.uk/item/8w2q9/on-a-distribution-yielding-the-error-functions-of-several-well-known-statistics}
}
@book{Snedecor1934,
author={{Snedecor, G. W.}},
year={1934},
title={Calculation and interpretation of analysis of variance and covariance},
publisher={Collegiate Press},
address={Ames, Iowa},
url={https://doi.org/10.1037/13308-000}
}
@book{Scheffe1959,
author={{Scheffé, H.}},
year={1959},
title={The analysis of variance},
publisher={Wiley},
address={New York},
url={https://psycnet.apa.org/record/1961-00074-000}
}
@book{Gauße-rara-2857,
doi = {10.3931/e-rara-2857},
URL = {https://doi.org/10.3931/e-rara-2857},
title={Theoria combinationis observationum erroribus minimis obnoxiae},
author={{Gauß, C. F.}},
year={1823},
publisher={{apud Henricum Dieterich}},
address={Göttingen},
language={lat},
pages= {58}
}
@book{Gauß1809,
author={{Gauß, C. F.}},
year={1809},
title={{Theoria motvs corporvm coelestivm in sectionibvs conicis Solem ambientivm}},
address={Hambvrgi},
publisher={{Svmtibvs F. Perthes et I. H. Besser}}, url={https://archive.org/details/theoriamotuscor00gausgoog/page/n1/mode/1up}
}
@book{DeMoivre1738,
title={{The Doctrine of Chances: Or, A Method of Calculating the Probability of Events in Play}},
edition={2},
author={{de Moivre, A.}},
url={https://books.google.com/books?id=PII\_AAAAcAAJ},
year={1738},
address={London},
publisher={H. Woodfall}
}
@book{jahnke1909,
title={Funktionentafeln mit Formeln und Kurven},
author={{Jahnke, E., & Emde, F.}},
lccn={09029241},
series={Mathematisch-physikalische Schriften f{\"u}r Ingenieure und Studierende},
edition={1},
url={https://books.google.com/books?id=BVRzvgAACAAJ},
year={1909},
address={Leipzig},
publisher={B. G. Teubner}
}
@article{Euler1738,
author={{Euler, L.}},
year={1738},
title={{De progressionibus transcendentibus seu quarum termini generales algebraice dari nequeunt}},
journal={{Commentarii academiae scientiarum Petropolitanae}},
volume={5},
pages={36--57},
url={https://scholarlycommons.pacific.edu/euler-works/19/}
}
@incollection{SCHNEIDER200588,
title = {{Chapter 6 - Jakob Bernoulli, Ars conjectandi (1713)}},
editor = {{Grattan-Guinness, I., Cooke, R., Corry, L., Crépel, P., & Guicciardini, N.}},
booktitle = {{Landmark Writings in Western Mathematics 1640-1940}},
publisher = {Elsevier Science},
address = {Amsterdam},
pages = {88--104},
year = {2005},
isbn = {978-0-444-50871-3},
doi = {10.1016/B978-044450871-3/50087-5},
url = {https://www.sciencedirect.com/science/article/pii/B9780444508713500875},
author = {{Schneider, I.}}
}
@book{Bernoulli1713,
author={{Bernoulli, J.}},
year={1713},
title={{Ars conjectandi, opus posthumum. Accedit Tractatus de seriebus infinitis, et epistola gallicé scripta de ludo pilae reticularis}},
address={Basileae},
publisher={Impensis Thurnisiorum, Fratrum},
url={https://www.e-rara.ch/zut/doi/10.3931/e-rara-9001}
}
@misc{Bernoulli1729,
author={{Bernoulli, D.}},
year={1729},
month={10},
title={{Lettre XLVII. D. Bernoulli a Goldbach}},
address={{St.-Petersbourg ce 6. octobre 1729}},
url={https://commons.m.wikimedia.org/wiki/File:DanielBernoulliLetterToGoldbach-1729-10-06.jpg}
}
@article{Fisher1926,
author={{Fisher, R. A.}},
year={1926},
title={The arrangement of field experiments},
journal={Journal of the Ministry of Agriculture},
volume={33},
pages={503--515},
abstract={Author's note. From about 1923 onwards the Statistical Department at Rothamsted had been much concerned with the precision of field experiments in agriculture, and with modifications in their design, having the dual aim of increasing the precision and of providing a valid estimate of error. These two desiderata had been somewhat confused in the minds of the experimenters, and the present paper was the author's first attempt at setting out the rational principles on which he might proceed. The paper is a precursor to the book on the Design of Experiments published nine years later.},
issn={0368-3087},
url={https://doi.org/10.23637/rothamsted.8v61q}
}
@book{Fisher1935,
author={{Fisher, R. A.}},
year={1935},
title={The design of experiments},
edition={1},
publisher={Oliver & Boyd},
address={Edinburgh},
abstract={Different types of experimentation are considered with reference to their logical structure, to show that valid conclusions may be drawn from them without using the disputed theory of inductive inferences, i.e., of arguing from observation to explanatory theory. This is possible if a null hypothesis is explicitly formulated when the experiment is designed; this hypothesis can never be proved, but may be disproved with whatever probability one will accept as demonstrating a positive result. Chapters II, III, and IV illustrate simple applications of the principles involved in sensitiveness, significance, tests of wider hypotheses, validity, and estimation and elimination of error. More elaborate structures are treated in later chapters. Chapter titles are: (V) the Latin square; (VI) factorial design in experimentation; (VII) confounding; (VIII) special cases of partial confounding; (IX) increase of precision by concomitant measurements: statistical control; (X) generalization of null hypotheses: fiducial probability; (XI) measurement of amount of information in general.},
url={https://psycnet.apa.org/record/1939-04964-000}
}
@book{Fisher1966,
author={{Fisher, R. A.}},
year={1966},
title={The design of experiments},
edition={8},
publisher={Hafner},
address={Edinburgh},
abstract={Are scientific disciplines really different? This question often crystallizes into the old debate: Are Physics and Biology different? If Physics and Biology worked on highly different entities (objects), or if they had highly different methods, it would be straightforward to close the debate by a negative answer. However, if we cannot identify any differences, we should explore more deeply the status of the laws found in Physics and questioned in Biology. By slightly modifying the definition of what is a law, I argue here that both disciplines possess some laws exhibiting various “degrees of confirmation”. I finally propose explanations for why P and B give the illusion differing radically, although they both belong to the same continuum of a unified scientific domain.},
url={https://scirp.org/reference/referencespapers.aspx?referenceid=895747}
}
@book{Fisher1971,
author={{Fisher, R. A.}},
year={1971},
title={The design of experiments},
edition={9},
publisher={Hafner Press},
address={New York},
abstract={The Ninth Edition, 1971, is the same as the eighth, except for additions and clarifications (mostly in Chapter X), introduced from notes written for this purpose by Sir Ronald Fisher some time before his death.},
url={https://home.iitk.ac.in/~shalab/anova/DOE-RAF.pdf}
}
@article{Pitman1937a,
ISSN = {14666162},
URL = {http://www.jstor.org/stable/2984124},
author = {{Pitman, E. J. G.}},
journal = {Supplement to the Journal of the Royal Statistical Society},
number = {1},
pages = {119--130},
publisher = {[Wiley, Royal Statistical Society]},
title = {Significance Tests Which May be Applied to Samples From any Populations},
volume = {4},
year = {1937}
}
@article{Pitman1937b,
ISSN = {14666162},
URL = {http://www.jstor.org/stable/2983647},
author = {{Pitman, E. J. G.}},
journal = {Supplement to the Journal of the Royal Statistical Society},
number = {2},
pages = {225--232},
publisher = {[Wiley, Royal Statistical Society]},
title = {Significance Tests Which May be Applied to Samples from any Populations. II. The Correlation Coefficient Test},
volume = {4},
year = {1937}
}
@article{Pitman1938,
ISSN = {00063444},
URL = {http://www.jstor.org/stable/2332008},
author = {{Pitman, E. J. G.}},
journal = {Biometrika},
number = {3/4},
pages = {322--335},
publisher = {[Oxford University Press, Biometrika Trust]},
title = {Significance Tests which May be Applied to Samples from any Populations: III. The Analysis of Variance Test},
volume = {29},
year = {1938}
}
@book{Good2006,
author={{Good, P.}},
year={2006},
title={Resampling Methods},
edition={3},
publisher={{Birkhäuser}},
address={Basel},
abstract={This thoroughly revised and expanded third edition is a practical guide to data analysis using the bootstrap, cross-validation, and permutation tests. Only requiring minimal mathematics beyond algebra, it provides a table-free introduction to data analysis utilizing numerous exercises, practical data sets, and freely available statistical shareware.},
isbn={978-0817643867}, url={https://www.amazon.com/Resampling-Methods-Practical-Guide-Analysis/dp/0817643869}
}
@inbook{Edgington2011,
author={{Edgington, E. S.}},
editor={{Lovric, M.}},
title="Randomization Tests",
bookTitle="International Encyclopedia of Statistical Science",
year="2011",
publisher="Springer",
address="Berlin, Heidelberg",
pages="1182--1183",
isbn="978-3-642-04898-2",
doi="10.1007/978-3-642-04898-2_56",
url="https://doi.org/10.1007/978-3-642-04898-2_56"
}
@article{Edgington1964,
author = {{Edgington, E. S.}},
year = {1964},
title = {Randomization tests},
journal = {The Journal of Psychology: Interdisciplinary and Applied},
volume = {57},
number = {2},
pages = {445--449},
doi={10.1080/00223980.1964.9916711}
}
@article{Edgington1987,
author = {{Edgington, E. S.}},
year = {1987},
title = {Randomized single-subject experiments and statistical tests},
journal = {Journal of Counseling Psychology},
volume = {34},
number = {4},
pages = {437--442},
doi={10.1037/0022-0167.34.4.437}
}
@article{Edgington1980,
author = {{Edgington, E. S.}},
year = {1980},
title = {Validity of randomization tests for one-subject experiments},
journal = {Journal of Educational Statistics},
volume = {5},
number = {3},
pages = {235--251},
doi={10.2307/1164966}
}
@book{Edgington2007,
author={{Edgington, E. S., & Onghena, P.}},
year={2007},
title={Randomization Tests},
edition={4},
publisher={{Chapman and Hall/CRC}},
address={New York},
abstract={},
isbn={9780367577711},
url={https://doi.org/10.1201/9781420011814}
}
@incollection{Beasley2009,
author={{Beasley, W. H., & Rodgers, J. L.}},
year={2009},
title={Resampling methods},
editor={{Millsap, R. E., & Maydeu-Olivares, A.}},
booktitle={The Sage handbook of quantitative methods in psychology},
publisher={{Sage Publications Ltd.}},
address={Thousand Oaks, California},
pages={362--386},
url={https://psycnet.apa.org/doi/10.4135/9780857020994.n16}
}
@article{Argand1813,
author={{Argand, R.}},
title={{Essai sur une manière de représenter les quantités imaginaires dans les constructions géométriques}},
journal={Annales de mathématiques pures et appliquées},
volume={4},
pages={133--147},
year={1813},
url={https://fr.wikisource.org/wiki/Annales_de_math%C3%A9matiques_pures_et_appliqu%C3%A9es/Tome_04/Philosophie_math%C3%A9matique,_article_4}
}
@book{Argand1874,
author={{Argand, R.}},
title={{Essai sur une manière de représenter les quantités imaginaires dans les constructions géométriques}},
subtitle={{Précédée d'une préface par M. J. Hoüel, et suivie d'un appendice contenant des extraits des "Annales de Gergonne", relatifs à la question des imaginaires}},
journal={Annales de mathématiques pures et appliquées},
edition={2},
address={Paris},
publisher={Gauthier-Villars},
year={1874},
url={http://catalogue.bnf.fr/ark:/12148/cb300261909}
}
@book{descartes2012geometry,
title={The Geometry of Ren{\'e} Descartes: with a Facsimile of the First Edition},
author={{Descartes, R.}},
isbn={9780486158174},
series={Dover Books on Mathematics},
url={https://books.google.com/books?id=MB7F32p0y5MC},
year={2012},
address={New York},
publisher={Dover Publications}
}
@book{Descartes1664geometry,
author={{Descartes, R.}},
year={1664},
title={{La Géométrie}},
address={A Paris},
publisher={{Chez Charles Angot, Libraire Iuré, ruë S. Iacques, au Lion d’Or. M. DC. LXIV. Avec Privilege du Roy}},
url={https://books.google.com/books?id=VtFcAAAAcAAJ}
}
@book{Gauss1828,
doi={10.3931/e-rara-61066},
url={https://doi.org/10.3931/e-rara-61066},
title={{Theoria residuorum biquadraticorum: commentatio prima}},
author={{Gauß, C. F.}},
year={1828},
publisher={typis Dieterichianis},
address={Gottingae}
}
@book{Gauss1832,
doi={10.3931/e-rara-61067},
url={https://doi.org/10.3931/e-rara-61067},
title={{Theoria residuorum biquadraticorum: commentatio secunda}},
author={{Gauß, C. F.}},
year={1832},
publisher={typis Dieterichianis},
address={Gottingae}
}
@article{Wirtinger1927,
url = {https://doi.org/10.1007/BF01447872},
title = {{Zur formalen Theorie der Funktionen von mehr komplexen Veränderlichen}},
author = {{Wirtinger, W.}},
journal={Mathematische Annalen},
pages = {357--374},
volume = {97},
doi = {10.1007/BF01447872},
year = {1927}
}
@article{McNemar1947,
title={Note on the Sampling Error of the Difference Between Correlated Proportions or Percentages},
volume={12},
DOI={10.1007/BF02295996},
number={2},
journal={Psychometrika},
author={{McNemar, Q.}},
year={1947},
pages={153–-157}
}
@article{yates1934,
ISSN = {14666162},
URL = {http://www.jstor.org/stable/2983604},
author = {{Yates, F.}},
journal = {Supplement to the Journal of the Royal Statistical Society},
number = {2},
pages = {217--235},
publisher = {[Oxford University Press, Royal Statistical Society]},
title = {Contingency Tables Involving Small Numbers and the χ2 Test},
volume = {1},
year = {1934}
}
@article{Siegel01061942,
author = {{Siegel, I. H.}},
title = {Index-Number Differences: Geometric Means},
journal = {Journal of the American Statistical Association},