-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathselected_problems.json
More file actions
1868 lines (1868 loc) · 77.2 KB
/
Copy pathselected_problems.json
File metadata and controls
1868 lines (1868 loc) · 77.2 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
[
{
"problem_idx": "problem_2238",
"level": "Level 5",
"type": "Counting & Probability",
"problem": "What is the coefficient of $a^2b^2$ in $(a+b)^4\\left(c+\\dfrac{1}{c}\\right)^6$?",
"gt_answer": "120",
"accuracy": 0.5,
"approximate_mean_tokens": 2311.425,
"approximate_mean_chunks": 76.4,
"incorrect_answers": [
"384"
],
"correct_answers": [
"120"
]
},
{
"problem_idx": "problem_6998",
"level": "Level 5",
"type": "Precalculus",
"problem": "Find the number of $x$-intercepts on the graph of $y = \\sin \\frac{1}{x}$ (evaluated in terms of radians) in the interval $(0.0001, 0.001).$",
"gt_answer": "2865",
"accuracy": 0.7,
"approximate_mean_tokens": 1883.65,
"approximate_mean_chunks": 103.6,
"incorrect_answers": [
"2864"
],
"correct_answers": [
"2865"
]
},
{
"problem_idx": "problem_2236",
"level": "Level 5",
"type": "Counting & Probability",
"problem": "Each page number of a 488-page book is printed one time in the book. The first page is page 1 and the last page is page 488. When printing all of the page numbers, how many more 4's are printed than 8's?",
"gt_answer": "90",
"accuracy": 0.7,
"approximate_mean_tokens": 2338.975,
"approximate_mean_chunks": 123.4,
"incorrect_answers": [
"100",
"89",
"91"
],
"correct_answers": [
"90"
]
},
{
"problem_idx": "problem_330",
"level": "Level 5",
"type": "Algebra",
"problem": "Compute\n\n$3(1+3(1+3(1+3(1+3(1+3(1+3(1+3(1+3(1+3)))))))))$",
"gt_answer": "88572",
"accuracy": 0.7,
"approximate_mean_tokens": 1663.7,
"approximate_mean_chunks": 126.9,
"incorrect_answers": [
"36084",
"188329404"
],
"correct_answers": [
"88572"
]
},
{
"problem_idx": "problem_1591",
"level": "Level 5",
"type": "Algebra",
"problem": "Dr. Fu Manchu has a bank account that has an annual interest rate of 6 percent, but it compounds monthly. If this is equivalent to a bank account that compounds annually at a rate of $r$ percent, then what is $r$? (Give your answer to the nearest hundredth.)",
"gt_answer": "6.17",
"accuracy": 0.4,
"approximate_mean_tokens": 2030.325,
"approximate_mean_chunks": 127.8,
"incorrect_answers": [
"6.14",
"6.16",
"6.18",
"6.29"
],
"correct_answers": [
"6.17",
"6.17\\%"
]
},
{
"problem_idx": "problem_4682",
"level": "Level 5",
"type": "Number Theory",
"problem": "When the base-16 number $66666_{16}$ is written in base 2, how many base-2 digits (bits) does it have?",
"gt_answer": "19",
"accuracy": 0.7,
"approximate_mean_tokens": 2510.975,
"approximate_mean_chunks": 129.3,
"incorrect_answers": [
"20"
],
"correct_answers": [
"19"
]
},
{
"problem_idx": "problem_6596",
"level": "Level 5",
"type": "Prealgebra",
"problem": "The smaller square in the figure below has a perimeter of $4$ cm, and the larger square has an area of $16$ $\\text{cm}^2$. What is the distance from point $A$ to point $B$? Express your answer as a decimal to the nearest tenth.\n\n[asy]\ndraw((0,0)--(12,0));\ndraw((2,0)--(2,10));\ndraw((0,0)--(0,2));\ndraw((0,2)--(2,2));\ndraw((0,2)--(12,10));\ndraw((12,0)--(12,10));\ndraw((2,10)--(12,10));\nlabel(\"B\",(0,2),W);\nlabel(\"A\",(12,10),E);\n[/asy]",
"gt_answer": "5.8",
"accuracy": 0.3,
"approximate_mean_tokens": 5130.5,
"approximate_mean_chunks": 186.2,
"incorrect_answers": [
"7.2",
"6.4",
"5.0"
],
"correct_answers": [
"5.8"
]
},
{
"problem_idx": "problem_3448",
"level": "Level 5",
"type": "Intermediate Algebra",
"problem": "If $x$ is a real number and $k$ is a nonnegative integer, recall that the binomial coefficient $\\binom{x}{k}$ is defined by the formula\n\\[\n \\binom{x}{k} = \\frac{x(x - 1)(x - 2) \\dots (x - k + 1)}{k!} \\, .\n\\]Compute the value of\n\\[\n \\frac{\\binom{1/2}{2014} \\cdot 4^{2014}}{\\binom{4028}{2014}} \\, .\n\\]",
"gt_answer": "-\\frac{1} { 4027}",
"accuracy": 0.5,
"approximate_mean_tokens": 3523.55,
"approximate_mean_chunks": 202.5,
"incorrect_answers": [
"-\\frac{2^{2014}}{\\dbinom{4028}{2014}}",
"-1",
"\\frac{2^{2014}}{4028 \\times 4027}",
"-\\dfrac{1}{4048589}"
],
"correct_answers": [
"-\\dfrac{1}{4027}"
]
},
{
"problem_idx": "problem_2189",
"level": "Level 5",
"type": "Counting & Probability",
"problem": "A mother purchases 5 blue plates, 2 red plates, 2 green plates, and 1 orange plate. How many ways are there for her to arrange these plates for dinner around her circular table if she doesn't want the 2 green plates to be adjacent?\n",
"gt_answer": "588",
"accuracy": 0.9,
"approximate_mean_tokens": 4044.075,
"approximate_mean_chunks": 204.4,
"incorrect_answers": [
"420"
],
"correct_answers": [
"588"
]
},
{
"problem_idx": "problem_4164",
"level": "Level 5",
"type": "Intermediate Algebra",
"problem": "A cubic polynomial $p(x)$ satisfies\n\\[p(n) = \\frac{1}{n^2}\\]for $n = 1, 2, 3,$ and $4.$ Find $p(5).$",
"gt_answer": "-\\frac{5}{12}",
"accuracy": 0.5555555555555556,
"approximate_mean_tokens": 3306.1111111111113,
"approximate_mean_chunks": 204.44444444444446,
"incorrect_answers": [
"\\dfrac{48}{25}",
"\\dfrac{1}{72}",
"\\dfrac{25}{36}"
],
"correct_answers": [
"-\\dfrac{5}{12}"
]
},
{
"problem_idx": "problem_3550",
"level": "Level 5",
"type": "Intermediate Algebra",
"problem": "The polynomial $f(x)=x^{2007}+17x^{2006}+1$ has distinct zeroes $r_1,\\ldots,r_{2007}$. A polynomial $P$ of degree $2007$ has the property that\n\\[P\\left(r_j+\\dfrac{1}{r_j}\\right)=0\\]for $j=1,\\ldots,2007$. Determine the value of $\\frac{P(1)}{P(-1)}$.",
"gt_answer": "\\frac{289}{259}",
"accuracy": 0.4,
"approximate_mean_tokens": 4809.4,
"approximate_mean_chunks": 207.4,
"incorrect_answers": [
"1",
"-\\dfrac{289}{259}"
],
"correct_answers": [
"\\dfrac{289}{259}"
]
},
{
"problem_idx": "problem_4605",
"level": "Level 5",
"type": "Intermediate Algebra",
"problem": "If $f(x) = \\frac{1 + x}{1 - 3x}, f_1(x) = f(f(x)), f_2(x) = f(f_1(x)),$ and in general $f_n(x) = f(f_{n-1}(x)),$ then $f_{1993}(3)=$\n",
"gt_answer": "\\frac{1}{5}",
"accuracy": 0.7,
"approximate_mean_tokens": 3402.225,
"approximate_mean_chunks": 219.3,
"incorrect_answers": [
"-\\dfrac{1}{2}"
],
"correct_answers": [
"\\dfrac{1}{5}"
]
},
{
"problem_idx": "problem_2870",
"level": "Level 5",
"type": "Geometry",
"problem": "Two boards, one four inches wide and the other six inches wide, are nailed together to form an X. The angle at which they cross is 60 degrees. If this structure is painted and the boards are separated what is the area of the unpainted region on the four-inch board? (The holes caused by the nails are negligible.) Express your answer in simplest radical form.\n\n[asy]\ndraw(6dir(150)--15dir(-30),linewidth(1));\ndraw((6dir(150)+12/sqrt(3)*dir(30))--(15dir(-30)+12/sqrt(3)*dir(30)),linewidth(1));\n\ndraw(6dir(210)--(0,0),linewidth(1));\ndraw((9dir(210)+8/sqrt(3)*dir(-30))--8/sqrt(3)*dir(-30),linewidth(1));\n\ndraw(12/sqrt(3)*dir(30)--(12/sqrt(3)+6)*dir(30),linewidth(1));\ndraw(12/sqrt(3)*dir(30)+8/sqrt(3)*dir(-30)--(12/sqrt(3)+9)*dir(30)+8/sqrt(3)*dir(-30),linewidth(1));\n\ndraw(2dir(150)--2dir(150)+6dir(60),dashed);\ndraw(2dir(210)--2dir(210)+4dir(-60),dashed);\n\ndot((2,0));\ndot((4,-1));\ndot((8,1));\ndot((6,2));\n\nlabel(\"$60^{\\circ}$\", (11,1), E);\nlabel(rotate(30)*\"$4^{\\prime\\prime}$\", .5*(2dir(210)+2dir(210)+4dir(-60))+(0,-.5),W);\nlabel(rotate(-30)*\"$6^{\\prime\\prime}$\", .5*(2dir(150)+2dir(150)+6dir(60))+(1,1),W);\n[/asy]",
"gt_answer": "16\\sqrt{3}",
"accuracy": 0.5,
"approximate_mean_tokens": 5337.8,
"approximate_mean_chunks": 219.7,
"incorrect_answers": [
"12\\sqrt{3}",
"6\\sqrt{3}"
],
"correct_answers": [
"16\\sqrt{3}"
]
},
{
"problem_idx": "problem_2137",
"level": "Level 5",
"type": "Counting & Probability",
"problem": "A triangular array of squares has one square in the first row, two in the second, and in general, $k$ squares in the $k$th row for $1 \\leq k \\leq 11.$ With the exception of the bottom row, each square rests on two squares in the row immediately below (illustrated in the given diagram). In each square of the eleventh row, a $0$ or a $1$ is placed. Numbers are then placed into the other squares, with the entry for each square being the sum of the entries in the two squares below it. For how many initial distributions of $0$'s and $1$'s in the bottom row is the number in the top square a multiple of $3$?\n[asy] for (int i=0; i<12; ++i){ for (int j=0; j<i; ++j){ //dot((-j+i/2,-i)); draw((-j+i/2,-i)--(-j+i/2+1,-i)--(-j+i/2+1,-i+1)--(-j+i/2,-i+1)--cycle); } } [/asy]\n",
"gt_answer": "640",
"accuracy": 0.7,
"approximate_mean_tokens": 4296.6,
"approximate_mean_chunks": 220.4,
"incorrect_answers": [
"1280"
],
"correct_answers": [
"640"
]
},
{
"problem_idx": "problem_4019",
"level": "Level 5",
"type": "Intermediate Algebra",
"problem": "Let $c$ be a complex number. Suppose there exist distinct complex numbers $r$, $s$, and $t$ such that for every complex number $z$, we have\n\\[\n (z - r)(z - s)(z - t) = (z - cr)(z - cs)(z - ct).\n\\]Compute the number of distinct possible values of $c$.",
"gt_answer": "4",
"accuracy": 0.5,
"approximate_mean_tokens": 5219.425,
"approximate_mean_chunks": 223.0,
"incorrect_answers": [
"2",
"3"
],
"correct_answers": [
"4"
]
},
{
"problem_idx": "problem_3360",
"level": "Level 5",
"type": "Geometry",
"problem": "A right cylindrical oil tank is $15$ feet tall and its circular bases have diameters of $4$ feet each. When the tank is lying flat on its side (not on one of the circular ends), the oil inside is $3$ feet deep. How deep, in feet, would the oil have been if the tank had been standing upright on one of its bases? Express your answer as a decimal to the nearest tenth.",
"gt_answer": "12.1",
"accuracy": 0.5,
"approximate_mean_tokens": 4732.6,
"approximate_mean_chunks": 223.8,
"incorrect_answers": [
"2.9"
],
"correct_answers": [
"12.1"
]
},
{
"problem_idx": "problem_2050",
"level": "Level 5",
"type": "Counting & Probability",
"problem": "There is an unlimited supply of congruent equilateral triangles made of colored paper. Each triangle is a solid color with the same color on both sides of the paper. A large equilateral triangle is constructed from four of these paper triangles as shown. Two large triangles are considered distinguishable if it is not possible to place one on the other, using translations, rotations, and/or reflections, so that their corresponding small triangles are of the same color. Given that there are six different colors of triangles from which to choose, how many distinguishable large equilateral triangles can be constructed?\n\n[asy]\ndraw((0,0)--(10,0)--(5,8.7)--cycle);\ndraw((5,0)--(2.5,4.3)--(7.5,4.3)--cycle);\n[/asy]",
"gt_answer": "336",
"accuracy": 0.7,
"approximate_mean_tokens": 4881.575,
"approximate_mean_chunks": 224.2,
"incorrect_answers": [
"326",
"276"
],
"correct_answers": [
"336"
]
},
{
"problem_idx": "problem_6481",
"level": "Level 5",
"type": "Prealgebra",
"problem": "Two points are drawn on each side of a square with an area of 81 square units, dividing the side into 3 congruent parts. Quarter-circle arcs connect the points on adjacent sides to create the figure shown. What is the length of the boundary of the bolded figure? Express your answer as a decimal to the nearest tenth. [asy]\nsize(80);\nimport graph;\ndraw((0,0)--(3,0)--(3,3)--(0,3)--cycle, linetype(\"2 4\"));\ndraw(Arc((0,0),1,0,90),linewidth(.8));\ndraw(Arc((0,3),1,0,-90),linewidth(.8));\ndraw(Arc((3,0),1,90,180),linewidth(.8));\ndraw(Arc((3,3),1,180,270),linewidth(.8));\ndraw((1,0)--(2,0),linewidth(.8));draw((3,1)--(3,2),linewidth(.8));\ndraw((1,3)--(2,3),linewidth(.8));draw((0,1)--(0,2),linewidth(.8));\n[/asy]",
"gt_answer": "30.8",
"accuracy": 0.5,
"approximate_mean_tokens": 5649.25,
"approximate_mean_chunks": 226.9,
"incorrect_answers": [
"18.8"
],
"correct_answers": [
"30.8"
]
},
{
"problem_idx": "problem_3916",
"level": "Level 5",
"type": "Intermediate Algebra",
"problem": "A nonzero polynomial with rational coefficients has all of the numbers \\[1+\\sqrt{2}, \\; 2+\\sqrt{3}, \\;3+\\sqrt{4},\\; \\dots, \\;1000+\\sqrt{1001}\\]as roots. What is the smallest possible degree of such a polynomial?",
"gt_answer": "1970",
"accuracy": 0.75,
"approximate_mean_tokens": 4857.0625,
"approximate_mean_chunks": 228.5,
"incorrect_answers": [
"1000"
],
"correct_answers": [
"1970"
]
},
{
"problem_idx": "problem_3935",
"level": "Level 5",
"type": "Intermediate Algebra",
"problem": "A certain function $f$ has the properties that $f(3x) = 3f(x)$ for all positive real values of $x$, and that $f(x) = 1 - |x - 2|$ for $1\\leq x \\leq 3$. Find the smallest $x$ for which $f(x) = f(2001)$.",
"gt_answer": "429",
"accuracy": 0.7,
"approximate_mean_tokens": 4308.475,
"approximate_mean_chunks": 241.2,
"incorrect_answers": [
"\\dfrac{143}{177147}",
"\\dfrac{143}{19683}",
"\\dfrac{10726}{25}"
],
"correct_answers": [
"429"
]
},
{
"problem_idx": "problem_5723",
"level": "Level 5",
"type": "Prealgebra",
"problem": "The double-bar graph shows the number of home runs hit by McGwire and Sosa during each month of the 1998 baseball season. At the end of which month were McGwire and Sosa tied in total number of home runs?\n\n[asy]\ndraw((0,0)--(28,0)--(28,21)--(0,21)--(0,0)--cycle,linewidth(1));\n\nfor(int i = 1; i < 21; ++i)\n{\n\ndraw((0,i)--(28,i));\n}\n\nfor(int i = 0; i < 8; ++i)\n{\n\ndraw((-1,3i)--(0,3i));\n}\n\nlabel(\"0\",(-1,0),W);\nlabel(\"3\",(-1,3),W);\nlabel(\"6\",(-1,6),W);\nlabel(\"9\",(-1,9),W);\nlabel(\"12\",(-1,12),W);\nlabel(\"15\",(-1,15),W);\nlabel(\"18\",(-1,18),W);\nlabel(\"21\",(-1,21),W);\n\nfor(int i = 0; i < 8; ++i)\n{\n\ndraw((4i,0)--(4i,-1));\n}\n\nfilldraw((1,0)--(2,0)--(2,1)--(1,1)--(1,0)--cycle,gray,linewidth(1));\nfilldraw((5,0)--(6,0)--(6,10)--(5,10)--(5,0)--cycle,gray,linewidth(1));\nfilldraw((9,0)--(10,0)--(10,16)--(9,16)--(9,0)--cycle,gray,linewidth(1));\nfilldraw((13,0)--(14,0)--(14,10)--(13,10)--(13,0)--cycle,gray,linewidth(1));\nfilldraw((17,0)--(18,0)--(18,8)--(17,8)--(17,0)--cycle,gray,linewidth(1));\nfilldraw((21,0)--(22,0)--(22,10)--(21,10)--(21,0)--cycle,gray,linewidth(1));\nfilldraw((25,0)--(26,0)--(26,15)--(25,15)--(25,0)--cycle,gray,linewidth(1));\n\nfilldraw((6,0)--(7,0)--(7,6)--(6,6)--(6,0)--cycle,black,linewidth(1));\nfilldraw((10,0)--(11,0)--(11,7)--(10,7)--(10,0)--cycle,black,linewidth(1));\nfilldraw((14,0)--(15,0)--(15,20)--(14,20)--(14,0)--cycle,black,linewidth(1));\nfilldraw((18,0)--(19,0)--(19,9)--(18,9)--(18,0)--cycle,black,linewidth(1));\nfilldraw((22,0)--(23,0)--(23,13)--(22,13)--(22,0)--cycle,black,linewidth(1));\nfilldraw((26,0)--(27,0)--(27,11)--(26,11)--(26,0)--cycle,black,linewidth(1));\n\nlabel(\"Mar\",(2,0),S);\nlabel(\"Apr\",(6,0),S);\nlabel(\"May\",(10,0),S);\nlabel(\"Jun\",(14,0),S);\nlabel(\"Jul\",(18,0),S);\nlabel(\"Aug\",(22,0),S);\nlabel(\"Sep\",(26,0),S);\n[/asy] [asy]\ndraw((30,6)--(40,6)--(40,15)--(30,15)--(30,6)--cycle,linewidth(1));\nfilldraw((31,7)--(34,7)--(34,10)--(31,10)--(31,7)--cycle,black,linewidth(1));\nfilldraw((31,11)--(34,11)--(34,14)--(31,14)--(31,11)--cycle,gray,linewidth(1));\n\nlabel(\"McGwire\",(36,12.5));\nlabel(\"Sosa\",(36,8.5));\n[/asy]",
"gt_answer": "\\text{August}",
"accuracy": 0.7,
"approximate_mean_tokens": 4242.2,
"approximate_mean_chunks": 241.6,
"incorrect_answers": [
"\\text{March}"
],
"correct_answers": [
"August",
"\\text{August}"
]
},
{
"problem_idx": "problem_2188",
"level": "Level 5",
"type": "Counting & Probability",
"problem": "An oreo shop sells $5$ different flavors of oreos and $3$ different flavors of milk. Alpha and Beta decide to purhcase some oreos. Since Alpha is picky, he will not order more than 1 of the same flavor. To be just as weird, Beta will only order oreos, but she will be willing to have repeats of flavors. How many ways could they have left the store with 3 products collectively? (A possible purchase is Alpha purchases 1 box of uh-oh oreos and 1 gallon of whole milk while Beta purchases 1 bag of strawberry milkshake oreos).\n",
"gt_answer": "351",
"accuracy": 0.4,
"approximate_mean_tokens": 4579.325,
"approximate_mean_chunks": 242.1,
"incorrect_answers": [
"521",
"336",
"401"
],
"correct_answers": [
"351"
]
},
{
"problem_idx": "problem_3062",
"level": "Level 5",
"type": "Geometry",
"problem": "Equilateral $\\triangle ABC$ has side length $600$. Points $P$ and $Q$ lie outside the plane of $\\triangle ABC$ and are on opposite sides of the plane. Furthermore, $PA=PB=PC$, and $QA=QB=QC$, and the planes of $\\triangle PAB$ and $\\triangle QAB$ form a $120^{\\circ}$ dihedral angle (the angle between the two planes). There is a point $O$ whose distance from each of $A,B,C,P,$ and $Q$ is $d$. Find $d$.\n",
"gt_answer": "450",
"accuracy": 0.3333333333333333,
"approximate_mean_tokens": 4484.708333333333,
"approximate_mean_chunks": 247.0,
"incorrect_answers": [
"50\\sqrt{273}",
"50\\sqrt{93}",
"264.5751",
"275"
],
"correct_answers": [
"450"
]
},
{
"problem_idx": "problem_3492",
"level": "Level 5",
"type": "Intermediate Algebra",
"problem": "Let $p(x)$ be a polynomial of degree 6 such that\n\\[p(2^n) = \\frac{1}{2^n}\\]for $n = 0,$ 1, 2, $\\dots,$ 6. Find $p(0).$",
"gt_answer": "\\frac{127}{64}",
"accuracy": 0.5,
"approximate_mean_tokens": 4201.3,
"approximate_mean_chunks": 253.2,
"incorrect_answers": [
"2",
"\\dfrac{127}{2097152}",
"\\dfrac{4063}{2048}"
],
"correct_answers": [
"\\dfrac{127}{64}"
]
},
{
"problem_idx": "problem_2945",
"level": "Level 5",
"type": "Geometry",
"problem": "A fenced, rectangular field measures $24$ meters by $52$ meters. An agricultural researcher has 1994 meters of fence that can be used for internal fencing to partition the field into congruent, square test plots. The entire field must be partitioned, and the sides of the squares must be parallel to the edges of the field. What is the largest number of square test plots into which the field can be partitioned using all or some of the 1994 meters of fence?\n",
"gt_answer": "702",
"accuracy": 0.4,
"approximate_mean_tokens": 4930.85,
"approximate_mean_chunks": 259.0,
"incorrect_answers": [
"312"
],
"correct_answers": [
"702"
]
},
{
"problem_idx": "problem_665",
"level": "Level 5",
"type": "Algebra",
"problem": "How many zeros are in the expansion of $999,\\!999,\\!999,\\!998^2$?",
"gt_answer": "11",
"accuracy": 0.6,
"approximate_mean_tokens": 4209.0,
"approximate_mean_chunks": 262.7,
"incorrect_answers": [
"10",
"12"
],
"correct_answers": [
"11"
]
},
{
"problem_idx": "problem_4435",
"level": "Level 5",
"type": "Intermediate Algebra",
"problem": "Let $0 \\le a,$ $b,$ $c,$ $d \\le 1.$ Find the possible values of the expression\n\\[\\sqrt{a^2 + (1 - b)^2} + \\sqrt{b^2 + (1 - c)^2} + \\sqrt{c^2 + (1 - d)^2} + \\sqrt{d^2 + (1 - a)^2}.\\]",
"gt_answer": "[2 \\sqrt{2},4]",
"accuracy": 0.5,
"approximate_mean_tokens": 5049.6,
"approximate_mean_chunks": 262.8,
"incorrect_answers": [
"[2\\sqrt{2}, 2\\sqrt{2} + 2]",
"2\\sqrt{2}",
"[2\\sqrt{2}, 4\\sqrt{2}]"
],
"correct_answers": [
"[2\\sqrt{2}, 4]"
]
},
{
"problem_idx": "problem_3722",
"level": "Level 5",
"type": "Intermediate Algebra",
"problem": "Consider all polynomials of the form\n\\[x^9 + a_8 x^8 + a_7 x^7 + \\dots + a_2 x^2 + a_1 x + a_0,\\]where $a_i \\in \\{0,1\\}$ for all $0 \\le i \\le 8.$ Find the number of such polynomials that have exactly two different integer roots.",
"gt_answer": "56",
"accuracy": 0.7,
"approximate_mean_tokens": 5186.4,
"approximate_mean_chunks": 268.8,
"incorrect_answers": [
"126",
"12",
"21"
],
"correct_answers": [
"56"
]
},
{
"problem_idx": "problem_5662",
"level": "Level 5",
"type": "Prealgebra",
"problem": "Twenty-four 4-inch wide square posts are evenly spaced with 5 feet between adjacent posts to enclose a square field, as shown. What is the outer perimeter, in feet, of the fence? Express your answer as a mixed number. [asy]\nunitsize(2mm);\ndefaultpen(linewidth(.7pt));\ndotfactor=3;\n\npath[] todraw = (1,9)--(9,9)--(9,1) ^^ (8,9)--(8,8)--(9,8) ^^ (5,9)--(5,8)--(6,8)--(6,9) ^^ (9,5)--(8,5)--(8,6)--(9,6) ^^ (8,8.5)--(6,8.5) ^^ (8.5,8)--(8.5,6) ^^ (5,8.5)--(4,8.5) ^^ (8.5,5)--(8.5,4);\npath[] tofill = Circle((1.3,8.5),.15) ^^ Circle((2.1,8.5),.15) ^^ Circle((2.9,8.5),.15) ^^ Circle((8.5,1.3),.15) ^^ Circle((8.5,2.1),.15) ^^ Circle((8.5,2.9),.15);\n\nfor(int i = 0; i < 4; ++i)\n{\ndraw(rotate(90*i)*todraw);\nfill(rotate(90*i)*tofill);\n}\n[/asy]",
"gt_answer": "129\\frac{1}{3}",
"accuracy": 0.4,
"approximate_mean_tokens": 5218.275,
"approximate_mean_chunks": 269.9,
"incorrect_answers": [
"128"
],
"correct_answers": [
"129 \\dfrac{1}{3}"
]
},
{
"problem_idx": "problem_623",
"level": "Level 5",
"type": "Algebra",
"problem": "The complete graph of $y=f(x)$, which consists of five line segments, is shown in red below. (On this graph, the distance between grid lines is $1$.)\n\nWhat is the sum of the $x$-coordinates of all points where $f(x) = x+1$?",
"gt_answer": "3",
"accuracy": 0.4,
"approximate_mean_tokens": 4997.05,
"approximate_mean_chunks": 270.4,
"incorrect_answers": [
"4",
"1"
],
"correct_answers": [
"3"
]
},
{
"problem_idx": "problem_6708",
"level": "Level 5",
"type": "Prealgebra",
"problem": "Each triangle is a 30-60-90 triangle, and the hypotenuse of one triangle is the longer leg of an adjacent triangle. The hypotenuse of the largest triangle is 8 centimeters. What is the number of centimeters in the length of the longer leg of the smallest triangle? Express your answer as a common fraction.\n\n[asy] pair O; for(int i = 0; i < 5; ++i){\ndraw(O--((2/sqrt(3))^i)*dir(30*i));\n}\nfor(int g = 0; g < 4; ++g){\ndraw( ((2/sqrt(3))^g)*dir(30*g)-- ((2/sqrt(3))^(g+1))*dir(30*g+30));\n}\nlabel(\"8 cm\", O--(16/9)*dir(120), W);\nlabel(\"$30^{\\circ}$\",.4*dir(0),dir(90));\nlabel(\"$30^{\\circ}$\",.4*dir(25),dir(115));\nlabel(\"$30^{\\circ}$\",.4*dir(50),dir(140));\nlabel(\"$30^{\\circ}$\",.4*dir(85),dir(175));\nreal t = (2/(sqrt(3)));\ndraw(rightanglemark((1,.1),(1,0),(.9,0),s=3));\ndraw(rightanglemark(rotate(30)*(0,t**4),rotate(0)*(0,t**3),O,s=3));\ndraw(rightanglemark(rotate(0)*(0,t**3),rotate(-30)*(0,t**2),O,s=3));\ndraw(rightanglemark(rotate(-30)*(0,t**2),rotate(-60)*(0,t**1),O,s=3));\n[/asy]",
"gt_answer": "\\frac{9}{2}",
"accuracy": 0.6,
"approximate_mean_tokens": 6032.275,
"approximate_mean_chunks": 281.3,
"incorrect_answers": [
"\\dfrac{9\\sqrt{3}}{4}",
"\\dfrac{32}{3}"
],
"correct_answers": [
"\\dfrac{9}{2}"
]
},
{
"problem_idx": "problem_2819",
"level": "Level 5",
"type": "Geometry",
"problem": "What is the number of centimeters in the length of $EF$ if $AB\\parallel CD\\parallel EF$?\n\n[asy]\n\nsize(4cm,4cm);\npair A,B,C,D,E,F,X;\n\nA=(0,1);\nB=(1,1);\nC=(1,0);\nX=(0,0);\nD=(1/3)*C+(2/3)*X;\n\ndraw (A--B--C--D);\ndraw(D--B);\ndraw(A--C);\n\nE=(0.6,0.4);\nF=(1,0.4);\n\ndraw(E--F);\n\nlabel(\"$A$\",A,NW);\nlabel(\"$B$\",B,NE);\nlabel(\"$C$\",C,SE);\nlabel(\"$D$\",D,SW);\nlabel(\"$E$\",shift(-0.1,0)*E);\nlabel(\"$F$\",F,E);\n\nlabel(\"$100$ cm\",midpoint(C--D),S);\nlabel(\"$150$ cm\",midpoint(A--B),N);\n\n[/asy]",
"gt_answer": "60",
"accuracy": 0.7,
"approximate_mean_tokens": 5391.95,
"approximate_mean_chunks": 286.1,
"incorrect_answers": [
"120"
],
"correct_answers": [
"60"
]
},
{
"problem_idx": "problem_5266",
"level": "Level 5",
"type": "Number Theory",
"problem": "A point whose coordinates are both integers is called a lattice point. How many lattice points lie on the hyperbola $x^2 - y^2 = 2000^2$?\n",
"gt_answer": "98",
"accuracy": 0.7,
"approximate_mean_tokens": 6058.45,
"approximate_mean_chunks": 288.5,
"incorrect_answers": [
"50",
"198"
],
"correct_answers": [
"98"
]
},
{
"problem_idx": "problem_2874",
"level": "Level 5",
"type": "Geometry",
"problem": "Two of the altitudes of an acute triangle divide the sides into segments of lengths $5,3,2$ and $x$ units, as shown. What is the value of $x$? [asy]\ndefaultpen(linewidth(0.7)); size(75);\npair A = (0,0);\npair B = (1,0);\npair C = (74/136,119/136);\npair D = foot(B, A, C);\npair E = /*foot(A,B,C)*/ (52*B+(119-52)*C)/(119);\ndraw(A--B--C--cycle);\ndraw(B--D);\ndraw(A--E);\ndraw(rightanglemark(A,D,B,1.2));\ndraw(rightanglemark(A,E,B,1.2));\nlabel(\"$3$\",(C+D)/2,WNW+(0,0.3));\nlabel(\"$5$\",(A+D)/2,NW);\nlabel(\"$2$\",(C+E)/2,E);\nlabel(\"$x$\",(B+E)/2,NE);\n[/asy]",
"gt_answer": "10",
"accuracy": 0.6,
"approximate_mean_tokens": 4442.7,
"approximate_mean_chunks": 288.8,
"incorrect_answers": [
"4",
"2",
"2\\sqrt{6} - 2"
],
"correct_answers": [
"10"
]
},
{
"problem_idx": "problem_1843",
"level": "Level 5",
"type": "Counting & Probability",
"problem": "In how many different ways can 3 men and 4 women be placed into two groups of two people and one group of three people if there must be at least one man and one woman in each group? Note that identically sized groups are indistinguishable.",
"gt_answer": "36",
"accuracy": 0.5,
"approximate_mean_tokens": 5946.825,
"approximate_mean_chunks": 288.9,
"incorrect_answers": [
"18"
],
"correct_answers": [
"36"
]
},
{
"problem_idx": "problem_3817",
"level": "Level 5",
"type": "Intermediate Algebra",
"problem": "Consider the region $A^{}_{}$ in the complex plane that consists of all points $z^{}_{}$ such that both $\\frac{z^{}_{}}{40}$ and $\\frac{40^{}_{}}{\\overline{z}}$ have real and imaginary parts between $0^{}_{}$ and $1^{}_{}$, inclusive. Find the area of $A.$",
"gt_answer": "1200 - 200 \\pi",
"accuracy": 0.7,
"approximate_mean_tokens": 6026.775,
"approximate_mean_chunks": 296.4,
"incorrect_answers": [
"1200",
"400"
],
"correct_answers": [
"1200 - 200\\pi"
]
},
{
"problem_idx": "problem_3289",
"level": "Level 5",
"type": "Geometry",
"problem": "What is the area of the portion of the circle defined by $x^2-12x+y^2=28$ that lies above the $x$-axis and to the right of the line $y=6-x$?",
"gt_answer": "24 \\pi",
"accuracy": 0.7,
"approximate_mean_tokens": 6711.4,
"approximate_mean_chunks": 300.8,
"incorrect_answers": [
"8\\pi",
"16\\pi + 64 - 24\\sqrt{2}",
"16\\pi + 32"
],
"correct_answers": [
"24\\pi"
]
},
{
"problem_idx": "problem_3007",
"level": "Level 5",
"type": "Geometry",
"problem": "In quadrilateral $ABCD,\\ BC=8,\\ CD=12,\\ AD=10,$ and $m\\angle A= m\\angle B = 60^\\circ.$ Given that $AB = p + \\sqrt{q},$ where $p$ and $q$ are positive integers, find $p+q.$\n",
"gt_answer": "150",
"accuracy": 0.6666666666666666,
"approximate_mean_tokens": 4889.944444444444,
"approximate_mean_chunks": 319.1111111111111,
"incorrect_answers": [
"80",
"42"
],
"correct_answers": [
"150"
]
},
{
"problem_idx": "problem_2127",
"level": "Level 5",
"type": "Counting & Probability",
"problem": "A particle moves in the Cartesian plane according to the following rules:\nFrom any lattice point $(a,b),$ the particle may only move to $(a+1,b), (a,b+1),$ or $(a+1,b+1).$\nThere are no right angle turns in the particle's path.\nHow many different paths can the particle take from $(0,0)$ to $(5,5)$?\n",
"gt_answer": "83",
"accuracy": 0.6,
"approximate_mean_tokens": 5617.575,
"approximate_mean_chunks": 323.4,
"incorrect_answers": [
"64",
"57",
"105"
],
"correct_answers": [
"83"
]
},
{
"problem_idx": "problem_4617",
"level": "Level 5",
"type": "Intermediate Algebra",
"problem": "Find the greatest natural number $n$ such that $n\\leq 2008$ and $(1^2+2^2+3^2+\\cdots + n^2)\\left[(n+1)^2+(n+2)^2+(n+3)^2+\\cdots + (2n)^2\\right]$ is a perfect square.\n",
"gt_answer": "1921",
"accuracy": 0.7,
"approximate_mean_tokens": 5213.45,
"approximate_mean_chunks": 328.9,
"incorrect_answers": [
"391",
"24"
],
"correct_answers": [
"1921"
]
},
{
"problem_idx": "problem_4698",
"level": "Level 5",
"type": "Number Theory",
"problem": "Lucy was born on Wednesday, December 1st, 2004. That Wednesday was the first day of her life. Her parents held a party for her on the $1000$th day of her life. On which day of the week was the party?",
"gt_answer": "\\text{Monday}",
"accuracy": 0.5,
"approximate_mean_tokens": 4868.5,
"approximate_mean_chunks": 329.9,
"incorrect_answers": [
"\\text{Tuesday}",
"Tuesday",
"\\text{Sunday}"
],
"correct_answers": [
"Monday",
"\\text{Monday}"
]
},
{
"problem_idx": "problem_5252",
"level": "Level 5",
"type": "Number Theory",
"problem": "For how many pairs of consecutive integers in $\\{1000,1001,1002,\\ldots,2000\\}$ is no carrying required when the two integers are added?\n",
"gt_answer": "156",
"accuracy": 0.5,
"approximate_mean_tokens": 5399.15,
"approximate_mean_chunks": 332.9,
"incorrect_answers": [
"150",
"216",
"256"
],
"correct_answers": [
"156"
]
},
{
"problem_idx": "problem_3003",
"level": "Level 5",
"type": "Geometry",
"problem": "Let $ABCDE$ be a convex pentagon with $AB \\parallel CE, BC \\parallel AD, AC \\parallel DE, \\angle ABC=120^\\circ, AB=3, BC=5,$ and $DE = 15.$ Given that the ratio between the area of triangle $ABC$ and the area of triangle $EBD$ is $m/n,$ where $m$ and $n$ are relatively prime positive integers, find $m+n.$\n",
"gt_answer": "484",
"accuracy": 0.4,
"approximate_mean_tokens": 4896.875,
"approximate_mean_chunks": 334.8,
"incorrect_answers": [
"3",
"64",
"37"
],
"correct_answers": [
"484"
]
},
{
"problem_idx": "problem_7379",
"level": "Level 5",
"type": "Precalculus",
"problem": "Find the sum of the values of $x$ such that $\\cos^3 3x+ \\cos^3 5x = 8 \\cos^3 4x \\cos^3 x$, where $x$ is measured in degrees and $100< x< 200.$\n",
"gt_answer": "906",
"accuracy": 0.5,
"approximate_mean_tokens": 4749.425,
"approximate_mean_chunks": 340.9,
"incorrect_answers": [
"636",
"780",
"420"
],
"correct_answers": [
"906"
]
},
{
"problem_idx": "problem_2107",
"level": "Level 5",
"type": "Counting & Probability",
"problem": "Given eight distinguishable rings, let $n$ be the number of possible five-ring arrangements on the four fingers (not the thumb) of one hand. The order of rings on each finger is significant, but it is not required that each finger have a ring. Find the leftmost three nonzero digits of $n$.\n",
"gt_answer": "376",
"accuracy": 0.7,
"approximate_mean_tokens": 6964.55,
"approximate_mean_chunks": 341.6,
"incorrect_answers": [
"672",
"688",
"122"
],
"correct_answers": [
"376"
]
},
{
"problem_idx": "problem_3406",
"level": "Level 5",
"type": "Intermediate Algebra",
"problem": "An ellipse with equation\n\\[\\frac{x^2}{a^2} + \\frac{y^2}{b^2} = 1\\]contains the circles $(x - 1)^2 + y^2 = 1$ and $(x + 1)^2 +y^2 = 1.$ Then the smallest possible area of the ellipse can be expressed in the form $k \\pi.$ Find $k.$",
"gt_answer": "\\frac{3 \\sqrt{3}}{2}",
"accuracy": 0.5,
"approximate_mean_tokens": 6998.125,
"approximate_mean_chunks": 343.4,
"incorrect_answers": [
"2\\sqrt{2}",
"2\\sqrt{2}\\pi"
],
"correct_answers": [
"\\dfrac{3\\sqrt{3}}{2}"
]
},
{
"problem_idx": "problem_5301",
"level": "Level 5",
"type": "Number Theory",
"problem": "Let $S_i$ be the set of all integers $n$ such that $100i\\leq n < 100(i + 1)$. For example, $S_4$ is the set ${400,401,402,\\ldots,499}$. How many of the sets $S_0, S_1, S_2, \\ldots, S_{999}$ do not contain a perfect square?\n",
"gt_answer": "708",
"accuracy": 0.7,
"approximate_mean_tokens": 7084.425,
"approximate_mean_chunks": 352.7,
"incorrect_answers": [
"32",
"707",
"852"
],
"correct_answers": [
"708"
]
},
{
"problem_idx": "problem_3915",
"level": "Level 5",
"type": "Intermediate Algebra",
"problem": "Find all values of the real number $a$ so that the four complex roots of\n\\[z^4 - 6z^3 + 11az^2 - 3(2a^2 + 3a - 3) z + 1 = 0\\]form the vertices of a parallelogram in the complex plane. Enter all the values, separated by commas.",
"gt_answer": "3",
"accuracy": 0.6,
"approximate_mean_tokens": 6379.85,
"approximate_mean_chunks": 353.2,
"incorrect_answers": [
"1",
"2 + \\dfrac{\\sqrt{34}}{4}",
"2 + \\dfrac{\\sqrt{34}}{4}, 2 - \\dfrac{\\sqrt{34}}{4}"
],
"correct_answers": [
"3"
]
},
{
"problem_idx": "problem_3753",
"level": "Level 5",
"type": "Intermediate Algebra",
"problem": "There are 2011 positive numbers with both their sum and the sum of their reciprocals equal to 2012. Let $x$ be one of these numbers. Find the maximum value of $x + \\frac{1}{x}.$",
"gt_answer": "\\frac{8045}{2012}",
"accuracy": 0.7,
"approximate_mean_tokens": 5152.3,
"approximate_mean_chunks": 363.4,
"incorrect_answers": [
"4"
],
"correct_answers": [
"\\dfrac{8045}{2012}"
]
},
{
"problem_idx": "problem_3867",
"level": "Level 5",
"type": "Intermediate Algebra",
"problem": "For a certain square, two vertices lie on the line $y = 2x - 17,$ and the other two vertices lie on the parabola $y = x^2.$ Find the smallest possible area of the square.",
"gt_answer": "80",
"accuracy": 0.7,
"approximate_mean_tokens": 5877.7,
"approximate_mean_chunks": 363.9,
"incorrect_answers": [
"\\dfrac{256}{5}"
],
"correct_answers": [
"80"
]
},
{
"problem_idx": "problem_3893",
"level": "Level 5",
"type": "Intermediate Algebra",
"problem": "Find the number of ordered 17-tuples $(a_1, a_2, a_3, \\dots, a_{17})$ of integers, such that the square of any number in the 17-tuple is equal to the sum of the other 16 numbers.",
"gt_answer": "12378",
"accuracy": 0.3,
"approximate_mean_tokens": 5526.175,
"approximate_mean_chunks": 364.7,
"incorrect_answers": [
"24754"
],
"correct_answers": [
"12378"
]
},
{
"problem_idx": "problem_4498",
"level": "Level 5",
"type": "Intermediate Algebra",
"problem": "The vertices $V$ of a centrally symmetric hexagon in the complex plane are given by \\[V=\\left\\{ \\sqrt{2}i,-\\sqrt{2}i, \\frac{1}{\\sqrt{8}}(1+i),\\frac{1}{\\sqrt{8}}(-1+i),\\frac{1}{\\sqrt{8}}(1-i),\\frac{1}{\\sqrt{8}}(-1-i) \\right\\}.\\]For each $j$, $1\\leq j\\leq 12$, an element $z_j$ is chosen from $V$ at random, independently of the other choices. Let $P={\\prod}_{j=1}^{12}z_j$ be the product of the $12$ numbers selected.\n\nThe probability that $P=-1$ can be expressed in the form\n\\[\\frac{a}{p^b},\\]where $a,$ $b,$ $p$ are positive integers, $p$ is prime, and $a$ is not divisible by $p.$ Find $a + b + p.$",
"gt_answer": "233",
"accuracy": 0.3,
"approximate_mean_tokens": 6834.6,
"approximate_mean_chunks": 375.3,
"incorrect_answers": [
"157",
"5",
"453",
"19",
"1039",
"44301",
"110"
],
"correct_answers": [
"233"
]
},
{
"problem_idx": "problem_4786",
"level": "Level 5",
"type": "Number Theory",
"problem": "What is the smallest positive integer $n$ such that $\\frac{1}{n}$ is a terminating decimal and $n$ contains the digit 9?",
"gt_answer": "4096",
"accuracy": 0.7,
"approximate_mean_tokens": 4180.85,
"approximate_mean_chunks": 375.3,
"incorrect_answers": [
"390625",
"3906250"
],
"correct_answers": [
"4096"
]
},
{
"problem_idx": "problem_3767",
"level": "Level 5",
"type": "Intermediate Algebra",
"problem": "A sequence $a_1$, $a_2$, $\\ldots$ of non-negative integers is defined by the rule $a_{n+2}=|a_{n+1}-a_n|$ for $n\\geq1$. If $a_1=999$, $a_2<999$, and $a_{2006}=1$, how many different values of $a_2$ are possible?",
"gt_answer": "324",
"accuracy": 0.3,
"approximate_mean_tokens": 7109.425,
"approximate_mean_chunks": 384.5,
"incorrect_answers": [
"432",
"648"
],
"correct_answers": [
"324"
]
},
{
"problem_idx": "problem_3627",
"level": "Level 5",
"type": "Intermediate Algebra",
"problem": "Find all real numbers $p$ so that\n\\[x^4 + 2px^3 + x^2 + 2px + 1 = 0\\]has at least two distinct negative real roots.",
"gt_answer": "\\left( \\frac{3}{4}, \\infty \\right)",
"accuracy": 0.7,
"approximate_mean_tokens": 6809.95,
"approximate_mean_chunks": 389.6,
"incorrect_answers": [
"[1, \\infty)",
"p \\in \\mathbb{R} \\text{ with } |p| > \\dfrac{3}{4}",
"\\left( -\\dfrac{\\sqrt{6}}{2}, -\\dfrac{3}{4} \\right) \\cup \\left( \\dfrac{3}{4}, \\dfrac{\\sqrt{6}}{2} \\right)"
],
"correct_answers": [
"\\left( \\dfrac{3}{4}, \\infty \\right)"
]
},
{
"problem_idx": "problem_3040",
"level": "Level 5",
"type": "Geometry",
"problem": "Triangle $ABC$ with right angle at $C$, $\\angle BAC < 45^\\circ$ and $AB = 4$. Point $P$ on $\\overline{AB}$ is chosen such that $\\angle APC = 2\\angle ACP$ and $CP = 1$. The ratio $\\frac{AP}{BP}$ can be represented in the form $p + q\\sqrt{r}$, where $p$, $q$, $r$ are positive integers and $r$ is not divisible by the square of any prime. Find $p+q+r$.\n",
"gt_answer": "7",
"accuracy": 0.7142857142857143,
"approximate_mean_tokens": 5570.785714285715,
"approximate_mean_chunks": 390.42857142857144,
"incorrect_answers": [
"14",
"13"
],
"correct_answers": [
"7"
]
},
{
"problem_idx": "problem_2785",
"level": "Level 5",
"type": "Geometry",
"problem": "In convex quadrilateral $ABCD$, $AB=BC=13$, $CD=DA=24$, and $\\angle D=60^\\circ$. Points $X$ and $Y$ are the midpoints of $\\overline{BC}$ and $\\overline{DA}$ respectively. Compute $XY^2$ (the square of the length of $XY$).",
"gt_answer": "\\frac{1033}{4}+30\\sqrt{3}",
"accuracy": 0.4,
"approximate_mean_tokens": 6361.7,
"approximate_mean_chunks": 394.5,
"incorrect_answers": [
"\\dfrac{1033 - 120\\sqrt{3}}{4}",
"\\dfrac{1033}{4} - 30\\sqrt{3}"
],
"correct_answers": [
"\\dfrac{1033 + 120\\sqrt{3}}{4}"
]
},
{
"problem_idx": "problem_2994",
"level": "Level 5",
"type": "Geometry",
"problem": "A cylindrical log has diameter $12$ inches. A wedge is cut from the log by making two planar cuts that go entirely through the log. The first is perpendicular to the axis of the cylinder, and the plane of the second cut forms a $45^\\circ$ angle with the plane of the first cut. The intersection of these two planes has exactly one point in common with the log. The number of cubic inches in the wedge can be expressed as $n\\pi$, where n is a positive integer. Find $n$.\n",
"gt_answer": "216",
"accuracy": 0.7,
"approximate_mean_tokens": 8428.25,
"approximate_mean_chunks": 394.9,
"incorrect_answers": [
"108",
"27"
],
"correct_answers": [