-
Notifications
You must be signed in to change notification settings - Fork 1
/
theoremqa_test.json
9934 lines (9934 loc) · 420 KB
/
theoremqa_test.json
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
[
{
"Question": "How many ways are there to divide a set of 8 elements into 5 non-empty ordered subsets?",
"Answer": 11760,
"Answer_type": "integer",
"Picture": null,
"source": "self",
"id": "jianyu_xu/Lah_number_6.json",
"explanation": "NONE",
"theorem": "lah number",
"subfield": "Combinatorics",
"field": "Math"
},
{
"Question": "what is the value of $\\int_{-infty}^{+infty} sin(3*t)*sin(t/\\pi)/t^2 dt$?",
"Answer": 1.0,
"Picture": null,
"Answer_type": "float",
"source": "probability: 5.9.5",
"id": "mingyin/inversion-theorem1.json",
"explanation": "NONE",
"theorem": "inversion theorem",
"subfield": "Mathematical analysis",
"field": "Math"
},
{
"Question": "Consider the following graph, with links costs listed, and assume we are using shortest-path (or lowest-cost) routing, and that routing has equilibrated to a constant set of routing tables. The routing algorithm uses poisoned reverse, advertising an infinite weight for the poisoned paths. What distance does C advertise to B?",
"Answer": 5,
"Answer_type": "integer",
"Picture": "images/ipnetwork21-ip.png",
"source": "website | https://vinesmsuic.github.io/notes-networkingIP-qa/",
"id": "maxku/ipnetwork21-ip.json",
"explanation": "NONE",
"theorem": "internet protocol",
"subfield": "Computer networking",
"field": "EECS"
},
{
"Question": "Please solve the equation 2*x^3 + e^x = 10 using newton-raphson method.",
"Answer": 1.42,
"Answer_type": "float",
"Picture": null,
"source": "self",
"id": "wenhuchen/newton3.json",
"explanation": "NONE",
"theorem": "newton-raphson method",
"subfield": "Numerical analysis",
"field": "Math"
},
{
"Question": "How many ways are there to divide a set of 7 elements into 4 non-empty ordered subsets?",
"Answer": 4200,
"Answer_type": "integer",
"Picture": null,
"source": "self",
"id": "jianyu_xu/Lah_number_5.json",
"explanation": "NONE",
"theorem": "lah number",
"subfield": "Combinatorics",
"field": "Math"
},
{
"Question": "Let a undirected graph G with edges E = {<0,1>,<0,2>,<0,3>,<0,5>,<2,3>,<2,4>,<4,5>}, which <A,B> represent Node A is connected to Node B. What is the shortest path from node 0 to node 5? Represent the path as a list.",
"Answer": [
0,
5
],
"Answer_type": "list of integer",
"Picture": null,
"source": "self",
"id": "maxku/graphtheory6-shortestpath.json",
"explanation": "NONE",
"theorem": "shortest path",
"subfield": "Graph theory",
"field": "EECS"
},
{
"Question": "Let a undirected graph G with edges E = {<0,2>,<2,1>,<2,3>,<3,4>,<4,1>}, which <A,B> represent Node A is connected to Node B. What is the shortest path from node 4 to node 0? Represent the path as a list.",
"Answer": [
4,
1,
2,
0
],
"Answer_type": "list of integer",
"Picture": null,
"source": "self",
"id": "maxku/graphtheory8-shortestpath.json",
"explanation": "NONE",
"theorem": "shortest path",
"subfield": "Graph theory",
"field": "EECS"
},
{
"Question": "Compute $\\int_{|z| = 1} z^2 sin(1/z) dz$. The answer is Ai with i denoting the imaginary unit, what is A?",
"Answer": -1.047,
"Answer_type": "float",
"Picture": null,
"source": "website | https://math.libretexts.org/Bookshelves/Analysis/Complex_Variables_with_Applications_(Orloff)/09%3A_Residue_Theorem/9.05%3A_Cauchy_Residue_Theorem",
"id": "wenhuchen/cauchy_residue2.json",
"explanation": "NONE",
"theorem": "cauchy's residue theorem",
"subfield": "Complex analysis",
"field": "Math"
},
{
"Question": "A container weighs 3.22 lb force when empty. Filled with water at 60\u00b0F the mass of the container and its contents is 1.95 slugs. Find its volume in cubic feet. Assume density of water = 62.4 lb force/ft3.",
"Answer": 0.955,
"Answer_type": "float",
"Picture": null,
"source": "website | https://cdn1.sph.harvard.edu/wp-content/uploads/sites/2067/2016/10/Fluid-1-Classnotes.pdf",
"id": "wenhuchen/Fluid_mechanics2.json",
"explanation": "NONE",
"theorem": "newton's law of motion",
"subfield": "Fluid mechanics",
"field": "Physics"
},
{
"Question": "Let M be the set of bounded functions (i.e. \\sup_{x\\in[a,b]}|f(x)|<\\infty) in C[0,1]. Is the set ${F(x)=\\int_0^x f(t) dt | f \\in M }$ a sequentially compact set? Answer 1 for yes and 0 for no. Furthermore, it can be proved using 1. Arzel\u00e0-Ascoli theorem, 2. Riesz representation theorem, 3. Banach fixed point theorem, 4. None of the above. Return the answers of the two questions in a list. For example, if you think the answer is no and Riesz representation theorem, then return [0,2].",
"Answer": [
1,
1
],
"Picture": null,
"Answer_type": "list of integer",
"source": "functional analysis: exercise 1.3.5",
"id": "mingyin/Arzela-Ascoli-theorem1.json",
"explanation": "NONE",
"theorem": "arzel\u00e0-ascoli theorem",
"subfield": "Functional analysis",
"field": "Math"
},
{
"Question": "Find the x value of the solutions to the linear system: 7x - y = 15x, -6x + 8y = 15y.",
"Answer": 0,
"Answer_type": "integer",
"Picture": null,
"source": "text | Otto Bretscher, Linear Algebra with Applications.",
"id": "elainewan/math_algebra_1.json",
"explanation": "solutions/math_algebra_1.txt",
"theorem": "linear systems",
"subfield": "Algebra",
"field": "Math"
},
{
"Question": "In Jules Verne's 1865 story with this title, three men went to the moon in a shell fired from a giant cannon sunk in the earth in Florida. Find the minimum muzzle speed that would allow a shell to escape from the earth completely (the escape speed). Neglect air resistance, the earth's rotation, and the gravitational pull of the moon. The earth's radius and mass are $R_E}=$ $6.38 \\times 10^6 m$ and $m_E=5.97 \\times 10^{24} kg$. (Unit: 10 ^ 4 m/s)",
"Answer": 1.12,
"Picture": null,
"Answer_type": "float",
"source": "University Physics with Modern Physics | Example 13.5",
"id": "panlu/energy_conservation1.json",
"explanation": "solutions/energy_conservation1.png",
"theorem": "energy conservation",
"subfield": "Kinetics",
"field": "Physics"
},
{
"Question": "Is W = {[x, y] in R^2: x >= 0 and y >= 0} a subspace of R^2?",
"Answer": false,
"Answer_type": "bool",
"Picture": null,
"source": "text | Otto Bretscher, Linear Algebra with Applications.",
"id": "elainewan/math_algebra_3.json",
"explanation": "solutions/math_algebra_3.png",
"theorem": "linear subspaces",
"subfield": "Algebra",
"field": "Math"
},
{
"Question": "compute the line integral of \\int_K xy dx, \\int_L xy dx, where K is a straight line from (0,0) to (1,1) and L is the Parabola y=x^2 from (0,0) to (1,1). return the answer as a list",
"Answer": [
0.333,
0.25
],
"Picture": null,
"Answer_type": "list of float",
"source": "mathematical analysis 2; 17.2 example 1",
"id": "mingyin/double-integral4.json",
"explanation": "NONE",
"theorem": "line integral theorem",
"subfield": "Calculus",
"field": "Math"
},
{
"Question": "True of false: one can draw a simple connected planar graph with 200 vertices and 400 faces",
"Answer": false,
"Picture": null,
"Answer_type": "bool",
"source": "Self",
"id": "tonyxia/maxplanar3.json",
"explanation": "NONE",
"theorem": "maximal planar graph",
"subfield": "Graph theory",
"field": "EECS"
},
{
"Question": "Consider the basis B of R^2 consisting of vectors v_1 = [3,1] and v_2 = [-1, 3]. If x = [10, 10], find the B-coordinate vector of x",
"Answer": [
4,
2
],
"Answer_type": "list of integer",
"Picture": null,
"source": "text | Otto Bretscher, Linear Algebra with Applications.",
"id": "elainewan/math_algebra_3_6.json",
"explanation": "solutions/math_algebra_3_6.txt",
"theorem": "basis",
"subfield": "Algebra",
"field": "Math"
},
{
"Question": "What is the number of labelled forests on 10 vertices with 5 connected components, such that vertices 1, 2, 3, 4, 5 all belong to different connected components?",
"Answer": 50000,
"Answer_type": "integer",
"Picture": null,
"source": "self",
"id": "jianyu_xu/Cayley_1.json",
"explanation": "solutions/Cayley_1.txt",
"theorem": "cayley's formula",
"subfield": "Graph theory",
"field": "EECS"
},
{
"Question": "Let g(x) be the inverse of f(x) = x + cos(x). What is g'(1)?",
"Answer": 1,
"Answer_type": "integer",
"Picture": null,
"source": "text | Jon Rogawski and Colin Adams, Calculus.",
"id": "elainewan/math_calculus_7_3.json",
"explanation": "NONE",
"theorem": "inverse functions",
"subfield": "Calculus",
"field": "Math"
},
{
"Question": "Let V be the space of all infinite sequences of real numbers. Consider the transformation T(x_0, x_1, x_2, ...) = (x_1, x_2, x_3, ...) from V to V. Is the sequence (1,2,3,...) in the image of T?",
"Answer": true,
"Answer_type": "bool",
"Picture": null,
"source": "text | Otto Bretscher, Linear Algebra with Applications.",
"id": "elainewan/math_algebra_4_2.json",
"explanation": "solutions/math_algebra_4_2.png",
"theorem": "image of linear transformations",
"subfield": "Algebra",
"field": "Math"
},
{
"Question": "Let W(t) be the standard Brownian motion. Define X(t) = exp{W(t)}, for all t \\in [0, \\infty). Let 0 < s < t. Find Cov(X(s=1/2), X(t=1)).",
"Answer": 1.3733,
"Answer_type": "float",
"Picture": null,
"source": "website | https://www.probabilitycourse.com/chapter11/11_4_3_solved_probs.php",
"id": "wenhuchen/wiener_process3.json",
"explanation": "NONE",
"theorem": "wiener process",
"subfield": "Stochastic process",
"field": "Math"
},
{
"Question": "Consider a random walk on a connected graph with 4 edges. What is the highest possible entropy rate? Use base 2 logarithm and return the entropy rate in bits.",
"Answer": 1.094,
"Answer_type": "float",
"Picture": null,
"source": "textbook 4.21(a)",
"id": "xinyi/random_walk_on_graph_max.json",
"explanation": "solutions/random_walk_on_graph_max.png",
"theorem": "random walk",
"subfield": "Probability theory",
"field": "Math"
},
{
"Question": "If u is the real part of a function, and v is the imaginary part, then the Cauchy-Riemann equations for u and v take the following form in polar coordinates: r\\frac{\\partial u}{\\partial r} = \\frac{\\partial v}{\\partial \\theta} and r\\frac{\\partial v}{\\partial r} = -\\frac{\\partial u}{\\partial \\theta}. Is this argument True or False?",
"Answer": true,
"Answer_type": "bool",
"Picture": null,
"source": "website | https://haroldpboas.gitlab.io/courses/407-2017c/solution2.pdf",
"id": "wenhuchen/cauchy_riemann4.json",
"explanation": "NONE",
"theorem": "cauchy riemann theorem",
"subfield": "Complex analysis",
"field": "Math"
},
{
"Question": "The shock absorbers in an old car with mass 1000 kg are completely worn out. When a 980-N person climbs slowly into the car at its center of gravity, the car sinks 2.8 cm. The car (with the person aboard) hits a bump, and the car starts oscillating up and down in SHM. Model the car and person as a single body on a single spring, and find the frequency of the oscillation. (Unit: Hz)",
"Answer": 0.9,
"Picture": null,
"Answer_type": "float",
"source": "University Physics with Modern Physics | Example 14.6",
"id": "panlu/angular_frequency3.json",
"explanation": "solutions/angular_frequency3.png",
"theorem": "angular dynamics",
"subfield": "Kinetics",
"field": "Physics"
},
{
"Question": "Find the smallest positive integer that leaves a remainder of 1 when divided by 2, a remainder of 2 when divided by 3, a remainder of 3 when divided by 4, a remainder of 4 when divided by 5, and a remainder of 5 when divided by 6.",
"Answer": 59,
"Answer_type": "integer",
"Picture": null,
"source": "self",
"id": "jianyu_xu/Chinese_Remainder_Theorem_6.json",
"explanation": "solutions/Chinese_Remainder_Theorem_6.txt",
"theorem": "chinese remainder theorem",
"subfield": "Number theory",
"field": "Math"
},
{
"Question": "the matrix in ./mingyin/mc.png represents a markov chain. What is the period of state 0? What is the period of state 1? Return the two answers as a list.",
"Answer": [
2,
2
],
"Picture": "images/mc.png",
"Answer_type": "list of integer",
"source": "stochastic process: Example 3.7",
"id": "mingyin/markov-chain1.json",
"explanation": "NONE",
"theorem": "markov decision processes",
"subfield": "Stochastic process",
"field": "Math"
},
{
"Question": "$\\lim_{x \\to c}((x^2 - 5x - 6) / (x - c))$ exists. What is the value of c?",
"Answer": [
-1,
6
],
"Answer_type": "list of integer",
"Picture": null,
"source": "text | Jon Rogawski and Colin Adams, Calculus.",
"id": "elainewan/math_calculus_2_3.json",
"explanation": "NONE",
"theorem": "indeterminate form",
"subfield": "Calculus",
"field": "Math"
},
{
"Question": "Aisha graduates college and starts a job. She saves $1000 each quarter, depositing it into a retirement savings account. Suppose that Aisha saves for 30 years and then retires. At retirement she wants to withdraw money as an annuity that pays a constant amount every month for 25 years. During the savings phase, the retirement account earns 6% interest compounded quarterly. During the annuity payout phase, the retirement account earns 4.8% interest compounded monthly. Calculate Aisha\u2019s monthly retirement annuity payout.",
"Answer": 1898.27,
"Answer_type": "float",
"Picture": null,
"source": "website | https://math.libretexts.org/Bookshelves/Applied_Mathematics/Applied_Finite_Mathematics_(Sekhon_and_Bloom)/06%3A_Mathematics_of_Finance/6.05%3A_Miscellaneous_Application_Problems",
"id": "xueguangma/compound_interest.json",
"explanation": "solutions/compound_interest.png",
"theorem": "compound interest formula",
"subfield": "Quantitive methods",
"field": "Finance"
},
{
"Question": "Let $g_\\theta(x_1,x_2)=f_\\theta(x_1)f_\\theta(x_2)$. Let $J_f(\\theta)$ be the Fisher information of $f_\\theta$. What is the relationship between $J_f(\\theta)$ and $J_g(\\theta)$? (a) $J_g(\\theta) = 0.5J_f(\\theta)$. (b) $J_g(\\theta) = J_f(\\theta)$. (c) $J_g(\\theta) = 2J_f(\\theta)$. (d) $J_g(\\theta) = 4J_f(\\theta)$. Which option is correct?",
"Answer": "(c)",
"Answer_type": "option",
"Picture": null,
"source": "textbook 11.9",
"id": "xinyi/fisher_information_4.json",
"explanation": "NONE",
"theorem": "fisher information",
"subfield": "Statistics",
"field": "Math"
},
{
"Question": "An auto magazine reports that a certain sports car has 53% of its weight on the front wheels and 47% on its rear wheels. (That is, the total normal forces on the front and rear wheels are 0.53w and 0.47w, respectively, where w is the car\u2019s weight.) The distance between the axles is 2.46 m. How far in front of the rear axle is the car\u2019s center of gravity?",
"Answer": 1.3,
"Picture": null,
"Answer_type": "float",
"source": "University Physics with Modern Physics | Example 11.2",
"id": "panlu/center_of_gravity2.json",
"explanation": "solutions/center_of_gravity2.png",
"theorem": "center of gravity",
"subfield": "Kinetics",
"field": "Physics"
},
{
"Question": "A parachutist with mass m=80 kg is undergoing free fall. The drag force applied on him is $F_D = kv^2$, where v is the velocity measured relative to the air. The constant k=0.27 [Ns^2/m^2] is given. Find the distance traveled h in meters, until v=0.95$v_t$ is achieved, where $v_t$ is the terminal velocity. Return the numeric value.",
"Answer": 345.0,
"Answer_type": "float",
"Picture": null,
"source": "website | https://cdn1.sph.harvard.edu/wp-content/uploads/sites/2067/2016/10/Fluid-1-Classnotes.pdf",
"id": "wenhuchen/Fluid_mechanics1.json",
"explanation": "NONE",
"theorem": "newton's law of motion",
"subfield": "Fluid mechanics",
"field": "Physics"
},
{
"Question": "ABCD is a parallelogram. E is the midpoint, F is also a midpoint. Area of AFG = 10, Area of EGH = 3. What is Area CDH?",
"Answer": 7,
"Answer_type": "integer",
"Picture": "images/geometry_1.jpg",
"source": "website | https://www.gogeometry.com/problem/index.html",
"id": "wenhuchen/parallelogram2.json",
"explanation": "NONE",
"theorem": "parallelogram",
"subfield": "Geometry",
"field": "Math"
},
{
"Question": "In how many ways can a set of 6 distinct letters be partitioned into 3 non-empty groups if each group must contain at least 2 letters?",
"Answer": 15,
"Answer_type": "integer",
"Picture": null,
"source": "self",
"id": "jianyu_xu/Stirling_number_second_kind_6.json",
"explanation": "NONE",
"theorem": "stirling number of the second kind",
"subfield": "Combinatorics",
"field": "Math"
},
{
"Question": "Consider $x(t)$ to be given as, $$ x(t)=\\cos (1000 \\pi t) $$ . Let the sampling frequency be $700 \\mathrm{~Hz}$. Does aliasing occur?",
"Answer": true,
"Answer_type": "bool",
"Picture": null,
"source": "website | https://vinesmsuic.github.io/notes-signal3/#Some-Examples",
"id": "maxku/signalprocessing12-nyquist.json",
"explanation": "NONE",
"theorem": "nyquist-shannon sampling theorem",
"subfield": "Signal processing",
"field": "EECS"
},
{
"Question": "For a\\geq 0, we define $S_a={x | dist(x, S) \\leq a}$, where $dist(x,S)=inf_{y\\in S}||x-y||$. Suppose S is convex. Is S_a convex? Return 1 for yes and 0 for no.",
"Answer": 1.0,
"Picture": null,
"Answer_type": "float",
"source": "optimization: exercise 2.14",
"id": "mingyin/convexity1.json",
"explanation": "NONE",
"theorem": "convexity",
"subfield": "Mathematical analysis",
"field": "Math"
},
{
"Question": "suppose the 10-by-10 matrix A has the form: if i \\neq j, A_{i,j}=a_i*b_j; if i=j, A_{i,j}=1+a_i*b_j for all 1<=i,j<=10. Here a_i = 1/i, b_i=1/(i+1). Find the determinant of A. return the numeric.",
"Answer": 1.9,
"Picture": null,
"Answer_type": "float",
"source": "linear algebra 4.5 example 4",
"id": "mingyin/linear-dependence3.json",
"explanation": "NONE",
"theorem": "linear dependence",
"subfield": "Algebra",
"field": "Math"
},
{
"Question": "Find the area of the region between the graphs of the functions f(x) = x^2 - 4x + 10, g(x) = 4x - x^2, 1 <= x <= 3.",
"Answer": 5.333,
"Answer_type": "float",
"Picture": null,
"source": "text | Jon Rogawski and Colin Adams, Calculus.",
"id": "elainewan/math_calculus_6.json",
"explanation": "NONE",
"theorem": "integral rules",
"subfield": "Calculus",
"field": "Math"
},
{
"Question": "Does the following transformation have an eigenvector: Counterclockwise rotation through an angle of 45 degrees followed by a scaling by 2 in R^2.",
"Answer": false,
"Answer_type": "bool",
"Picture": null,
"source": "text | Otto Bretscher, Linear Algebra with Applications.",
"id": "elainewan/math_algebra_7_3.json",
"explanation": "NONE",
"theorem": "eigenvalues and eigenvectors",
"subfield": "Algebra",
"field": "Math"
},
{
"Question": "How many ways are there to arrange 6 pairs of parentheses such that they are balanced?",
"Answer": 132,
"Answer_type": "integer",
"Picture": null,
"source": "self",
"id": "jianyu_xu/Catalan_1.json",
"explanation": "solutions/Catalan_1.txt",
"theorem": "catalan-mingantu number",
"subfield": "Combinatorics",
"field": "Math"
},
{
"Question": "Find the fraction of 7.7-MeV alpha particles that is deflected at an angle of 90\u00b0 or more from a gold foil of 10^-6 m thickness.",
"Answer": 4e-05,
"Picture": null,
"Answer_type": "float",
"source": "Modern Physics for Scientists and Engineers Fourth Edition | Example 4.2",
"id": "tonyxia/atom1.json",
"explanation": "NONE",
"theorem": "atomic theorem",
"subfield": "Atomic physics",
"field": "Physics"
},
{
"Question": "In how many ways can a group of 9 people be divided into 3 non-empty subsets?",
"Answer": 3025,
"Answer_type": "integer",
"Picture": null,
"source": "self",
"id": "jianyu_xu/Stirling_number_second_kind_2.json",
"explanation": "NONE",
"theorem": "stirling number of the second kind",
"subfield": "Combinatorics",
"field": "Math"
},
{
"Question": "Suppose there is a 50-50 chance that an individual with logarithmic utility from wealth and with a current wealth of $20,000 will suffer a loss of $10,000 from a car accident. Insurance is competitively provided at actuarially fair rates. Compute the utility if the individual buys full insurance.",
"Answer": 9.616,
"Answer_type": "float",
"Picture": null,
"source": "text | Walter Nicholson, Microeconomic Theory Basic Principles and Extensions.",
"id": "elainewan/econ_micro_18_2.json",
"explanation": "NONE",
"theorem": "expected utility",
"subfield": "Economics",
"field": "Finance"
},
{
"Question": "The returns on a stock are 2.45% at 2018, 5.42% at 2019, -13.83% at 2020. What is the compound annual rate (between -1 and 1) of return over the three years.",
"Answer": -0.023669,
"Answer_type": "float",
"Picture": null,
"source": "self",
"id": "xueguangma/geometric_mean_return.json",
"explanation": "solutions/geometric_mean_return.txt",
"theorem": "geometric mean return",
"subfield": "Quantitive methods",
"field": "Finance"
},
{
"Question": "Does $p(x) = x^5 + x \u2212 1$ have any real roots?",
"Answer": true,
"Answer_type": "bool",
"Picture": null,
"source": "textbook | Forrest_M147CN_F20.pdf",
"id": "xueguangma/intermediate_value_theorem.json",
"explanation": "NONE",
"theorem": "intermediate value theorem",
"subfield": "Calculus",
"field": "Math"
},
{
"Question": "Find integer $n \\ge 1$, such that $n \\cdot 2^{n+1}+1$ is a perfect square.",
"Answer": 3,
"Picture": null,
"Answer_type": "integer",
"source": "https://artofproblemsolving.com/community/c6t177f6h353661_jbmo_2010_problem_2",
"id": "tonyxia/divisibility3.json",
"explanation": "solutions/divisibility3.txt",
"theorem": "divisibility rules",
"subfield": "Number theory",
"field": "Math"
},
{
"Question": "Does cos(x) = x^k have a solution for k = 2023?",
"Answer": true,
"Answer_type": "bool",
"Picture": null,
"source": "text | Jon Rogawski and Colin Adams, Calculus.",
"id": "elainewan/math_calculus_2_11.json",
"explanation": "NONE",
"theorem": "intermediate value theorem",
"subfield": "Calculus",
"field": "Math"
},
{
"Question": "Find $\\int_{0}^{\\sqrt{3}} \\frac{dx}{1+x^2}$.",
"Answer": 1.0472,
"Answer_type": "float",
"Picture": null,
"source": "textbook | Chap1Integration.pdf",
"id": "xueguangma/fundamental_theorem_of_calculus.json",
"explanation": "NONE",
"theorem": "integral rules",
"subfield": "Calculus",
"field": "Math"
},
{
"Question": "A box contains 4 red, 3 green, and 2 blue balls. Balls are distinct even with the same color. In how many ways can we choose 4 balls, if at least 2 are red?",
"Answer": 81,
"Answer_type": "integer",
"Picture": null,
"source": "self",
"id": "jianyu_xu/Multinomial_6.json",
"explanation": "NONE",
"theorem": "multinomial theorem",
"subfield": "Combinatorics",
"field": "Math"
},
{
"Question": "Let X_1, X_2,... be independent variables each taking values +1 or -1 with probabilities 1/2 and 1/2. It is know that $\\sqrt{3/n^3}*\\sum_{k=1}^n k*X_k$ converges in distribution normal distribution N(a,b) as n goes to infinity. Here a is the expectation and b is the variance. What are the values of a and b? Return the answers as a list. For example, if a=2, b=100, return [2,100].",
"Answer": [
0,
1
],
"Picture": null,
"Answer_type": "list of integer",
"source": "probability: 5.12.41",
"id": "mingyin/central-limit-theorem1.json",
"explanation": "solutions/mingyin_central-limit-theorem1.txt",
"theorem": "central limit theorem",
"subfield": "Statistics",
"field": "Math"
},
{
"Question": "Sum the series $\\sum_{m=1}^{\\infty} \\sum_{n=1}^{\\infty}\\frac{m^2 n}{3^m(n3^m+m3^n)}$",
"Answer": 0.28125,
"Picture": null,
"Answer_type": "float",
"source": "",
"id": "mingyin/series5.json",
"explanation": "NONE",
"theorem": "series convergence",
"subfield": "Mathematical analysis",
"field": "Math"
},
{
"Question": "You want to move a 500-N crate across a level floor. To start thecrate moving, you have to pull with a 230-N horizontal force.Once the crate breaks loose and starts to move, you can keep itmoving at constant velocity with only 200 N. What are the coefficients of static and kinetic friction?",
"Answer": 0.4,
"Picture": null,
"Answer_type": "float",
"source": "University Physics with Modern Physics | Example 5.13",
"id": "panlu/friction1.json",
"explanation": "solutions/friction1.png",
"theorem": "friction",
"subfield": "Kinetics",
"field": "Physics"
},
{
"Question": "Let\u2019s assume that the 10-year annual return for the S&P 500 (market portfolio) is 10%, while the average annual return on Treasury bills (a good proxy for the risk-free rate) is 5%. The standard deviation is 15% over a 10-year period. Whats the market Sharpe Ratio?",
"Answer": 0.33,
"Answer_type": "float",
"Picture": null,
"source": "website | https://www.wallstreetmojo.com/risk-adjusted-returns",
"id": "xueguangma/sharpe_ratio.json",
"explanation": "NONE",
"theorem": "sharpe's ratio",
"subfield": "Portfolio management",
"field": "Finance"
},
{
"Question": "What is the value of the integral $\\int_2^4 \\frac{\\sqrt{log(9-x)}}{\\sqrt{log(9-x)}+\\sqrt{log(x+3)}} dx$?",
"Answer": 1.0,
"Picture": null,
"Answer_type": "float",
"source": "Putnam college math competition",
"id": "mingyin/integral-theorem3.json",
"explanation": "NONE",
"theorem": "integral rules",
"subfield": "Calculus",
"field": "Math"
},
{
"Question": "Suppose there are 100 identical firms in a perfectly competitive industry. Each firm has a short-run total cost function of the form C(q) = \frac{1}{300}q^3 + 0.2q^2 + 4q + 10. Suppose market demand is given by Q = -200P + 8,000. What will be the short-run equilibrium price?",
"Answer": 25,
"Answer_type": "integer",
"Picture": null,
"source": "text | Walter Nicholson, Microeconomic Theory Basic Principles and Extensions.",
"id": "elainewan/econ_micro_12.json",
"explanation": "solutions/elaine_econ_micro_12.txt",
"theorem": "short-run equilibrium",
"subfield": "Economics",
"field": "Finance"
},
{
"Question": "A state issues a 15 year $1000 bond that pays $25 every six months. If the current market interest rate is 4%, what is the fair market value of the bond?",
"Answer": 1111.97,
"Answer_type": "float",
"Picture": null,
"source": "website | https://math.libretexts.org/Bookshelves/Applied_Mathematics/Applied_Finite_Mathematics_(Sekhon_and_Bloom)/06%3A_Mathematics_of_Finance/6.05%3A_Miscellaneous_Application_Problems",
"id": "xueguangma/fair_market_value_of_a_bond.json",
"explanation": "NONE",
"theorem": "fair market value",
"subfield": "Fixed income",
"field": "Finance"
},
{
"Question": "In how many ways can we color a loop of 5 vertices with 3 colors such that no two adjacent vertices have the same color?",
"Answer": 30,
"Answer_type": "integer",
"Picture": null,
"source": "self",
"id": "jianyu_xu/inclusion_and_exclusion_2.json",
"explanation": "NONE",
"theorem": "inclusion-exclusion principle",
"subfield": "Combinatorics",
"field": "Math"
},
{
"Question": "The dependence between adjacent n-blocks of a stationary process grows linearly with n. True or False?",
"Answer": false,
"Answer_type": "bool",
"Picture": null,
"source": "textbook 4.13",
"id": "xinyi/stationary_stochastic_process.json",
"explanation": "NONE",
"theorem": "stationary stochastic process",
"subfield": "Stochastic process",
"field": "Math"
},
{
"Question": "Let $C$ be a variable length code that satisfies the Kraft inequality with equality but does not satisfy the prefix condition. Then $C$ has finite decoding delay. True or False?",
"Answer": false,
"Answer_type": "bool",
"Picture": null,
"source": "textbook 5.23(b)",
"id": "xinyi/kraft_inequality.json",
"explanation": "NONE",
"theorem": "kraft inequality",
"subfield": "Information theory",
"field": "EECS"
},
{
"Question": "What is the order of group Z_{18}?",
"Answer": 18,
"Answer_type": "integer",
"Picture": null,
"source": "text | Thomas W. Hungerford, Abstract Algebra An Introduction.",
"id": "elainewan/math_abstact_algebra_7.json",
"explanation": "NONE",
"theorem": "order",
"subfield": "Group theory",
"field": "Math"
},
{
"Question": "Is 80 dB twice as loud as 40 dB?",
"Answer": false,
"Answer_type": "bool",
"Picture": null,
"source": "website | https://vinesmsuic.github.io/notes-dimagep-QA3/",
"id": "maxku/signalprocessing2-DB.json",
"explanation": "NONE",
"theorem": "sound level",
"subfield": "Signal processing",
"field": "EECS"
},
{
"Question": "Is x-1 a factor of 2*x^4+3*x^2-5x+7?",
"Answer": false,
"Answer_type": "bool",
"Picture": null,
"source": "self",
"id": "wenhuchen/factor's_theory.json",
"explanation": "NONE",
"theorem": "factor's theorem",
"subfield": "Algebra",
"field": "Math"
},
{
"Question": "A load dissipates 1.5kW of power in an ac series RC circuit. Given that the power factor is 0.75, what is its reactive power $(P_r)$? What is its apparent power $(P_a)$? Represent the answer in a list [$P_r, P_a$] with unit kVA and kVAR respectively.",
"Answer": [
2.0,
1.32
],
"Answer_type": "list of float",
"Picture": null,
"source": "self",
"id": "maxku/basic-electronics-6-3.json",
"explanation": "solutions/maxku_basic-electronics-6-3.png",
"theorem": "rc circuit",
"subfield": "Electromagnetism",
"field": "Physics"
},
{
"Question": "dy/dt = \\sqrt{t}, y(1) = 1. What is y(4)?",
"Answer": 5.667,
"Answer_type": "float",
"Picture": null,
"source": "text | Jon Rogawski and Colin Adams, Calculus.",
"id": "elainewan/math_calculus_5_2.json",
"explanation": "NONE",
"theorem": "integral rules",
"subfield": "Calculus",
"field": "Math"
},
{
"Question": "For the two linear equations $2 * x + 3 * y = 10$ and $4 * x + 4 * y = 12$ iwth variables x and y. Use cramer's rule to solve these two variables.",
"Answer": [
-1,
4
],
"Picture": null,
"Answer_type": "list of integer",
"source": "self",
"id": "wenhuchen/cramer's_rule1.json",
"explanation": "NONE",
"theorem": "cramer's rule",
"subfield": "Algebra",
"field": "Math"
},
{
"Question": "In how many ways can 10 distinct balls be placed into 4 identical boxes if each box must have at least 1 balls?",
"Answer": 26335,
"Answer_type": "integer",
"Picture": null,
"source": "self",
"id": "jianyu_xu/Stirling_number_second_kind_4.json",
"explanation": "NONE",
"theorem": "stirling number of the second kind",
"subfield": "Combinatorics",
"field": "Math"
},
{
"Question": "If x(n) and X(k) are an N-point DFT pair, then x(n+N)=x(n). Is it true?",
"Answer": true,
"Answer_type": "bool",
"Picture": null,
"source": "website | https://www.sanfoundry.com/digital-signal-processing-questions-answers-properties-dft/",
"id": "maxku/fourier6-FT.json",
"explanation": "solutions/maxku_fourier6-FT.png",
"theorem": "fourier's theorem",
"subfield": "Signal processing",
"field": "EECS"
},
{
"Question": "what is the limit of $2/\\sqrt{\\pi}*\\sqrt{n}\\int_0^1(1-x^2)^n dx$ as n goes to infinity?",
"Answer": 1.0,
"Picture": null,
"Answer_type": "float",
"source": "mathematical analysis 2: 20.4 example 4",
"id": "mingyin/gamma-function2.json",
"explanation": "NONE",
"theorem": "gamma function",
"subfield": "Mathematical analysis",
"field": "Math"
},
{
"Question": "Assuming we are underground, and the only thing we can observe is whether a person brings an umbrella or not. The weather could be either rainy or sunny. Assuming the P(rain)=0.6 and P(sunny)=0.4. Assuming the weather on day $k$ is dependent on the weather on day $k-1$. We can write the transition probability as P(sunny $\\mid$ sunny) = P(rain $\\mid$ rain) = 0.55. The person has 60\\% chance to bring an umbrella when the weather is rainy, and 40\\% chance to bring an umbrella when the weather is sunny, i.e. P(umbrella $\\mid$ rain) = 0.6 and P(umbrella $\\mid$ sunny) = 0.4. If we observe that the person (1) brought an umbrella on day 1, (2) did not bring an umbrella on day 2, (3) brought an umbrella on day 3. What are the most likely weather from day 1 to day 3? Return the answer as a list of binary values, where 1 represents rain and 0 represents sunny.",
"Answer": [
1,
0,
1
],
"Answer_type": "list of integer",
"Picture": null,
"source": "self",
"id": "wenhuchen/viterbi1.json",
"explanation": "NONE",
"theorem": "viterbi algorithm",
"subfield": "Stochastic process",
"field": "Math"
},
{
"Question": "If there exists an ordered numbering of the nodes such that for each node there are no links going to a lower-numbered node, then there are no directed cycles in a directed graph. True or false?",
"Answer": true,
"Answer_type": "bool",
"Picture": null,
"source": "textbook 8.2",
"id": "xinyi/dag_1.json",
"explanation": "NONE",
"theorem": "acyclic graph",
"subfield": "Graph theory",
"field": "EECS"
},
{
"Question": "Coloring the edges of a complete graph with n vertices in 2 colors (red and blue), what is the smallest n that guarantees there is either a 4-clique in red or a 5-clique in blue?",
"Answer": 25,
"Answer_type": "integer",
"Picture": null,
"source": "self",
"id": "jianyu_xu/Ramsey_5.json",
"explanation": "NONE",
"theorem": "ramsey's theorem",
"subfield": "Combinatorics",
"field": "Math"
},
{
"Question": "Assume the Black-Scholes framework. For $t \\ge 0$, let $S(t)$ be the time-$t$ price of a nondividend-paying stock. You are given:\n(i) $S(0)=0.5\n(ii) The stock price process is $\\frac{dS(t)}{S(t)} = 0.05dt+0.2dZ(t)$ where $Z(t)$ is a standart Brownian motion.\n(iii) $E[S(1)^\\alpha]=1.4$, where $\\alpha$ is a negative constant.\n(iv) The continuously compounded risk-free interest rate is $3%$.\nConsider a contingent claim that pays $S(1)^\\alpha$ at time 1. What is the time-0 price of the contigent claim?",
"Answer": 1.372,
"Answer_type": "float",
"Picture": null,
"source": "website | https://www.soa.org/globalassets/assets/files/edu/edu-2009-05-mfe-exam.pdf",
"id": "xueguangma/geometric_brownian_motion.json",
"explanation": "NONE",
"theorem": "delta gamma approximation",
"subfield": "Derivatives",
"field": "Finance"
},
{
"Question": "Determine the multiplicity of the root \u03be = 1, of the polynomial P(x) = x^5 - 2x^4 + 4x^3 - x^2 - 7x + 5 = 0 using synthetic division. What is P'(2) + P''(2)? Please return the decimal number.",
"Answer": 163,
"Answer_type": "integer",
"Picture": null,
"source": "website | http://ndl.ethernet.edu.et/bitstream/123456789/79528/3/Numerical_Methods_Problems_and_Solutions_cropped.pdf",
"id": "wenhuchen/synthetic_division.json",
"explanation": "NONE",
"theorem": "synthetic division",
"subfield": "Numerical analysis",
"field": "Math"
},
{
"Question": "For the function $f(x,y)$ defined by $f(x,y)=1$ if $x=y$, $f(x,y)=0$ otherwise. Can we measure its integraion over the rectangle $[0,1]\\times[0,1]$ using the Tonelli's Theorem? Answer true or false.",
"Answer": false,
"Answer_type": "bool",
"Picture": null,
"source": "website | https://www.planetmath.org/CounterExampleToTonellisTheorem",
"id": "xueguangma/tonelli_theorem.json",
"explanation": "solutions/tonelli_theorem.png",
"theorem": "tonelli's theorem",
"subfield": "Calculus",
"field": "Math"
},
{
"Question": "The cross section for neutrons of energy 10 eV being captured by silver is 17 barns. What is the probability of a neutron being captured as it passes through a layer of silver 2 mm thick?",
"Answer": 0.2,
"Picture": null,
"Answer_type": "float",
"source": "Modern Physics for Scientists and Engineers Fourth Edition | Exercise 13.5",
"id": "tonyxia/nuclear2.json",
"explanation": "NONE",
"theorem": "nuclear physics",
"subfield": "Atomic physics",
"field": "Physics"
},
{
"Question": "What is the determinant of matrix [[0, 1, 2], [7, 8, 3], [6, 5, 4]]?",
"Answer": -36,
"Answer_type": "integer",
"Picture": null,
"source": "text | Otto Bretscher, Linear Algebra with Applications.",
"id": "elainewan/math_algebra_6_3.json",
"explanation": "NONE",
"theorem": "matrix determinant formula",
"subfield": "Algebra",
"field": "Math"
},
{
"Question": "Let a undirected graph G with edges E = {<0,1>,<4,1>,<2,0>,<2,1>,<2,3>,<1,3>}, which <A,B> represent Node A is connected to Node B. What is the minimum vertex cover of G? Represent the vertex cover in a list of ascending order.",
"Answer": [
1,
2
],
"Answer_type": "list of integer",
"Picture": null,
"source": "self",
"id": "maxku/graphtheory2-vertexcover.json",
"explanation": "NONE",
"theorem": "vertex cover",
"subfield": "Graph theory",
"field": "EECS"
},
{
"Question": "The two-digit integers from 19 to 92 are written consecutively to form the large integer N = 192021 \u00b7 \u00b7 \u00b7 909192. Suppose that 3^k is the highest power of 3 that is a factor of N. What is k?",
"Answer": 1,
"Picture": null,
"Answer_type": "integer",
"source": "1992 AHSME 17",
"id": "tonyxia/divisibility1.json",
"explanation": "solutions/divisibility1.txt",
"theorem": "divisibility rules",
"subfield": "Number theory",
"field": "Math"
},
{
"Question": "Apply the Graeffe's root squaring method to find the roots of the following equation x^3 - 2x + 2 = 0 correct to two decimals. What's the sum of these roots?",
"Answer": 1,
"Answer_type": "integer",
"Picture": null,
"source": "website | http://ndl.ethernet.edu.et/bitstream/123456789/79528/3/Numerical_Methods_Problems_and_Solutions_cropped.pdf",
"id": "wenhuchen/Graffe's_root1.json",
"explanation": "NONE",
"theorem": "graeffe's theorem",
"subfield": "Numerical analysis",
"field": "Math"
},
{
"Question": "A glider with mass m = 0.200 kg sits on a frictionless horizontalair track, connected to a spring with force constant k = 5.00 N/m.You pull on the glider, stretching the spring 0.100 m, and release itfrom rest. The glider moves back toward its equilibrium position (x = 0).What is its x-velocity when x = 0.080 m? (Unit: m/s))",
"Answer": -0.3,
"Picture": null,
"Answer_type": "float",
"source": "University Physics with Modern Physics | Example 7.7",
"id": "panlu/work_energy1.json",
"explanation": "NONE",
"theorem": "elastic potential energy",
"subfield": "Kinetics",
"field": "Physics"
},
{
"Question": "Toss a coin repeatedly until two consecutive heads appear. Assume that the probability of the coin landing on heads is 3/7. Calculate the average number of times the coin needs to be tossed before the experiment can end.",
"Answer": 7.77778,
"Picture": null,
"Answer_type": "float",
"source": "stochastic process: Exercise 3.5",
"id": "mingyin/probability-theory2.json",
"explanation": "NONE",
"theorem": "probability",
"subfield": "Probability theory",
"field": "Math"
},
{
"Question": "Julian is jogging around a circular track of radius 50 m. In a coordinate system with its origin at the center of the track, Julian's x-coordinate is changing at a rate of -1.25 m/s when his coordinates are (40, 30). Find dy/dt at this moment.",
"Answer": 1.667,
"Answer_type": "float",
"Picture": null,
"source": "text | Jon Rogawski and Colin Adams, Calculus.",
"id": "elainewan/math_calculus_3_8.json",
"explanation": "NONE",
"theorem": "derivative chain rule",
"subfield": "Calculus",
"field": "Math"
},