-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvalid.json
More file actions
1222 lines (1222 loc) · 55.8 KB
/
valid.json
File metadata and controls
1222 lines (1222 loc) · 55.8 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
[
{
"name": "amc12a_2019_p21",
"statement": "theorem amc12a_2019_p21 (z : ℂ) (h₀ : z = (1 + Complex.I) / Real.sqrt 2) :\n ((∑ k ∈ Finset.Icc 1 12, z ^ k ^ 2) * (∑ k ∈ Finset.Icc 1 12, 1 / z ^ k ^ 2)) = 36 := by sorry",
"is_solved": false
},
{
"name": "amc12a_2015_p10",
"statement": "theorem amc12a_2015_p10 (x y : ℤ) (h₀ : 0 < y) (h₁ : y < x) (h₂ : x + y + x * y = 80) : x = 26 := by sorry",
"is_solved": false
},
{
"name": "amc12a_2008_p8",
"statement": "theorem amc12a_2008_p8 (x y : ℝ) (h₀ : 0 < x ∧ 0 < y) (h₁ : y ^ 3 = 1)\n (h₂ : 6 * x ^ 2 = 2 * (6 * y ^ 2)) : x ^ 3 = 2 * Real.sqrt 2 := by sorry",
"is_solved": false
},
{
"name": "mathd_algebra_182",
"statement": "theorem mathd_algebra_182 (y : ℂ) : 7 * (3 * y + 2) = 21 * y + 14 := by sorry",
"is_solved": true
},
{
"name": "aime_1984_p5",
"statement": "theorem aime_1984_p5 (a b : ℝ) (h₀ : Real.logb 8 a + Real.logb 4 (b ^ 2) = 5)\n (h₁ : Real.logb 8 b + Real.logb 4 (a ^ 2) = 7) : a * b = 512 := by sorry",
"is_solved": false
},
{
"name": "mathd_numbertheory_780",
"statement": "theorem mathd_numbertheory_780 (m x : ℤ) (h₀ : 0 ≤ x) (h₁ : 10 ≤ m ∧ m ≤ 99) (h₂ : 6 * x % m = 1)\n (h₃ : (x - 6 ^ 2) % m = 0) : m = 43 := by sorry",
"is_solved": false
},
{
"name": "mathd_algebra_116",
"statement": "theorem mathd_algebra_116 (k x : ℝ) (h₀ : x = (13 - Real.sqrt 131) / 4)\n (h₁ : 2 * x ^ 2 - 13 * x + k = 0) : k = 19 / 4 := by sorry",
"is_solved": false
},
{
"name": "mathd_numbertheory_13",
"statement": "theorem mathd_numbertheory_13 (u v : ℕ) (S : Set ℕ)\n (h₀ : ∀ n : ℕ, n ∈ S ↔ 0 < n ∧ 14 * n % 100 = 46) (h₁ : IsLeast S u)\n (h₂ : IsLeast (S \\ {u}) v) : (u + v : ℚ) / 2 = 64 := by sorry",
"is_solved": false
},
{
"name": "mathd_numbertheory_169",
"statement": "theorem mathd_numbertheory_169 : Nat.gcd 20! 200000 = 40000 := by sorry",
"is_solved": true
},
{
"name": "amc12a_2009_p9",
"statement": "theorem amc12a_2009_p9 (a b c : ℝ) (f : ℝ → ℝ) (h₀ : ∀ x, f (x + 3) = 3 * x ^ 2 + 7 * x + 4)\n (h₁ : ∀ x, f x = a * x ^ 2 + b * x + c) : a + b + c = 2 := by sorry",
"is_solved": false
},
{
"name": "amc12a_2019_p9",
"statement": "theorem amc12a_2019_p9 (a : ℕ → ℚ) (h₀ : a 1 = 1) (h₁ : a 2 = 3 / 7)\n (h₂ : ∀ n, a (n + 2) = a n * a (n + 1) / (2 * a n - a (n + 1))) :\n ↑(a 2019).den + (a 2019).num = 8078 := by sorry",
"is_solved": false
},
{
"name": "mathd_algebra_13",
"statement": "theorem mathd_algebra_13 (a b : ℝ)\n (h₀ : ∀ x, x - 3 ≠ 0 ∧ x - 5 ≠ 0 → 4 * x / (x ^ 2 - 8 * x + 15) = a / (x - 3) + b / (x - 5)) :\n a = -6 ∧ b = 10 := by sorry",
"is_solved": false
},
{
"name": "induction_sum2kp1npqsqm1",
"statement": "theorem induction_sum2kp1npqsqm1 (n : ℕ) :\n ∑ k ∈ Finset.range n, (2 * k + 3) = (n + 1) ^ 2 - 1 := by sorry",
"is_solved": false
},
{
"name": "aime_1991_p6",
"statement": "theorem aime_1991_p6 (r : ℝ) (h₀ : (∑ k ∈ Finset.Icc (19 : ℕ) 91, Int.floor (r + k / 100)) = 546) :\n Int.floor (100 * r) = 743 := by sorry",
"is_solved": false
},
{
"name": "mathd_numbertheory_149",
"statement": "theorem mathd_numbertheory_149 :\n (∑ k ∈ Finset.filter (fun x => x % 8 = 5 ∧ x % 6 = 3) (Finset.range 50), k) = 66 := by sorry",
"is_solved": true
},
{
"name": "imo_1984_p2",
"statement": "theorem imo_1984_p2 (a b : ℤ) (h₀ : 0 < a ∧ 0 < b) (h₁ : ¬7 ∣ a) (h₂ : ¬7 ∣ b) (h₃ : ¬7 ∣ a + b)\n (h₄ : 7 ^ 7 ∣ (a + b) ^ 7 - a ^ 7 - b ^ 7) : 19 ≤ a + b := by sorry",
"is_solved": false
},
{
"name": "amc12a_2008_p4",
"statement": "theorem amc12a_2008_p4 : (∏ k ∈ Finset.Icc (1 : ℕ) 501, ((4 : ℝ) * k + 4) / (4 * k)) = 502 := by sorry",
"is_solved": false
},
{
"name": "imo_2006_p3",
"statement": "theorem imo_2006_p3 (a b c : ℝ) :\n a * b * (a ^ 2 - b ^ 2) + b * c * (b ^ 2 - c ^ 2) + c * a * (c ^ 2 - a ^ 2) ≤\n 9 * Real.sqrt 2 / 32 * (a ^ 2 + b ^ 2 + c ^ 2) ^ 2 := by sorry",
"is_solved": false
},
{
"name": "mathd_algebra_462",
"statement": "theorem mathd_algebra_462 : ((1 : ℚ) / 2 + 1 / 3) * (1 / 2 - 1 / 3) = 5 / 36 := by sorry",
"is_solved": true
},
{
"name": "imo_1964_p1_2",
"statement": "theorem imo_1964_p1_2 (n : ℕ) : ¬7 ∣ 2 ^ n + 1 := by sorry",
"is_solved": false
},
{
"name": "mathd_numbertheory_221",
"statement": "theorem mathd_numbertheory_221 (S : Finset ℕ)\n (h₀ : ∀ x : ℕ, x ∈ S ↔ 0 < x ∧ x < 1000 ∧ x.divisors.card = 3) : S.card = 11 := by sorry",
"is_solved": false
},
{
"name": "mathd_numbertheory_64",
"statement": "theorem mathd_numbertheory_64 : IsLeast { x : ℕ | 30 * x ≡ 42 [MOD 47] } 39 := by sorry",
"is_solved": false
},
{
"name": "imo_1987_p4",
"statement": "theorem imo_1987_p4 (f : ℕ → ℕ) : ∃ n, f (f n) ≠ n + 1987 := by sorry",
"is_solved": false
},
{
"name": "mathd_numbertheory_33",
"statement": "theorem mathd_numbertheory_33 (n : ℕ) (h₀ : n < 398) (h₁ : n * 7 % 398 = 1) : n = 57 := by sorry",
"is_solved": false
},
{
"name": "amc12_2001_p9",
"statement": "theorem amc12_2001_p9 (f : ℝ → ℝ) (h₀ : ∀ x > 0, ∀ y > 0, f (x * y) = f x / y) (h₁ : f 500 = 3) :\n f 600 = 5 / 2 := by sorry",
"is_solved": true
},
{
"name": "imo_1965_p1",
"statement": "theorem imo_1965_p1 (x : ℝ) (h₀ : 0 ≤ x) (h₁ : x ≤ 2 * π)\n (h₂ : 2 * Real.cos x ≤ abs (Real.sqrt (1 + Real.sin (2 * x)) - Real.sqrt (1 - Real.sin (2 * x))))\n (h₃ : abs (Real.sqrt (1 + Real.sin (2 * x)) - Real.sqrt (1 - Real.sin (2 * x))) ≤ Real.sqrt 2) :\n π / 4 ≤ x ∧ x ≤ 7 * π / 4 := by sorry",
"is_solved": false
},
{
"name": "mathd_numbertheory_48",
"statement": "theorem mathd_numbertheory_48 (b : ℕ) (h₀ : 0 < b) (h₁ : 3 * b ^ 2 + 2 * b + 1 = 57) : b = 4 := by sorry",
"is_solved": true
},
{
"name": "numbertheory_sqmod4in01d",
"statement": "theorem numbertheory_sqmod4in01d (a : ℤ) : a ^ 2 % 4 = 0 ∨ a ^ 2 % 4 = 1 := by sorry",
"is_solved": false
},
{
"name": "mathd_numbertheory_466",
"statement": "theorem mathd_numbertheory_466 : (∑ k ∈ Finset.range 11, k) % 9 = 1 := by sorry",
"is_solved": true
},
{
"name": "mathd_algebra_48",
"statement": "theorem mathd_algebra_48 (q e : ℂ) (h₀ : q = 9 - 4 * Complex.I) (h₁ : e = -3 - 4 * Complex.I) :\n q - e = 12 := by sorry",
"is_solved": true
},
{
"name": "amc12_2000_p15",
"statement": "theorem amc12_2000_p15 (f : ℂ → ℂ) (h₀ : ∀ x, f (x / 3) = x ^ 2 + x + 1)\n (h₁ : Fintype (f ⁻¹' {7})) : (∑ y ∈ (f ⁻¹' {7}).toFinset, y / 3) = -1 / 9 := by sorry",
"is_solved": false
},
{
"name": "mathd_numbertheory_132",
"statement": "theorem mathd_numbertheory_132 : 2004 % 12 = 0 := by sorry",
"is_solved": true
},
{
"name": "amc12a_2009_p5",
"statement": "theorem amc12a_2009_p5 (x : ℝ) (h₀ : x ^ 3 - (x + 1) * (x - 1) * x = 5) : x ^ 3 = 125 := by sorry",
"is_solved": false
},
{
"name": "mathd_numbertheory_188",
"statement": "theorem mathd_numbertheory_188 : Nat.gcd 180 168 = 12 := by sorry",
"is_solved": true
},
{
"name": "mathd_algebra_224",
"statement": "theorem mathd_algebra_224 (S : Finset ℕ)\n (h₀ : ∀ n : ℕ, n ∈ S ↔ Real.sqrt n < 7 / 2 ∧ 2 < Real.sqrt n) : S.card = 8 := by sorry",
"is_solved": false
},
{
"name": "induction_divisibility_3divnto3m2n",
"statement": "theorem induction_divisibility_3divnto3m2n (n : ℕ) : 3 ∣ n ^ 3 + 2 * n := by sorry",
"is_solved": false
},
{
"name": "induction_sum_1oktkp1",
"statement": "theorem induction_sum_1oktkp1 (n : ℕ) :\n (∑ k ∈ Finset.range n, (1 : ℝ) / ((k + 1) * (k + 2))) = n / (n + 1) := by sorry",
"is_solved": false
},
{
"name": "mathd_numbertheory_32",
"statement": "theorem mathd_numbertheory_32 (S : Finset ℕ) (h₀ : ∀ n : ℕ, n ∈ S ↔ n ∣ 36) : (∑ k ∈ S, k) = 91 := by sorry",
"is_solved": false
},
{
"name": "mathd_algebra_422",
"statement": "theorem mathd_algebra_422 (x : ℝ) (σ : Equiv ℝ ℝ) (h₀ : ∀ x, σ.1 x = 5 * x - 12)\n (h₁ : σ.1 (x + 1) = σ.2 x) : x = 47 / 24 := by sorry",
"is_solved": false
},
{
"name": "amc12b_2002_p11",
"statement": "theorem amc12b_2002_p11 (a b : ℕ) (h₀ : Nat.Prime a) (h₁ : Nat.Prime b) (h₂ : Nat.Prime (a + b))\n (h₃ : Nat.Prime (a - b)) : Nat.Prime (a + b + (a - b + (a + b))) := by sorry",
"is_solved": false
},
{
"name": "mathd_algebra_73",
"statement": "theorem mathd_algebra_73 (p q r x : ℂ) (h₀ : (x - p) * (x - q) = (r - p) * (r - q)) (h₁ : x ≠ r) :\n x = p + q - r := by sorry",
"is_solved": false
},
{
"name": "mathd_numbertheory_109",
"statement": "theorem mathd_numbertheory_109 (v : ℕ → ℕ) (h₀ : ∀ n, v n = 2 * n - 1) :\n (∑ k ∈ Finset.Icc 1 100, v k) % 7 = 4 := by sorry",
"is_solved": true
},
{
"name": "algebra_xmysqpymzsqpzmxsqeqxyz_xpypzp6dvdx3y3z3",
"statement": "theorem algebra_xmysqpymzsqpzmxsqeqxyz_xpypzp6dvdx3y3z3 (x y z : ℤ)\n (h₀ : (x - y) ^ 2 + (y - z) ^ 2 + (z - x) ^ 2 = x * y * z) :\n x + y + z + 6 ∣ x ^ 3 + y ^ 3 + z ^ 3 := by sorry",
"is_solved": false
},
{
"name": "imo_1962_p4",
"statement": "theorem imo_1962_p4 (S : Set ℝ)\n (h₀ : S = { x : ℝ | Real.cos x ^ 2 + Real.cos (2 * x) ^ 2 + Real.cos (3 * x) ^ 2 = 1 }) :\n S =\n { x : ℝ |\n ∃ m : ℤ,\n x = π / 2 + m * π ∨\n x = π / 4 + m * π / 2 ∨ x = π / 6 + m * π / 6 ∨ x = 5 * π / 6 + m * π / 6 } := by sorry",
"is_solved": false
},
{
"name": "mathd_numbertheory_236",
"statement": "theorem mathd_numbertheory_236 : 1999 ^ 2000 % 5 = 1 := by sorry",
"is_solved": true
},
{
"name": "mathd_numbertheory_24",
"statement": "theorem mathd_numbertheory_24 : (∑ k ∈ Finset.Icc 1 9, 11 ^ k) % 100 = 59 := by sorry",
"is_solved": true
},
{
"name": "algebra_amgm_prod1toneq1_sum1tongeqn",
"statement": "theorem algebra_amgm_prod1toneq1_sum1tongeqn (a : ℕ → NNReal) (n : ℕ)\n (h₀ : Finset.prod (Finset.range n) a = 1) : Finset.sum (Finset.range n) a ≥ n := by sorry",
"is_solved": false
},
{
"name": "mathd_algebra_101",
"statement": "theorem mathd_algebra_101 (x : ℝ) (h₀ : x ^ 2 - 5 * x - 4 ≤ 10) : x ≥ -2 ∧ x ≤ 7 := by sorry",
"is_solved": true
},
{
"name": "mathd_numbertheory_257",
"statement": "theorem mathd_numbertheory_257 (x : ℕ) (h₀ : 1 ≤ x ∧ x ≤ 100)\n (h₁ : 77 ∣ (∑ k ∈ Finset.range 101, k) - x) : x = 45 := by sorry",
"is_solved": false
},
{
"name": "amc12_2000_p5",
"statement": "theorem amc12_2000_p5 (x p : ℝ) (h₀ : x < 2) (h₁ : abs (x - 2) = p) : x - p = 2 - 2 * p := by sorry",
"is_solved": true
},
{
"name": "mathd_algebra_547",
"statement": "theorem mathd_algebra_547 (x y : ℝ) (h₀ : x = 5) (h₁ : y = 2) : Real.sqrt (x ^ 3 - 2 ^ y) = 11 := by sorry",
"is_solved": false
},
{
"name": "mathd_numbertheory_200",
"statement": "theorem mathd_numbertheory_200 : 139 % 11 = 7 := by sorry",
"is_solved": true
},
{
"name": "mathd_algebra_510",
"statement": "theorem mathd_algebra_510 (x y : ℝ) (h₀ : x + y = 13) (h₁ : x * y = 24) :\n Real.sqrt (x ^ 2 + y ^ 2) = 11 := by sorry",
"is_solved": false
},
{
"name": "mathd_algebra_140",
"statement": "theorem mathd_algebra_140 (a b c : ℝ) (h₀ : 0 < a ∧ 0 < b ∧ 0 < c)\n (h₁ : ∀ x, 24 * x ^ 2 - 19 * x - 35 = (a * x - 5) * (2 * (b * x) + c)) : a * b - 3 * c = -9 := by sorry",
"is_solved": false
},
{
"name": "mathd_algebra_455",
"statement": "theorem mathd_algebra_455 (x : ℝ) (h₀ : 2 * (2 * (2 * (2 * x))) = 48) : x = 3 := by sorry",
"is_solved": true
},
{
"name": "mathd_numbertheory_45",
"statement": "theorem mathd_numbertheory_45 : Nat.gcd 6432 132 + 11 = 23 := by sorry",
"is_solved": true
},
{
"name": "aime_1994_p4",
"statement": "theorem aime_1994_p4 (n : ℕ) (h₀ : 0 < n)\n (h₀ : (∑ k ∈ Finset.Icc 1 n, Int.floor (Real.logb 2 k)) = 1994) : n = 312 := by sorry",
"is_solved": false
},
{
"name": "mathd_numbertheory_739",
"statement": "theorem mathd_numbertheory_739 : 9! % 10 = 0 := by sorry",
"is_solved": true
},
{
"name": "mathd_algebra_245",
"statement": "theorem mathd_algebra_245 (x : ℝ) (h₀ : x ≠ 0) :\n (4 / x)⁻¹ * (3 * x ^ 3 / x) ^ 2 * (1 / (2 * x))⁻¹ ^ 3 = 18 * x ^ 8 := by sorry",
"is_solved": false
},
{
"name": "algebra_apb4leq8ta4pb4",
"statement": "theorem algebra_apb4leq8ta4pb4 (a b : ℝ) (h₀ : 0 < a ∧ 0 < b) : (a + b) ^ 4 ≤ 8 * (a ^ 4 + b ^ 4) := by sorry",
"is_solved": false
},
{
"name": "mathd_algebra_28",
"statement": "theorem mathd_algebra_28 (c : ℝ) (f : ℝ → ℝ) (h₀ : ∀ x, f x = 2 * x ^ 2 + 5 * x + c)\n (h₁ : ∃ x, f x ≤ 0) : c ≤ 25 / 8 := by sorry",
"is_solved": false
},
{
"name": "mathd_numbertheory_543",
"statement": "theorem mathd_numbertheory_543 : (∑ k ∈ Nat.divisors (30 ^ 4), 1) - 2 = 123 := by sorry",
"is_solved": false
},
{
"name": "mathd_algebra_480",
"statement": "theorem mathd_algebra_480 (f : ℝ → ℝ) (h₀ : ∀ x < 0, f x = -x ^ 2 - 1)\n (h₁ : ∀ x, 0 ≤ x ∧ x < 4 → f x = 2) (h₂ : ∀ x ≥ 4, f x = Real.sqrt x) : f π = 2 := by sorry",
"is_solved": false
},
{
"name": "mathd_algebra_69",
"statement": "theorem mathd_algebra_69 (rows seats : ℕ) (h₀ : rows * seats = 450)\n (h₁ : (rows + 5) * (seats - 3) = 450) : rows = 25 := by sorry",
"is_solved": false
},
{
"name": "mathd_algebra_433",
"statement": "theorem mathd_algebra_433 (f : ℝ → ℝ) (h₀ : ∀ x, f x = 3 * Real.sqrt (2 * x - 7) - 8) : f 8 = 19 := by sorry",
"is_solved": false
},
{
"name": "mathd_algebra_126",
"statement": "theorem mathd_algebra_126 (x y : ℝ) (h₀ : 2 * 3 = x - 9) (h₁ : 2 * -5 = y + 1) : x = 15 ∧ y = -11 := by sorry",
"is_solved": true
},
{
"name": "aimeII_2020_p6",
"statement": "theorem aimeII_2020_p6 (t : ℕ → ℚ) (h₀ : t 1 = 20) (h₁ : t 2 = 21)\n (h₂ : ∀ n ≥ 3, t n = (5 * t (n - 1) + 1) / (25 * t (n - 2))) :\n ↑(t 2020).den + (t 2020).num = 626 := by sorry",
"is_solved": false
},
{
"name": "amc12a_2008_p2",
"statement": "theorem amc12a_2008_p2 (x : ℝ) (h₀ : x * (1 / 2 + 2 / 3) = 1) : x = 6 / 7 := by sorry",
"is_solved": true
},
{
"name": "mathd_algebra_35",
"statement": "theorem mathd_algebra_35 (p q : ℝ → ℝ) (h₀ : ∀ x, p x = 2 - x ^ 2)\n (h₁ : ∀ x : ℝ, x ≠ 0 → q x = 6 / x) : p (q 2) = -7 := by sorry",
"is_solved": true
},
{
"name": "algebra_amgm_faxinrrp2msqrt2geq2mxm1div2x",
"statement": "theorem algebra_amgm_faxinrrp2msqrt2geq2mxm1div2x :\n ∀ x > 0, 2 - Real.sqrt 2 ≥ 2 - x - 1 / (2 * x) := by sorry",
"is_solved": false
},
{
"name": "mathd_numbertheory_335",
"statement": "theorem mathd_numbertheory_335 (n : ℕ) (h₀ : n % 7 = 5) : 5 * n % 7 = 4 := by sorry",
"is_solved": true
},
{
"name": "mathd_numbertheory_35",
"statement": "theorem mathd_numbertheory_35 (S : Finset ℕ) (h₀ : ∀ n : ℕ, n ∈ S ↔ n ∣ Nat.sqrt 196) :\n (∑ k ∈ S, k) = 24 := by sorry",
"is_solved": false
},
{
"name": "amc12a_2021_p7",
"statement": "theorem amc12a_2021_p7 (x y : ℝ) : 1 ≤ (x * y - 1) ^ 2 + (x + y) ^ 2 := by sorry",
"is_solved": true
},
{
"name": "mathd_algebra_327",
"statement": "theorem mathd_algebra_327 (a : ℝ) (h₀ : 1 / 5 * abs (9 + 2 * a) < 1) : -7 < a ∧ a < -2 := by sorry",
"is_solved": true
},
{
"name": "aime_1984_p15",
"statement": "theorem aime_1984_p15 (x y z w : ℝ)\n (h₀ :\n x ^ 2 / (2 ^ 2 - 1) + y ^ 2 / (2 ^ 2 - 3 ^ 2) + z ^ 2 / (2 ^ 2 - 5 ^ 2) +\n w ^ 2 / (2 ^ 2 - 7 ^ 2) =\n 1)\n (h₁ :\n x ^ 2 / (4 ^ 2 - 1) + y ^ 2 / (4 ^ 2 - 3 ^ 2) + z ^ 2 / (4 ^ 2 - 5 ^ 2) +\n w ^ 2 / (4 ^ 2 - 7 ^ 2) =\n 1)\n (h₂ :\n x ^ 2 / (6 ^ 2 - 1) + y ^ 2 / (6 ^ 2 - 3 ^ 2) + z ^ 2 / (6 ^ 2 - 5 ^ 2) +\n w ^ 2 / (6 ^ 2 - 7 ^ 2) =\n 1)\n (h₃ :\n x ^ 2 / (8 ^ 2 - 1) + y ^ 2 / (8 ^ 2 - 3 ^ 2) + z ^ 2 / (8 ^ 2 - 5 ^ 2) +\n w ^ 2 / (8 ^ 2 - 7 ^ 2) =\n 1) :\n x ^ 2 + y ^ 2 + z ^ 2 + w ^ 2 = 36 := by sorry",
"is_solved": false
},
{
"name": "algebra_amgm_sqrtxymulxmyeqxpy_xpygeq4",
"statement": "theorem algebra_amgm_sqrtxymulxmyeqxpy_xpygeq4 (x y : ℝ) (h₀ : 0 < x ∧ 0 < y) (h₁ : y ≤ x)\n (h₂ : Real.sqrt (x * y) * (x - y) = x + y) : x + y ≥ 4 := by sorry",
"is_solved": false
},
{
"name": "amc12a_2002_p21",
"statement": "theorem amc12a_2002_p21 (u : ℕ → ℕ) (h₀ : u 0 = 4) (h₁ : u 1 = 7)\n (h₂ : ∀ n ≥ 2, u (n + 2) = (u n + u (n + 1)) % 10) :\n ∀ n, (∑ k ∈ Finset.range n, u k) > 10000 → 1999 ≤ n := by sorry",
"is_solved": false
},
{
"name": "mathd_algebra_192",
"statement": "theorem mathd_algebra_192 (q e d : ℂ) (h₀ : q = 11 - 5 * Complex.I) (h₁ : e = 11 + 5 * Complex.I)\n (h₂ : d = 2 * Complex.I) : q * e * d = 292 * Complex.I := by sorry",
"is_solved": false
},
{
"name": "amc12b_2002_p6",
"statement": "theorem amc12b_2002_p6 (a b : ℝ) (h₀ : a ≠ 0 ∧ b ≠ 0)\n (h₁ : ∀ x, x ^ 2 + a * x + b = (x - a) * (x - b)) : a = 1 ∧ b = -2 := by sorry",
"is_solved": false
},
{
"name": "mathd_numbertheory_102",
"statement": "theorem mathd_numbertheory_102 : 2 ^ 8 % 5 = 1 := by sorry",
"is_solved": true
},
{
"name": "amc12a_2010_p22",
"statement": "theorem amc12a_2010_p22 (x : ℝ) : 49 ≤ ∑ k ∈ (Finset.Icc (1:ℤ) (119:ℤ)), abs (k * x - 1) := by sorry",
"is_solved": false
},
{
"name": "mathd_numbertheory_81",
"statement": "theorem mathd_numbertheory_81 : 71 % 3 = 2 := by sorry",
"is_solved": true
},
{
"name": "mathd_numbertheory_155",
"statement": "theorem mathd_numbertheory_155 :\n Finset.card (Finset.filter (fun x => x % 19 = 7) (Finset.Icc 100 999)) = 48 := by sorry",
"is_solved": true
},
{
"name": "imo_1978_p5",
"statement": "theorem imo_1978_p5 (n : ℕ) (a : ℕ → ℕ) (h₀ : Function.Injective a) (h₁ : a 0 = 0) (h₂ : 0 < n) :\n (∑ k ∈ Finset.Icc 1 n, (1 : ℝ) / k) ≤ ∑ k ∈ Finset.Icc 1 n, (a k : ℝ) / k ^ 2 := by sorry",
"is_solved": false
},
{
"name": "amc12a_2017_p7",
"statement": "theorem amc12a_2017_p7 (f : ℕ → ℝ) (h₀ : f 1 = 2) (h₁ : ∀ n, 1 < n ∧ Even n → f n = f (n - 1) + 1)\n (h₂ : ∀ n, 1 < n ∧ Odd n → f n = f (n - 2) + 2) : f 2017 = 2018 := by sorry",
"is_solved": false
},
{
"name": "mathd_numbertheory_42",
"statement": "theorem mathd_numbertheory_42 (S : Set ℕ) (u v : ℕ) (h₀ : ∀ a : ℕ, a ∈ S ↔ 0 < a ∧ 27 * a % 40 = 17)\n (h₁ : IsLeast S u) (h₂ : IsLeast (S \\ {u}) v) : u + v = 62 := by sorry",
"is_solved": false
},
{
"name": "mathd_algebra_110",
"statement": "theorem mathd_algebra_110 (q e : ℂ) (h₀ : q = 2 - 2 * Complex.I) (h₁ : e = 5 + 5 * Complex.I) :\n q * e = 20 := by sorry",
"is_solved": false
},
{
"name": "amc12b_2021_p21",
"statement": "theorem amc12b_2021_p21 (S : Finset ℝ)\n (h₀ : ∀ x : ℝ, x ∈ S ↔ 0 < x ∧ x ^ (2 : ℝ) ^ Real.sqrt 2 = Real.sqrt 2 ^ (2 : ℝ) ^ x) :\n (↑2 ≤ ∑ k ∈ S, k) ∧ (∑ k ∈ S, k) < 6 := by sorry",
"is_solved": false
},
{
"name": "mathd_algebra_405",
"statement": "theorem mathd_algebra_405 (S : Finset ℕ) (h₀ : ∀ x, x ∈ S ↔ 0 < x ∧ x ^ 2 + 4 * x + 4 < 20) :\n S.card = 2 := by sorry",
"is_solved": false
},
{
"name": "numbertheory_sumkmulnckeqnmul2pownm1",
"statement": "theorem numbertheory_sumkmulnckeqnmul2pownm1 (n : ℕ) (h₀ : 0 < n) :\n (∑ k ∈ Finset.Icc 1 n, k * Nat.choose n k) = n * 2 ^ (n - 1) := by sorry",
"is_solved": false
},
{
"name": "mathd_algebra_393",
"statement": "theorem mathd_algebra_393 (σ : Equiv ℝ ℝ) (h₀ : ∀ x, σ.1 x = 4 * x ^ 3 + 1) : σ.2 33 = 2 := by sorry",
"is_solved": true
},
{
"name": "amc12b_2004_p3",
"statement": "theorem amc12b_2004_p3 (x y : ℕ) (h₀ : 2 ^ x * 3 ^ y = 1296) : x + y = 8 := by sorry",
"is_solved": false
},
{
"name": "mathd_numbertheory_303",
"statement": "theorem mathd_numbertheory_303 (S : Finset ℕ)\n (h₀ : ∀ n : ℕ, n ∈ S ↔ 2 ≤ n ∧ 171 ≡ 80 [MOD n] ∧ 468 ≡ 13 [MOD n]) : (∑ k ∈ S, k) = 111 := by sorry",
"is_solved": false
},
{
"name": "mathd_algebra_151",
"statement": "theorem mathd_algebra_151 : Int.ceil (Real.sqrt 27) - Int.floor (Real.sqrt 26) = 1 := by sorry",
"is_solved": false
},
{
"name": "amc12a_2011_p18",
"statement": "theorem amc12a_2011_p18 (x y : ℝ) (h₀ : abs (x + y) + abs (x - y) = 2) :\n x ^ 2 - 6 * x + y ^ 2 ≤ 8 := by sorry",
"is_solved": false
},
{
"name": "mathd_algebra_15",
"statement": "theorem mathd_algebra_15 (s : ℕ → ℕ → ℕ)\n (h₀ : ∀ a b, 0 < a ∧ 0 < b → s a b = a ^ (b : ℕ) + b ^ (a : ℕ)) : s 2 6 = 100 := by sorry",
"is_solved": true
},
{
"name": "mathd_numbertheory_211",
"statement": "theorem mathd_numbertheory_211 :\n Finset.card (Finset.filter (fun n => 6 ∣ 4 * ↑n - (2 : ℤ)) (Finset.range 60)) = 20 := by sorry",
"is_solved": true
},
{
"name": "mathd_numbertheory_640",
"statement": "theorem mathd_numbertheory_640 : (91145 + 91146 + 91147 + 91148) % 4 = 2 := by sorry",
"is_solved": true
},
{
"name": "amc12b_2003_p6",
"statement": "theorem amc12b_2003_p6 (a r : ℝ) (u : ℕ → ℝ) (h₀ : ∀ k, u k = a * r ^ k) (h₁ : u 1 = 2)\n (h₂ : u 3 = 6) : u 0 = 2 / Real.sqrt 3 ∨ u 0 = -(2 / Real.sqrt 3) := by sorry",
"is_solved": false
},
{
"name": "algebra_2rootsintpoly_am10tap11eqasqpam110",
"statement": "theorem algebra_2rootsintpoly_am10tap11eqasqpam110 (a : ℂ) :\n (a - 10) * (a + 11) = a ^ 2 + a - 110 := by sorry",
"is_solved": true
},
{
"name": "aime_1991_p1",
"statement": "theorem aime_1991_p1 (x y : ℕ) (h₀ : 0 < x ∧ 0 < y) (h₁ : x * y + (x + y) = 71)\n (h₂ : x ^ 2 * y + x * y ^ 2 = 880) : x ^ 2 + y ^ 2 = 146 := by sorry",
"is_solved": false
},
{
"name": "mathd_algebra_43",
"statement": "theorem mathd_algebra_43 (a b : ℝ) (f : ℝ → ℝ) (h₀ : ∀ x, f x = a * x + b) (h₁ : f 7 = 4)\n (h₂ : f 6 = 3) : f 3 = 0 := by sorry",
"is_solved": true
},
{
"name": "imo_1988_p6",
"statement": "theorem imo_1988_p6 (a b : ℕ) (h₀ : 0 < a ∧ 0 < b) (h₁ : a * b + 1 ∣ a ^ 2 + b ^ 2) :\n ∃ x : ℕ, (x ^ 2 : ℝ) = (a ^ 2 + b ^ 2) / (a * b + 1) := by sorry",
"is_solved": false
},
{
"name": "aime_1996_p5",
"statement": "theorem aime_1996_p5 (a b c r s t : ℝ) (f g : ℝ → ℝ)\n (h₀ : ∀ x, f x = x ^ 3 + 3 * x ^ 2 + 4 * x - 11) (h₁ : ∀ x, g x = x ^ 3 + r * x ^ 2 + s * x + t)\n (h₂ : f a = 0) (h₃ : f b = 0) (h₄ : f c = 0) (h₅ : g (a + b) = 0) (h₆ : g (b + c) = 0)\n (h₇ : g (c + a) = 0) (h₈ : List.Pairwise (· ≠ ·) [a, b, c]) : t = 23 := by sorry",
"is_solved": false
},
{
"name": "mathd_algebra_55",
"statement": "theorem mathd_algebra_55 (q p : ℝ) (h₀ : q = 2 - 4 + 6 - 8 + 10 - 12 + 14)\n (h₁ : p = 3 - 6 + 9 - 12 + 15 - 18 + 21) : q / p = 2 / 3 := by sorry",
"is_solved": true
},
{
"name": "algebra_sqineq_2at2pclta2c2p41pc",
"statement": "theorem algebra_sqineq_2at2pclta2c2p41pc (a c : ℝ) :\n 2 * a * (2 + c) ≤ a ^ 2 + c ^ 2 + 4 * (1 + c) := by sorry",
"is_solved": false
},
{
"name": "mathd_numbertheory_43",
"statement": "theorem mathd_numbertheory_43 : IsGreatest { n : ℕ | 15 ^ n ∣ 942! } 233 := by sorry",
"is_solved": false
},
{
"name": "mathd_algebra_214",
"statement": "theorem mathd_algebra_214 (a : ℝ) (f : ℝ → ℝ) (h₀ : ∀ x, f x = a * (x - 2) ^ 2 + 3) (h₁ : f 4 = 4) :\n f 6 = 7 := by sorry",
"is_solved": true
},
{
"name": "mathd_algebra_96",
"statement": "theorem mathd_algebra_96 (x y z a : ℝ) (h₀ : 0 < x ∧ 0 < y ∧ 0 < z)\n (h₁ : Real.log x - Real.log y = a) (h₂ : Real.log y - Real.log z = 15)\n (h₃ : Real.log z - Real.log x = -7) : a = -8 := by sorry",
"is_solved": true
},
{
"name": "amc12_2001_p2",
"statement": "theorem amc12_2001_p2 (a b n : ℕ) (h₀ : 1 ≤ a ∧ a ≤ 9) (h₁ : 0 ≤ b ∧ b ≤ 9) (h₂ : n = 10 * a + b)\n (h₃ : n = a * b + a + b) : b = 9 := by sorry",
"is_solved": true
},
{
"name": "mathd_algebra_185",
"statement": "theorem mathd_algebra_185 (s : Finset ℤ) (f : ℤ → ℤ) (h₀ : ∀ x, f x = abs (x + 4))\n (h₁ : ∀ x, x ∈ s ↔ f x < 9) : s.card = 17 := by sorry",
"is_solved": false
},
{
"name": "algebra_binomnegdiscrineq_10alt28asqp1",
"statement": "theorem algebra_binomnegdiscrineq_10alt28asqp1 (a : ℝ) : 10 * a ≤ 28 * a ^ 2 + 1 := by sorry",
"is_solved": false
},
{
"name": "mathd_numbertheory_284",
"statement": "theorem mathd_numbertheory_284 (a b : ℕ) (h₀ : 1 ≤ a ∧ a ≤ 9 ∧ b ≤ 9)\n (h₁ : 10 * a + b = 2 * (a + b)) : 10 * a + b = 18 := by sorry",
"is_solved": false
},
{
"name": "amc12a_2009_p2",
"statement": "theorem amc12a_2009_p2 : 1 + 1 / (1 + 1 / (1 + 1)) = (5 : ℚ) / 3 := by sorry",
"is_solved": true
},
{
"name": "mathd_numbertheory_709",
"statement": "theorem mathd_numbertheory_709 (n : ℕ) (h₀ : 0 < n) (h₁ : Finset.card (Nat.divisors (2 * n)) = 28)\n (h₂ : Finset.card (Nat.divisors (3 * n)) = 30) : Finset.card (Nat.divisors (6 * n)) = 35 := by sorry",
"is_solved": false
},
{
"name": "amc12a_2013_p8",
"statement": "theorem amc12a_2013_p8 (x y : ℝ) (h₀ : x ≠ 0) (h₁ : y ≠ 0) (h₂ : x ≠ y)\n (h₃ : x + 2 / x = y + 2 / y) : x * y = 2 := by sorry",
"is_solved": false
},
{
"name": "mathd_numbertheory_461",
"statement": "theorem mathd_numbertheory_461 (n : ℕ)\n (h₀ : n = Finset.card (Finset.filter (fun x => Nat.gcd x 8 = 1) (Finset.Icc 1 7))) :\n 3 ^ n % 8 = 1 := by sorry",
"is_solved": true
},
{
"name": "mathd_algebra_59",
"statement": "theorem mathd_algebra_59 (b : ℝ) (h₀ : (4 : ℝ) ^ b + 2 ^ 3 = 12) : b = 1 := by sorry",
"is_solved": false
},
{
"name": "mathd_algebra_234",
"statement": "theorem mathd_algebra_234 (d : ℝ) (h₀ : 27 / 125 * d = 9 / 25) : 3 / 5 * d ^ 3 = 25 / 9 := by sorry",
"is_solved": false
},
{
"name": "imo_1973_p3",
"statement": "theorem imo_1973_p3 (a b : ℝ) (h₀ : ∃ x, x ^ 4 + a * x ^ 3 + b * x ^ 2 + a * x + 1 = 0) :\n 4 / 5 ≤ a ^ 2 + b ^ 2 := by sorry",
"is_solved": false
},
{
"name": "amc12b_2020_p5",
"statement": "theorem amc12b_2020_p5 (a b : ℕ) (h₀ : (5 : ℚ) / 8 * b = 2 / 3 * a + 7)\n (h₁ : (b : ℚ) - 5 / 8 * b = a - 2 / 3 * a + 7) : a = 42 := by sorry",
"is_solved": false
},
{
"name": "numbertheory_sqmod3in01d",
"statement": "theorem numbertheory_sqmod3in01d (a : ℤ) : a ^ 2 % 3 = 0 ∨ a ^ 2 % 3 = 1 := by sorry",
"is_solved": false
},
{
"name": "mathd_algebra_131",
"statement": "theorem mathd_algebra_131 (a b : ℝ) (f : ℝ → ℝ) (h₀ : ∀ x, f x = 2 * x ^ 2 - 7 * x + 2)\n (h₁ : f a = 0) (h₂ : f b = 0) (h₃ : a ≠ b) : 1 / (a - 1) + 1 / (b - 1) = -1 := by sorry",
"is_solved": false
},
{
"name": "amc12b_2003_p17",
"statement": "theorem amc12b_2003_p17 (x y : ℝ) (h₀ : 0 < x ∧ 0 < y) (h₁ : Real.log (x * y ^ 3) = 1)\n (h₂ : Real.log (x ^ 2 * y) = 1) : Real.log (x * y) = 3 / 5 := by sorry",
"is_solved": false
},
{
"name": "mathd_algebra_536",
"statement": "theorem mathd_algebra_536 : ↑3! * ((2 : ℝ) ^ 3 + Real.sqrt 9) / 2 = (33 : ℝ) := by sorry",
"is_solved": false
},
{
"name": "mathd_algebra_22",
"statement": "theorem mathd_algebra_22 : Real.logb (5 ^ 2) (5 ^ 4) = 2 := by sorry",
"is_solved": false
},
{
"name": "numbertheory_xsqpysqintdenomeq",
"statement": "theorem numbertheory_xsqpysqintdenomeq (x y : ℚ) (h₀ : (x ^ 2 + y ^ 2).den = 1) : x.den = y.den := by sorry",
"is_solved": false
},
{
"name": "aimeII_2001_p3",
"statement": "theorem aimeII_2001_p3 (x : ℕ → ℤ) (h₀ : x 1 = 211) (h₂ : x 2 = 375) (h₃ : x 3 = 420)\n (h₄ : x 4 = 523) (h₆ : ∀ n ≥ 5, x n = x (n - 1) - x (n - 2) + x (n - 3) - x (n - 4)) :\n x 531 + x 753 + x 975 = 898 := by sorry",
"is_solved": false
},
{
"name": "mathd_numbertheory_22",
"statement": "theorem mathd_numbertheory_22 (b : ℕ) (h₀ : b < 10)\n (h₁ : Nat.sqrt (10 * b + 6) * Nat.sqrt (10 * b + 6) = 10 * b + 6) : b = 3 ∨ b = 1 := by sorry",
"is_solved": false
},
{
"name": "aime_1987_p8",
"statement": "theorem aime_1987_p8 :\n IsGreatest { n : ℕ | 0 < n ∧ ∃! k : ℕ, (8 : ℝ) / 15 < n / (n + k) ∧ (n : ℝ) / (n + k) < 7 / 13 } 112 := by sorry",
"is_solved": false
},
{
"name": "mathd_numbertheory_136",
"statement": "theorem mathd_numbertheory_136 (n : ℕ) (h₀ : 123 * n + 17 = 39500) : n = 321 := by sorry",
"is_solved": true
},
{
"name": "amc12_2000_p11",
"statement": "theorem amc12_2000_p11 (a b : ℝ) (h₀ : a ≠ 0 ∧ b ≠ 0) (h₁ : a * b = a - b) :\n a / b + b / a - a * b = 2 := by sorry",
"is_solved": true
},
{
"name": "amc12b_2003_p9",
"statement": "theorem amc12b_2003_p9 (a b : ℝ) (f : ℝ → ℝ) (h₀ : ∀ x, f x = a * x + b) (h₁ : f 6 - f 2 = 12) :\n f 12 - f 2 = 30 := by sorry",
"is_solved": true
},
{
"name": "algebra_2complexrootspoly_xsqp49eqxp7itxpn7i",
"statement": "theorem algebra_2complexrootspoly_xsqp49eqxp7itxpn7i (x : ℂ) :\n x ^ 2 + 49 = (x + 7 * Complex.I) * (x + -7 * Complex.I) := by sorry",
"is_solved": true
},
{
"name": "mathd_numbertheory_198",
"statement": "theorem mathd_numbertheory_198 : 5 ^ 2005 % 100 = 25 := by sorry",
"is_solved": true
},
{
"name": "mathd_algebra_149",
"statement": "theorem mathd_algebra_149 (f : ℝ → ℝ) (h₀ : ∀ x < -5, f x = x ^ 2 + 5)\n (h₁ : ∀ x ≥ -5, f x = 3 * x - 8) (h₂ : Fintype (f ⁻¹' {10})) :\n (∑ k ∈ (f ⁻¹' {10}).toFinset, k) = 6 := by sorry",
"is_solved": false
},
{
"name": "mathd_algebra_132",
"statement": "theorem mathd_algebra_132 (x : ℝ) (f g : ℝ → ℝ) (h₀ : ∀ x, f x = x + 2) (h₁ : ∀ x, g x = x ^ 2)\n (h₂ : f (g x) = g (f x)) : x = -1 / 2 := by sorry",
"is_solved": true
},
{
"name": "mathd_numbertheory_37",
"statement": "theorem mathd_numbertheory_37 : Nat.lcm 9999 100001 = 90900909 := by sorry",
"is_solved": true
},
{
"name": "aime_1983_p9",
"statement": "theorem aime_1983_p9 (x : ℝ) (h₀ : 0 < x ∧ x < Real.pi) :\n 12 ≤ (9 * (x ^ 2 * Real.sin x ^ 2) + 4) / (x * Real.sin x) := by sorry",
"is_solved": false
},
{
"name": "mathd_algebra_37",
"statement": "theorem mathd_algebra_37 (x y : ℝ) (h₀ : x + y = 7) (h₁ : 3 * x + y = 45) : x ^ 2 - y ^ 2 = 217 := by sorry",
"is_solved": false
},
{
"name": "mathd_numbertheory_458",
"statement": "theorem mathd_numbertheory_458 (n : ℕ) (h₀ : n % 8 = 7) : n % 4 = 3 := by sorry",
"is_solved": false
},
{
"name": "amc12a_2008_p15",
"statement": "theorem amc12a_2008_p15 (k : ℕ) (h₀ : k = 2008 ^ 2 + 2 ^ 2008) : (k ^ 2 + 2 ^ k) % 10 = 6 := by sorry",
"is_solved": false
},
{
"name": "mathd_numbertheory_301",
"statement": "theorem mathd_numbertheory_301 (j : ℕ) (h₀ : 0 < j) : 3 * (7 * ↑j + 3) % 7 = 2 := by sorry",
"is_solved": true
},
{
"name": "amc12a_2009_p15",
"statement": "theorem amc12a_2009_p15 (n : ℕ) (h₀ : 0 < n)\n (h₁ : (∑ k ∈ Finset.Icc 1 n, ↑k * Complex.I ^ k) = 48 + 49 * Complex.I) : n = 97 := by sorry",
"is_solved": false
},
{
"name": "algebra_sqineq_36azm9asqle36zsq",
"statement": "theorem algebra_sqineq_36azm9asqle36zsq (z a : ℝ) : 36 * (a * z) - 9 * a ^ 2 ≤ 36 * z ^ 2 := by sorry",
"is_solved": false
},
{
"name": "amc12a_2013_p7",
"statement": "theorem amc12a_2013_p7 (s : ℕ → ℝ) (h₀ : ∀ n, s (n + 2) = s (n + 1) + s n) (h₁ : s 9 = 110)\n (h₂ : s 7 = 42) : s 4 = 10 := by sorry",
"is_solved": true
},
{
"name": "mathd_algebra_104",
"statement": "theorem mathd_algebra_104 (x : ℝ) (h₀ : 125 / 8 = x / 12) : x = 375 / 2 := by sorry",
"is_solved": true
},
{
"name": "mathd_numbertheory_252",
"statement": "theorem mathd_numbertheory_252 : 7! % 23 = 3 := by sorry",
"is_solved": true
},
{
"name": "amc12a_2020_p21",
"statement": "theorem amc12a_2020_p21 (S : Finset ℕ)\n (h₀ : ∀ n : ℕ, n ∈ S ↔ 5 ∣ n ∧ Nat.lcm 5! n = 5 * Nat.gcd 10! n) : S.card = 48 := by sorry",
"is_solved": false
},
{
"name": "mathd_algebra_493",
"statement": "theorem mathd_algebra_493 (f : ℝ → ℝ) (h₀ : ∀ x, f x = x ^ 2 - 4 * Real.sqrt x + 1) :\n f (f 4) = 70 := by sorry",
"is_solved": false
},
{
"name": "numbertheory_nckeqnm1ckpnm1ckm1",
"statement": "theorem numbertheory_nckeqnm1ckpnm1ckm1 (n k : ℕ) (h₀ : 0 < n ∧ 0 < k) (h₁ : k ≤ n) :\n Nat.choose n k = Nat.choose (n - 1) k + Nat.choose (n - 1) (k - 1) := by sorry",
"is_solved": false
},
{
"name": "algebra_3rootspoly_amdtamctambeqnasqmbpctapcbtdpasqmbpctapcbta",
"statement": "theorem algebra_3rootspoly_amdtamctambeqnasqmbpctapcbtdpasqmbpctapcbta (b c d a : ℂ) :\n (a - d) * (a - c) * (a - b) =\n -((a ^ 2 - (b + c) * a + c * b) * d) + (a ^ 2 - (b + c) * a + c * b) * a := by sorry",
"is_solved": true
},
{
"name": "mathd_numbertheory_403",
"statement": "theorem mathd_numbertheory_403 : (∑ k ∈ Nat.properDivisors 198, k) = 270 := by sorry",
"is_solved": true
},
{
"name": "mathd_algebra_190",
"statement": "theorem mathd_algebra_190 : ((3 : ℝ) / 8 + 7 / 8) / (4 / 5) = 25 / 16 := by sorry",
"is_solved": true
},
{
"name": "mathd_numbertheory_269",
"statement": "theorem mathd_numbertheory_269 : (2005 ^ 2 + 2005 ^ 0 + 2005 ^ 0 + 2005 ^ 5) % 100 = 52 := by sorry",
"is_solved": true
},
{
"name": "aime_1990_p2",
"statement": "theorem aime_1990_p2 :\n (52 + 6 * Real.sqrt 43) ^ ((3 : ℝ) / 2) - (52 - 6 * Real.sqrt 43) ^ ((3 : ℝ) / 2) = 828 := by sorry",
"is_solved": false
},
{
"name": "mathd_numbertheory_101",
"statement": "theorem mathd_numbertheory_101 : 17 * 18 % 4 = 2 := by sorry",
"is_solved": true
},
{
"name": "algebra_sqineq_4bap1lt4bsqpap1sq",
"statement": "theorem algebra_sqineq_4bap1lt4bsqpap1sq (a b : ℝ) : 4 * b * (a + 1) ≤ 4 * b ^ 2 + (a + 1) ^ 2 := by sorry",
"is_solved": false
},
{
"name": "mathd_numbertheory_156",
"statement": "theorem mathd_numbertheory_156 (n : ℕ) (h₀ : 0 < n) : Nat.gcd (n + 7) (2 * n + 1) ≤ 13 := by sorry",
"is_solved": false
},
{
"name": "mathd_algebra_451",
"statement": "theorem mathd_algebra_451 (σ : Equiv ℝ ℝ) (h₀ : σ.2 (-15) = 0) (h₁ : σ.2 0 = 3) (h₂ : σ.2 3 = 9)\n (h₃ : σ.2 9 = 20) : σ.1 (σ.1 9) = 0 := by sorry",
"is_solved": true
},
{
"name": "mathd_algebra_144",
"statement": "theorem mathd_algebra_144 (a b c d : ℕ) (h₀ : 0 < a ∧ 0 < b ∧ 0 < c ∧ 0 < d) (h₀ : (c : ℤ) - b = d)\n (h₁ : (b : ℤ) - a = d) (h₂ : a + b + c = 60) (h₃ : a + b > c) : d < 10 := by sorry",
"is_solved": true
},
{
"name": "mathd_algebra_282",
"statement": "theorem mathd_algebra_282 (f : ℝ → ℝ) (h₀ : ∀ x : ℝ, ¬ (Irrational x) → f x = abs (Int.floor x))\n (h₁ : ∀ x, Irrational x → f x = (Int.ceil x) ^ 2) :\n f (8 ^ (1 / 3)) + f (-Real.pi) + f (Real.sqrt 50) + f (9 / 2) = 79 := by sorry",
"is_solved": false
},
{
"name": "mathd_algebra_410",
"statement": "theorem mathd_algebra_410 (x y : ℝ) (h₀ : y = x ^ 2 - 6 * x + 13) : 4 ≤ y := by sorry",
"is_solved": false
},
{
"name": "mathd_numbertheory_232",
"statement": "theorem mathd_numbertheory_232 (x y z : ZMod 31) (h₀ : x = 3⁻¹) (h₁ : y = 5⁻¹)\n (h₂ : z = (x + y)⁻¹) : z = 29 := by sorry",
"is_solved": false
},
{
"name": "mathd_algebra_77",
"statement": "theorem mathd_algebra_77 (a b : ℝ) (f : ℝ → ℝ) (h₀ : a ≠ 0 ∧ b ≠ 0) (h₁ : a ≠ b)\n (h₂ : ∀ x, f x = x ^ 2 + a * x + b) (h₃ : f a = 0) (h₄ : f b = 0) : a = 1 ∧ b = -2 := by sorry",
"is_solved": false
},
{
"name": "imo_1974_p5",
"statement": "theorem imo_1974_p5 (a b c d s : ℝ) (h₀ : 0 < a ∧ 0 < b ∧ 0 < c ∧ 0 < d)\n (h₁ : s = a / (a + b + d) + b / (a + b + c) + c / (b + c + d) + d / (a + c + d)) :\n 1 < s ∧ s < 2 := by sorry",
"is_solved": false
},
{
"name": "aime_1988_p3",
"statement": "theorem aime_1988_p3 (x : ℝ) (h₀ : 0 < x)\n (h₁ : Real.logb 2 (Real.logb 8 x) = Real.logb 8 (Real.logb 2 x)) : Real.logb 2 x ^ 2 = 27 := by sorry",
"is_solved": false
},
{
"name": "mathd_numbertheory_530",
"statement": "theorem mathd_numbertheory_530 (n k : ℕ) (h₀ : 0 < n ∧ 0 < k) (h₀ : (n : ℝ) / k < 6)\n (h₁ : (5 : ℝ) < n / k) : 22 ≤ Nat.lcm n k / Nat.gcd n k := by sorry",
"is_solved": false
},
{
"name": "mathd_algebra_109",
"statement": "theorem mathd_algebra_109 (a b : ℝ) (h₀ : 3 * a + 2 * b = 12) (h₁ : a = 4) : b = 0 := by sorry",
"is_solved": true
},
{
"name": "imo_1967_p3",
"statement": "theorem imo_1967_p3 (k m n : ℕ) (c : ℕ → ℕ) (h₀ : 0 < k ∧ 0 < m ∧ 0 < n)\n (h₁ : ∀ s, c s = s * (s + 1)) (h₂ : Nat.Prime (k + m + 1)) (h₃ : n + 1 < k + m + 1) :\n (∏ i ∈ Finset.Icc 1 n, c i) ∣ ∏ i ∈ Finset.Icc 1 n, c (m + i) - c k := by sorry",
"is_solved": false
},
{
"name": "mathd_algebra_11",
"statement": "theorem mathd_algebra_11 (a b : ℝ) (h₀ : a ≠ b) (h₁ : a ≠ 2 * b)\n (h₂ : (4 * a + 3 * b) / (a - 2 * b) = 5) : (a + 11 * b) / (a - b) = 2 := by sorry",
"is_solved": false
},
{
"name": "amc12a_2003_p1",
"statement": "theorem amc12a_2003_p1 (u v : ℕ → ℕ) (h₀ : ∀ n, u n = 2 * n + 2) (h₁ : ∀ n, v n = 2 * n + 1) :\n ((∑ k ∈ Finset.range 2003, u k) - ∑ k ∈ Finset.range 2003, v k) = 2003 := by sorry",
"is_solved": false
},
{
"name": "numbertheory_aneqprodakp4_anmsqrtanp1eq2",
"statement": "theorem numbertheory_aneqprodakp4_anmsqrtanp1eq2 (a : ℕ → ℝ) (h₀ : a 0 = 1)\n (h₁ : ∀ n, a (n + 1) = (∏ k ∈ Finset.range (n + 1), a k) + 4) :\n ∀ n ≥ 1, a n - Real.sqrt (a (n + 1)) = 2 := by sorry",
"is_solved": false
},
{
"name": "algebra_2rootspoly_apatapbeq2asqp2ab",
"statement": "theorem algebra_2rootspoly_apatapbeq2asqp2ab (a b : ℂ) :\n (a + a) * (a + b) = 2 * a ^ 2 + 2 * (a * b) := by sorry",
"is_solved": true
},
{
"name": "induction_sum_odd",
"statement": "theorem induction_sum_odd (n : ℕ) : (∑ k ∈ Finset.range n, (2 * k + 1)) = n ^ 2 := by sorry",
"is_solved": false
},
{
"name": "mathd_algebra_568",
"statement": "theorem mathd_algebra_568 (a : ℝ) :\n (a - 1) * (a + 1) * (a + 2) - (a - 2) * (a + 1) = a ^ 3 + a ^ 2 := by sorry",
"is_solved": true
},
{
"name": "mathd_algebra_616",
"statement": "theorem mathd_algebra_616 (f g : ℝ → ℝ) (h₀ : ∀ x, f x = x ^ 3 + 2 * x + 1)\n (h₁ : ∀ x, g x = x - 1) : f (g 1) = 1 := by sorry",
"is_solved": true
},
{
"name": "mathd_numbertheory_690",
"statement": "theorem mathd_numbertheory_690 :\n IsLeast { a : ℕ | 0 < a ∧ a ≡ 2 [MOD 3] ∧ a ≡ 4 [MOD 5] ∧ a ≡ 6 [MOD 7] ∧ a ≡ 8 [MOD 9] } 314 := by sorry",
"is_solved": false
},
{
"name": "amc12a_2016_p2",
"statement": "theorem amc12a_2016_p2 (x : ℝ) (h₀ : (10 : ℝ) ^ x * 100 ^ (2 * x) = 1000 ^ 5) : x = 3 := by sorry",
"is_solved": false
},
{
"name": "mathd_numbertheory_405",
"statement": "theorem mathd_numbertheory_405 (a b c : ℕ) (t : ℕ → ℕ) (h₀ : t 0 = 0) (h₁ : t 1 = 1)\n (h₂ : ∀ n > 1, t n = t (n - 2) + t (n - 1)) (h₃ : a ≡ 5 [MOD 16]) (h₄ : b ≡ 10 [MOD 16])\n (h₅ : c ≡ 15 [MOD 16]) : (t a + t b + t c) % 7 = 5 := by sorry",
"is_solved": false
},
{
"name": "mathd_numbertheory_110",
"statement": "theorem mathd_numbertheory_110 (a b : ℕ) (h₀ : 0 < a ∧ 0 < b ∧ b ≤ a) (h₁ : (a + b) % 10 = 2)\n (h₂ : (2 * a + b) % 10 = 1) : (a - b) % 10 = 6 := by sorry",
"is_solved": false
},
{
"name": "amc12a_2003_p25",
"statement": "theorem amc12a_2003_p25 (a b : ℝ) (f : ℝ → ℝ) (h₀ : 0 < b)\n (h₁ : ∀ x, f x = Real.sqrt (a * x ^ 2 + b * x)) (h₂ : { x | 0 ≤ f x } = f '' { x | 0 ≤ f x }) :\n a = 0 ∨ a = -4 := by sorry",
"is_solved": false
},
{
"name": "amc12a_2010_p10",
"statement": "theorem amc12a_2010_p10 (p q : ℝ) (a : ℕ → ℝ) (h₀ : ∀ n, a (n + 2) - a (n + 1) = a (n + 1) - a n)\n (h₁ : a 1 = p) (h₂ : a 2 = 9) (h₃ : a 3 = 3 * p - q) (h₄ : a 4 = 3 * p + q) : a 2010 = 8041 := by sorry",
"is_solved": false
},
{
"name": "mathd_algebra_509",
"statement": "theorem mathd_algebra_509 :\n Real.sqrt ((5 / Real.sqrt 80 + Real.sqrt 845 / 9 + Real.sqrt 45) / Real.sqrt 5) = 13 / 6 := by sorry",
"is_solved": false
},
{
"name": "mathd_algebra_159",
"statement": "theorem mathd_algebra_159 (b : ℝ) (f : ℝ → ℝ)\n (h₀ : ∀ x, f x = 3 * x ^ 4 - 7 * x ^ 3 + 2 * x ^ 2 - b * x + 1) (h₁ : f 1 = 1) : b = -2 := by sorry",
"is_solved": true
},
{
"name": "aime_1997_p11",
"statement": "theorem aime_1997_p11 (x : ℝ)\n (h₀ :\n x =\n (∑ n ∈ Finset.Icc (1 : ℕ) 44, Real.cos (n * π / 180)) /\n ∑ n ∈ Finset.Icc (1 : ℕ) 44, Real.sin (n * π / 180)) :\n Int.floor (100 * x) = 241 := by sorry",
"is_solved": false
},
{
"name": "aimeI_2000_p7",
"statement": "theorem aimeI_2000_p7 (x y z : ℝ) (m : ℚ) (h₀ : 0 < x ∧ 0 < y ∧ 0 < z) (h₁ : x * y * z = 1)\n (h₂ : x + 1 / z = 5) (h₃ : y + 1 / x = 29) (h₄ : z + 1 / y = m) (h₅ : 0 < m) :\n ↑m.den + m.num = 5 := by sorry",
"is_solved": false
},
{
"name": "aime_1988_p4",
"statement": "theorem aime_1988_p4 (n : ℕ) (a : ℕ → ℝ) (h₀ : ∀ n, abs (a n) < 1)\n (h₁ : (∑ k ∈ Finset.range n, abs (a k)) = 19 + abs (∑ k ∈ Finset.range n, a k)) : 20 ≤ n := by sorry",
"is_solved": false
},
{
"name": "induction_divisibility_9div10tonm1",
"statement": "theorem induction_divisibility_9div10tonm1 (n : ℕ) (h₀ : 0 < n) : 9 ∣ 10 ^ n - 1 := by sorry",
"is_solved": false
},
{
"name": "mathd_numbertheory_126",
"statement": "theorem mathd_numbertheory_126 (x a : ℕ) (h₀ : 0 < x ∧ 0 < a) (h₁ : Nat.gcd a 40 = x + 3)\n (h₂ : Nat.lcm a 40 = x * (x + 3))\n (h₃ : ∀ b : ℕ, 0 < b → Nat.gcd b 40 = x + 3 ∧ Nat.lcm b 40 = x * (x + 3) → a ≤ b) : a = 8 := by sorry",
"is_solved": false
},
{
"name": "mathd_algebra_323",
"statement": "theorem mathd_algebra_323 (σ : Equiv ℝ ℝ) (h : ∀ x, σ.1 x = x ^ 3 - 8) : σ.2 (σ.1 (σ.2 19)) = 3 := by sorry",
"is_solved": false
},
{
"name": "mathd_algebra_421",
"statement": "theorem mathd_algebra_421 (a b c d : ℝ) (h₀ : b = a ^ 2 + 4 * a + 6)\n (h₁ : b = 1 / 2 * a ^ 2 + a + 6) (h₂ : d = c ^ 2 + 4 * c + 6) (h₃ : d = 1 / 2 * c ^ 2 + c + 6)\n (h₄ : a < c) : c - a = 6 := by sorry",
"is_solved": false
},
{
"name": "imo_1987_p6",
"statement": "theorem imo_1987_p6 (p : ℕ) (f : ℕ → ℕ) (h₀ : ∀ x, f x = x ^ 2 + x + p)\n (h₀ : ∀ k : ℕ, k ≤ Nat.floor (Real.sqrt (p / 3)) → Nat.Prime (f k)) :\n ∀ i ≤ p - 2, Nat.Prime (f i) := by sorry",
"is_solved": false
},
{
"name": "amc12a_2009_p25",
"statement": "theorem amc12a_2009_p25 (a : ℕ → ℝ) (h₀ : a 1 = 1) (h₁ : a 2 = 1 / Real.sqrt 3)\n (h₂ : ∀ n, 1 ≤ n → a (n + 2) = (a n + a (n + 1)) / (1 - a n * a (n + 1))) : abs (a 2009) = 0 := by sorry",
"is_solved": false
},
{
"name": "imo_1961_p1",
"statement": "theorem imo_1961_p1 (x y z a b : ℝ) (h₀ : 0 < x ∧ 0 < y ∧ 0 < z) (h₁ : x ≠ y) (h₂ : y ≠ z)\n (h₃ : z ≠ x) (h₄ : x + y + z = a) (h₅ : x ^ 2 + y ^ 2 + z ^ 2 = b ^ 2) (h₆ : x * y = z ^ 2) :\n 0 < a ∧ b ^ 2 < a ^ 2 ∧ a ^ 2 < 3 * b ^ 2 := by sorry",
"is_solved": false
},
{
"name": "mathd_algebra_31",
"statement": "theorem mathd_algebra_31 (x : NNReal) (u : ℕ → NNReal) (h₀ : ∀ n, u (n + 1) = NNReal.sqrt (x + u n))\n (h₁ : Filter.Tendsto u Filter.atTop (𝓝 9)) : 9 = NNReal.sqrt (x + 9) := by sorry",
"is_solved": false
},
{
"name": "algebra_manipexpr_apbeq2cceqiacpbceqm2",
"statement": "theorem algebra_manipexpr_apbeq2cceqiacpbceqm2 (a b c : ℂ) (h₀ : a + b = 2 * c)\n (h₁ : c = Complex.I) : a * c + b * c = -2 := by sorry",
"is_solved": true
},
{
"name": "mathd_numbertheory_370",
"statement": "theorem mathd_numbertheory_370 (n : ℕ) (h₀ : n % 7 = 3) : (2 * n + 1) % 7 = 0 := by sorry",
"is_solved": false
},
{
"name": "mathd_algebra_437",
"statement": "theorem mathd_algebra_437 (x y : ℝ) (n : ℤ) (h₀ : x ^ 3 = -45) (h₁ : y ^ 3 = -101) (h₂ : x < n)\n (h₃ : ↑n < y) : n = -4 := by sorry",
"is_solved": false
},
{
"name": "imo_1966_p5",
"statement": "theorem imo_1966_p5 (x a : ℕ → ℝ) (h₀ : a 1 ≠ a 2) (h₁ : a 1 ≠ a 3) (h₂ : a 1 ≠ a 4)\n (h₃ : a 2 ≠ a 3) (h₄ : a 2 ≠ a 4) (h₅ : a 3 ≠ a 4) (h₆ : a 1 > a 2) (h₇ : a 2 > a 3)\n (h₈ : a 3 > a 4)\n (h₉ : abs (a 1 - a 2) * x 2 + abs (a 1 - a 3) * x 3 + abs (a 1 - a 4) * x 4 = 1)\n (h₁₀ : abs (a 2 - a 1) * x 1 + abs (a 2 - a 3) * x 3 + abs (a 2 - a 4) * x 4 = 1)\n (h₁₁ : abs (a 3 - a 1) * x 1 + abs (a 3 - a 2) * x 2 + abs (a 3 - a 4) * x 4 = 1)\n (h₁₂ : abs (a 4 - a 1) * x 1 + abs (a 4 - a 2) * x 2 + abs (a 4 - a 3) * x 3 = 1) :\n x 2 = 0 ∧ x 3 = 0 ∧ x 1 = 1 / abs (a 1 - a 4) ∧ x 4 = 1 / abs (a 1 - a 4) := by sorry",
"is_solved": false