-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproblems.json
2315 lines (2306 loc) · 100 KB
/
problems.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
[
{
"description": "Jeżeli liczba $78$ jest o $50 \\%$ większa od liczby $c$, to",
"combinations": ["A. $c=60$", "B. $c=52$", "C. $c=48$", "D. $c=39$"],
"answer": "B. $c=52$",
"type":"zamkniete",
"difficulty": "easy",
"tags": ["Rzeczywiste"],
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c1337d06c8e607d0147bfc/main.mp4",
"uid": "zad-1-in"
},
{
"description": "Suma $log_816 + 1$ jest równa",
"combinations": ["A. $3$", "B. $\\frac{3}{2}$", "C. $log_817$", "D. $\\frac{7}{3}$"],
"answer": "D. $\\frac{7}{3}$",
"photoUrl": null,
"type": "zamkniete",
"tags": ["Logarytmy"],
"difficulty": "easy",
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c131ac06c8e607d014664a/main.mp4",
"uid": "zad-2-log"
},
{
"description": "Udowodnij, że każda liczba całkowita $k$, która przy dzieleniu przez 7 daje resztę 2, ma tę własność, że reszta z dzielenia liczby $3k^2$ przez $7$ jest równa $5$.",
"combinations": null,
"answer": "$7(21n^2 + 12n + 1) + 5 ckd.$",
"photoUrl": null,
"tags": ["Dowodowe"],
"type": "otwarte",
"difficulty": "medium",
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c131ac06c8e607d014664b/main.mp4",
"uid": "zad-3-dow"
},
{
"description": "Liczba $3^{\\frac{9}{4}}$ jest równa",
"combinations": [
"A. $3 \\cdot \\sqrt[4]{3}$",
"B. $9 \\cdot \\sqrt[4]{3}$",
"C. $27 \\cdot \\sqrt[4]{3}$",
"D. $3^9 \\cdot 3^{\\frac{1}{4}}$"
],
"answer": "B. $9 \\cdot \\sqrt[4]{3}$",
"photoUrl": null,
"tags": ["Rzeczywiste"],
"type": "zamkniete",
"difficulty": "easy",
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c131acd635271420a274c7/main.mp4",
"uid": "zad-4-in"
},
{
"description": "Wskaż równość prawdziwą",
"combinations": ["A. $-256^2 = (-256)^2$", "B. $256^3 = (-256)^3$", "C. $256^2 = (-256)^2$", "D. $256^4 = (-256)^4$"],
"answer": "D. $256^4 = (-256)^4$",
"type": "zamkniete",
"photoUrl": null,
"tags": ["Rzeczywiste"],
"difficulty": "easy",
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c131ac06c8e607d0146649/main.mp4",
"uid": "zad-5-in"
},
{
"description": "W klasie jest cztery razy więcej chłopców niż dziewcząt. Ile procent wszystkich uczniów tej klasy stanowią dziewczęta?",
"combinations": ["A. $4 \\%$", "B. $5 \\%$", "C. $20 \\%$", "D. $25 \\%$"],
"answer": "C. $20 \\%$",
"photoUrl": null,
"type": "zamkniete",
"tags": ["Rzeczywiste"],
"difficulty": "easy",
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c131ad06c8e607d014666f/main.mp4",
"uid": "zad-6-in"
},
{
"description": "Zbiorem rozwiązań nierówności $x^2 > 4x$ jest",
"combinations": ["A. $(-\\infty, -4) \\cup (0, \\infty)$", "B. $(4, \\infty)$", "C. $(-\\infty, -2) \\cup (2, \\infty)$", "D. $(-\\infty, 0) \\cup (4, \\infty)$"],
"answer": "D. $(-\\infty, 0) \\cup (4, \\infty)$",
"type": "zamkniete",
"photoUrl": null,
"tags": ["Kwadratowa"],
"difficulty": "easy",
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c131b7d635271420a27609/main.mp4",
"uid": "zad-7-kwad"
},
{
"description": "Liczba wszystkich dodatnich liczb czterocyfrowych parzystych, w których zapisie nie występują cyfry $0$ i $2$, jest równa",
"combinations": ["A. $8 \\cdot 8 \\cdot 8 \\cdot 3$", "B. $8 \\cdot 7 \\cdot 6 \\cdot 3$", "C. $8 \\cdot 10 \\cdot 10 \\cdot 4$", "D. $9 \\cdot 8 \\cdot 7 \\cdot 4$"],
"answer": "A. $8 \\cdot 8 \\cdot 8 \\cdot 3$",
"photoUrl": null,
"type": "zamkniete",
"tags": ["Kombinatoryka"],
"difficulty": "medium",
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c131b806c8e607d014674f/main.mp4",
"uid": "zad-8-komb"
},
{
"description": "Wskaż równanie prostej prostopadłej do prostej o równaniu $2x - 4y = 5$",
"combinations": ["A. $y=\\frac{1}{2}x$", "B. $y=-\\frac{1}{2}$", "C. $y=2x$", "D. $y=-2x$"],
"answer": "D. $y=-2x$",
"photoUrl": null,
"type": "zamkniete",
"tags": ["Liniowa"],
"difficulty": "easy",
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c131b8d635271420a27617/main.mp4",
"uid": "zad-9-lin"
},
{
"description": "Liczba $a$ stanowi $80 \\%$ liczby $b$. Zatem:",
"combinations": ["A. $b=1,2a$", "B. $a-b=0,2a$", "C. $a-b =0,2b$", "D. $8b=10a$"],
"answer": "$8b=10a$",
"type": "zamkniete",
"photoUrl": null,
"tags": ["Rzeczywiste"],
"difficulty": "easy",
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c131b906c8e607d0146766/main.mp4",
"uid": "zad-10-in"
},
{
"description": "W trójkącie prostokątnym długość jednej z przyprostokątnych jest równa 7, zaś długość przeciwprostokątnej jest równa 8. Zatem tangens mniejszego kąta ostreggo w tym trójkącie jest równy:",
"combinations": ["A. $\\frac{15}{7}$", "B. $\\frac{8}{15}$", "C. $\\frac{\\sqrt{15}}{7}$", "D. \\frac{7\\sqrt{15}}{15}"],
"answer": "C. $\\frac{\\sqrt{15}}{7}$",
"photoUrl": null,
"type": "zamkniete",
"tags": ["Trygonometria"],
"difficulty": "hard",
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c131b9d635271420a27645/main.mp4",
"uid": "zad-11-tryg"
},
{
"description": "Funkcja $W$ jest określona wzorem $W(x) = 3x^4 - bx - 2a$ dla wszystkich liczb rzeczywistych. Równość $W(-1) + W(1) = 0$ zachodzi, gdy",
"combinations": ["A. $a = \\frac{2}{3}$", "B. $a = \\frac{3}{2}$", "C. $a = 1$", "D. $a = -1$"],
"answer": "B. $a = \\frac{3}{2}$",
"type": "zamkniete",
"photoUrl": null,
"tags": ["Wielomiany"],
"difficulty": "medium",
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c131b9d635271420a2765b/main.mp4",
"uid": "zad-12-wiel"
},
{
"description": "Dane są liczby $x = 2 + \\sqrt{5}$ i $y = 3 - \\sqrt{5}$. Iloraz $\\frac{x}{y}$ można zapisać w postaci:",
"combinations": ["A. $8\\sqrt{5}$", "B. $\\frac{7\\sqrt{5} - 9}{4}$", "C. $\\frac{-5\\sqrt{5}}{2}$", "D. $\\frac{11}{4} + \\frac{5}{4}\\sqrt{5}$"],
"answer": "D. $\\frac{11}{4} + \\frac{5}{4}\\sqrt{5}$",
"type": "zamkniete",
"photoUrl": null,
"tags": ["Rzeczywiste"],
"difficulty": "easy",
"answerUrl": "https://www.youtube.com/watch?v=AE3iXR1JFak",
"uid": "zad-13-in"
},
{
"description": "Na rysunku przedstawiony jest wykres funkcji $y=f(x)$. Zbiorem wartości tej funkcji jest:",
"combinations": ["A. $[-4, 3]$", "B. $[-4,-1] \\cup [1, 3]$", "C. $[-4, -1] \\cup (1, 3]$", "D. $[-5, 6]$"],
"answer": "C. $[-4, -1] \\cup (1, 3]$",
"type": "zamkniete",
"photoUrl": "https://i.imgur.com/0LGLRfL.png",
"tags": ["Planimetria"],
"difficulty": "easy",
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c131c106c8e607d0146876/main.mp4",
"uid": "zad-14-plan"
},
{
"description": "Ile jest liczb czterocyfrowych, takich, że suma cyfr danej liczby jest nie większa niż 3?",
"combinations": ["A. $12$", "B. $13$", "C. $14$", "D. $15$"],
"answer": "D. $15$",
"type": "zamkniete",
"photoUrl": null,
"tags": ["Kombinatoryka"],
"difficulty": "hard",
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c131c1d635271420a2777b/main.mp4",
"uid": "zad-15-komb"
},
{
"description": "Rysunek przedstawia wykres funkcji $y=f(x)$. W jakim przedziale funkcja jest malejąca?",
"combinations": ["A. $[0, 4]$", "B. $[1, 6]$", "C. $[0, 6]$", "D. $[-2, 4]$"],
"answer": "B. $[1, 6]$",
"type": "zamkniete",
"photoUrl": "https://i.imgur.com/sbTc9f8.png",
"tags": ["Planimetria"],
"difficulty": "easy",
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c1345206c8e607d01485ce/main.mp4",
"uid": "zad-16-plan"
},
{
"description": "Liczba $9^9 \\cdot 81^2$ jest równa",
"combinations": ["A. $81^4$", "B. $81$", "C. $9^{13}$", "D. $9^{36}$"],
"answer": "C. $9^{13}$",
"type": "zamkniete",
"photoUrl": null,
"tags": ["Rzeczywiste"],
"difficulty": "easy",
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c131c106c8e607d01468a5/main.mp4",
"uid": "zad-17-in"
},
{
"description": "Kąt $\\alpha$ jest kątem ostrym i $tg\\alpha = \\frac{1}{2}$. Jaki warunek spełnia kąt $\\alpha$?",
"combinations": ["A. $\\alpha < 30\\degree$", "B. $\\alpha = 30\\degree$", "C. $\\alpha = 60\\degree$", "D. $\\alpha > 60\\degree$"],
"answer": "A. $\\alpha < 30\\degree$",
"photoUrl": null,
"tags": ["Trygonometria, Matura 2015"],
"difficulty": "easy",
"type": "zamkniete",
"answerUrl": "",
"uid": "zad-18-tryg"
},
{
"description": "Na wykresie funkcji liniowej określonej wzorem $f(x) = (m-1)x + 3$ leży punkt $S = (5,2)$. Zatem",
"combinations": ["A. $m = 1$", "B. $m = 2$", "C. $m = -1$", "D. $m = 0$"],
"answer": "D. $m = 0$",
"type": "zamkniete",
"photoUrl": null,
"tags": ["Liniowa"],
"difficulty": "easy",
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c131acd635271420a274c5/main.mp4",
"uid": "zad-19-lin"
},
{
"description": "Liczba $\\frac{2^{50} \\cdot 3^{40}}{36^{10}}$",
"combinations": ["A. $6^{70}$", "B. $6^{45}$", "C. $2^{30} \\cdot 3^{20}$", "D. $2^{10} \\cdot 3^{20}$"],
"answer": "C. $2^{30} \\cdot 3^{20}$",
"photoUrl": null,
"tags": ["Rzeczywiste"],
"difficulty": "medium",
"type": "zamkniete",
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c134d8d635271420a29ef7/main.mp4",
"uid": "zad-20-in"
},
{
"description": "Punkty $E = (7, 1)$ i $F = (9, 7)$ to środki boków, odpowiednio $AB$ i $BC$ kwadratu $ABCD$. Przekątna tego kwadratu ma długość",
"combinations": ["A. $4\\sqrt{5}$", "B. $10$", "C. $4\\sqrt{10}$", "D. $20$"],
"answer": "A. $4\\sqrt{5}$",
"type":"zamkniete",
"photoUrl": null,
"tags": ["Geometria analityczna"],
"difficulty": "hard",
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c18e92d635271420a6a000/main.mp4",
"uid": "zad-21-geoman"
},
{
"description": "Liczba $log_55 - log_5125$ jest równa",
"combinations": ["A. $-2$", "B. $-1$", "C. $\\frac{1}{25}$", "D. $4$"],
"answer": "A. $-2$",
"type":"zamkniete",
"photoUrl": null,
"tags": ["Rzeczywiste"],
"difficulty": "easy",
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c18e9206c8e607d01893bf/main.mp4",
"uid": "zad-22-in"
},
{
"description": "Ciąg $a_n$ jest określony wzorem $a_n = \\frac{24-4n}{n}$ dla $n$ większego lub równego 1. Liczba wszystkich całkowitych nieujemnych wyrazów tego ciągu jest równa",
"combinations": ["A. $7$", "B. $6$", "C. $5$", "D. $4$"],
"answer": "C. $5$",
"type":"zamkniete",
"photoUrl": null,
"tags": ["Ciągi"],
"difficulty": "medium",
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c18e9206c8e607d01893bd/main.mp4",
"uid": "zad-23-ciag"
},
{
"description": "Nierówność $\\frac{1}{3} - \\frac{1}{2}x < \\frac{1}{6}$ jest równoważna nierówności",
"combinations": ["A. $x > \\frac{1}{3}$", "B. $x < \\frac{1}{3}$", "C. $x > 3$", "D. $x < 3$"],
"answer": "A. $x > \\frac{1}{3}$",
"type":"zamkniete",
"photoUrl": null,
"tags": ["Nierówności"],
"difficulty": "hard",
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c18e92d635271420a6a001/main.mp4",
"uid": "zad-24-nier"
},
{
"description": "Kąt $\\alpha$ jest ostry i $(\\sin\\alpha + \\cos\\alpha)^2 = \\frac{3}{2}$. Oblicz wartość wyrażenia $\\sin\\alpha \\cdot \\cos\\alpha$.",
"combinations": null,
"answer": "$\\frac{1}{4}$",
"type":"otwarte",
"photoUrl": null,
"tags": ["Trygonometria"],
"difficulty": "medium",
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c18e9206c8e607d01893c0/main.mp4",
"uid": "zad-25-tryg"
},
{
"description": "Rozwiąż nierówność $-2x^2 + 3x < 4$.",
"combinations": null,
"answer": "$x \\in \\mathbb{R}$",
"type":"otwarte",
"photoUrl": null,
"tags": ["Kwadratowa"],
"difficulty": "easy",
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c18e9306c8e607d01893f7/main.mp4",
"uid": "zad-26-kwad-nier"
},
{
"description": "Wykaż, że dla każdej liczby $a > 0$ i dla każdej liczby $b > 0$ prawdziwa jest nierówność $\\frac{1}{a} + \\frac{1}{b} \\geqslant \\frac{4}{a+b}$",
"combinations": null,
"answer": "Udowodniono za pomocą wzorów skróconego mnożenia.",
"type":"otwarte",
"photoUrl": null,
"tags": ["Dowodowe"],
"difficulty": "medium",
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c18e9e06c8e607d01894c8/main.mp4",
"uid": "zad-27-dowod"
},
{
"description": "Wykaż, że przekątna prostopadłościanu o krawędziach długości $a, b, c$ ma długość $\\sqrt{a^2 + b^2 + c^2}$",
"combinations": null,
"answer": "Udowodniono korzystając z Twierdzenia Pitagorasa.",
"type":"otwarte",
"photoUrl": null,
"tags": ["Dowodowe"],
"difficulty": "medium",
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c18e9ed635271420a6a0f5/main.mp4",
"uid": "zad-28-dowod"
},
{
"description": "W układzie współrzędnych punkty $A = (4, 3)$ i $B = (10, 5)$ są wierzchołkami trókąta $ABC$. Wierzchołek $C$ leży na prostej o równaniu $y=2x+3$. Oblicz współrzędne punktu $C$, dla którego kąt $ABC$ jest prosty.",
"combinations": null,
"answer": "$C = (6\\frac{2}{5}, 15\\frac{4}{5})$",
"photoUrl": null,
"type":"otwarte",
"tags": ["Geometria analityczna"],
"difficulty": "medium",
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c18e9e06c8e607d01894d9/main.mp4",
"uid": "zad-29-geoman"
},
{
"description": "Liczba $10$ jest przybliżeniem z nadmiarem liczby $a$. Błąd bezwzględny tego przybliżenia wynosi $0,4$. Błąd względny tego przybliżenia to:",
"combinations": ["A. $4 \\%$", "B. $4,1(6) \\%$", "C. $4,(4) \\%$", "D. $40 \\%$"],
"answer": "B. $4,1(6) \\%$",
"type":"zamkniete",
"photoUrl": null,
"tags": ["Rzeczywiste"],
"difficulty": "medium",
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c18e9f06c8e607d01894f2/main.mp4",
"uid": "zad-30-in"
},
{
"description": "Dane są punkty $A = (4, 1), B = (1, 3), C = (4, -1)$. Pole trójkąta $ABC$ jest równe",
"combinations": ["A. $3$", "B. $6$", "C. $8$", "D. $10$"],
"answer": "A. $3$",
"type":"zamkniete",
"photoUrl": null,
"tags": ["Geometria analityczna"],
"difficulty": "easy",
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c18e9f06c8e607d0189503/main.mp4",
"uid": "zad-31-geoman"
},
{
"description": "Dane są punkty $A = (-2, 5), B = (4, -1). Średnica okręgu wpisanego w kwadrat o boku $AB$ jest równa",
"combinations": ["A. $12$", "B. $6$", "C. $6\\sqrt{2}$", "D. $2\\sqrt{6}$"],
"answer": "C. $6\\sqrt{2}$",
"type":"zamkniete",
"photoUrl": null,
"tags": ["Geometria analityczna"],
"difficulty": "medium",
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c18e9fd635271420a6a138/main.mp4",
"uid": "zad-32-geoman"
},
{
"description": "Suma liczby odwrotnej do liczby $-4\\frac{3}{5}$ i liczby przeciwnej do liczby $\\frac{18}{23}$ jest równa",
"combinations": ["A. $-1$", "B. $0$", "C. $\\frac{21}{23}$", "D. $1$"],
"answer": "A. $-1$",
"type":"zamkniete",
"photoUrl": null,
"tags": ["Rzeczywiste"],
"difficulty": "easy",
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c18e9f06c8e607d0189510/main.mp4",
"uid": "zad-33-in"
},
{
"description": "Pole powierzchni całkowitej prostopadłościanu o wymiarach $5 x 3 x 4$ jest równe",
"combinations": ["A. $94$", "B. $60$", "C. $47$", "D. $20$"],
"answer": "A. $94$",
"type":"zamkniete",
"photoUrl": null,
"tags": ["Planimetria"],
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c18ead06c8e607d0189655/main.mp4",
"difficulty": "easy",
"uid": "zad-34-stereom"
},
{
"description": "Kąt ostry $\\alpha$ jest ostry i $\\sin\\alpha = \\frac{7}{13}$. Wtedy $\\tg\\alpha$ jest równy",
"combinations": ["A. $\\frac{7}{6}$", "B. $\\frac{7 \\cdot 13}{120}$", "C. $\\frac{7}{\\sqrt{120}}$", "D. $$\\frac{7}{13\\sqrt{120}}"],
"answer": "C. $\\frac{7}{\\sqrt{120}}$",
"type":"zamkniete",
"photoUrl": null,
"tags": ["Trygonometria"],
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c18eadd635271420a6a29e/main.mp4",
"difficulty": "easy",
"uid": "zad-35-tryg"
},
{
"description": "Graniastosłup ma $15$ krawędzi. Ile wierzchołków ma ten graniastosłup?",
"combinations": ["A. $10$", "B. $5$", "C. $15$", "D. $30$"],
"answer": "A. $10$",
"photoUrl": null,
"type":"zamkniete",
"tags": ["Stereometria"],
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c18eadd635271420a6a2b7/main.mp4",
"difficulty": "easy",
"uid": "zad-36-stereom"
},
{
"description": "Kąt $ASB$ jest kątem środkowym w okręgu i jego miara wynosi $100\\degree$. Miara zaznaczonego kąta $\\alpha$ jest równa",
"combinations": ["A. $40\\degree$", "B. $45\\degree$", "C. $50\\degree$", "D. $60\\degree$"],
"answer": "A. $40\\degree$",
"type":"zamkniete",
"photoUrl": "https://i.imgur.com/1JyNaPl.png",
"tags": ["Planimetria"],
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c18ead06c8e607d0189662/main.mp4",
"difficulty": "easy",
"uid": "zad-37-plan"
},
{
"description": "Do wykresu funkcji $f(x) = log_4x$ nie należy punkt",
"combinations": ["A. $(1, 0)$", "B. $(\\frac{1}{2}, -\\frac{1}{2})$", "C. $(2, 2)$", "D. $(16, 2)$"],
"answer": "C. $(2, 2)$",
"type":"zamkniete",
"photoUrl": null,
"tags": ["Rzeczywiste"],
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c18eaed635271420a6a2ce/main.mp4",
"difficulty": "easy",
"uid": "zad-38-in"
},
{
"description": "Na rysunku przedstawiony jest przedział $(-10, k)$, gdzie $k$ jest liczbą całkowitą. Suma wszystkich liczb całkowitych należących do tego przedziału jest równa 21. Stąd wynika, że",
"combinations": ["A. $k=9$", "B. $k=11$", "C. $k=21$", "D. $k=31$"],
"answer": "B. $k=11$",
"type":"zamkniete",
"photoUrl": "https://i.imgur.com/XNkfk1t.png",
"tags": ["Rzeczywiste"],
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c18eb4d635271420a6a380/main.mp4",
"difficulty": "medium",
"uid": "zad-39-in"
},
{
"description": "Prosta $l$ jest równoległa do prostej $y==\\frac{1}{2}x + 2$. Na prostej $l$ leży punkt $P=(0, 7)$. Zatem prosta $l$ ma postać",
"combinations": ["A. $y=2x$", "B. $y=2x + 7$", "C. $y=-\\frac{1}{2}x$", "D. $y=-\\frac{1}{2}x + 7$"],
"answer": "D. $y=-\\frac{1}{2}x + 7$",
"type":"zamkniete",
"photoUrl": null,
"tags": ["Liniowa"],
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c18eb406c8e607d01896fa/main.mp4",
"difficulty": "medium",
"uid": "zad-40-lin"
},
{
"description": "Równanie $x(5x + 1) = 5x + 1$ ma dokładnie",
"combinations": ["A. jedno rozwiązanie: $x=1$", "B. dwa rozwiązania: $x=1, x=-1$", "C.dwa rozwiązania: $x=-\\frac{1}{5}, x=1$", "D.dwa rozwiązania: $x=\\frac{1}{5}, x=-1$"],
"answer": "C.dwa rozwiązania: $x=-\\frac{1}{5}, x=1$",
"type":"zamkniete",
"photoUrl": null,
"tags": ["Kwadratowa"],
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c18eb4d635271420a6a38b/main.mp4",
"difficulty": "medium",
"uid": "zad-41-kwad"
},
{
"description": "Wiadomo, że $a = 3log_84$, zatem $a$ jest równe",
"combinations": ["A. $512$", "B. $81$", "C. $2$", "D. $64$"],
"answer": "C. $2$",
"type":"zamkniete",
"photoUrl": null,
"tags": ["Logarytmy"],
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c18eb506c8e607d0189713/main.mp4",
"difficulty": "easy",
"uid": "zad-42-log"
},
{
"description": "Wpłacono 500 zł na kolatę dwuletnią, przy rocznej stopie $6 \\%$ i kapitalizacji co pół roku. Po $2$ latach stan konta wynosi",
"combinations": ["A. $500 \\cdot (1,2)^2$", "B. $500 \\cdot (1,06)^2$", "C. $500\\cdot(1,06)^4$", "D. $500\\cdot(1,03)^4$"],
"answer": "D. $500\\cdot(1,03)^4$",
"type":"zamkniete",
"photoUrl": null,
"tags": ["Procent składany"],
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c18eb506c8e607d0189724/main.mp4",
"difficulty": "easy",
"uid": "zad-43-proc"
},
{
"description": "Wskaż równanie prostej równoległej do prostej o równaniu $y=2x-7$.",
"combinations": ["A. $y=-2x+7$", "B. $y=-\\frac{1}{2}+5$", "C. $y=\\frac{1}{2}+2$", "D. $y=2x-1$"],
"answer": "D. $y=2x-1$",
"type":"zamkniete",
"photoUrl": null,
"tags": ["Liniowa"],
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c18eb5d635271420a6a3a5/main.mp4",
"difficulty": "easy",
"uid": "zad-44-lin"
},
{
"description": "Wyrażenie $2\\sqrt{50} - 4\\sqrt{8}$ zapisane w postaci jednej potęgi wynosi",
"combinations": ["A. $2^{\\frac{3}{2}}$", "B. $2^{\\frac{1}{2}}$", "C. $2^{-1}$", "D. $4^{\\frac{1}{2}}$"],
"answer": "A. $2^{\\frac{3}{2}}$",
"photoUrl": null,
"tags": ["Rzeczywiste"],
"type": "zamkniete",
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c18eb9d635271420a6a45a/main.mp4",
"difficulty": "easy",
"uid": "zad-45-in"
},
{
"description": "Rozwiązaniem równania $\\frac{(x^2-2x-3)(x^2-9)}{x-1} = 0$ \\cdot\\cdotnie jest\\cdot\\cdot liczba",
"combinations": ["A. $-3$", "B. $-1$", "C. $1$", "D. $3$"],
"answer": "C. $1$",
"photoUrl": null,
"tags": null,
"type": "zamkniete",
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c18eb906c8e607d01897da/main.mp4",
"difficulty": "easy",
"uid": "zad-46-in"
},
{
"description": "Jeśli funkcja kwadratowa $f(x) = x^2 + 2x + 3a$ nie ma ani jednego miejsca zerowego, to liczba $a$ spełnia warunek",
"combinations": ["A. $a < -1$", "B. $-1 <= a < 0$", "C. $ 0 <= a < \\frac{1}{3}$", "D. $a > \\frac{1}{3}$"],
"answer": "D. $a > \\frac{1}{3}$",
"photoUrl": null,
"tags": ["Kwadratowa"],
"type": "otwarte",
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c18eb9d635271420a6a467/main.mp4",
"difficulty": "medium",
"uid": "zad-47-kwad"
},
{
"description": "Liczba $\\frac{4^5 \\cdot 5^4}{20^4}$ jest równa",
"combinations": ["A. $4^4$", "B. $20^16$", "C. $20^5$", "D. $4$"],
"answer": "D. $4$",
"photoUrl": null,
"tags": ["Rzeczywiste"],
"type": "zamkniete",
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c18eba06c8e607d01897e7/main.mp4",
"difficulty": "easy",
"uid": "zad-48-in"
},
{
"description": "Wynikiem działania $46^{-6}:7^{-15}$ jest",
"combinations": ["A. $7^{-21}$", "B. $7^3$", "C. $7^8$", "D. $7^{-21}$"],
"answer": "B. $7^3$",
"photoUrl": null,
"tags": ["Rzeczywiste"],
"type": "zamkniete",
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c18ebe06c8e607d0189894/main.mp4",
"difficulty": "easy",
"uid": "zad-49-in"
},
{
"description": "Objętość sześcianu jest równa $64$. Pole powierzchni całkowitej tego sześcianu jest równe",
"combinations": ["A. $512$", "B. $384$", "C. $96$", "D. $16$"],
"answer": "C. $96$",
"photoUrl": null,
"tags": ["Stereometria"],
"type": "zamkniete",
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c18ebe06c8e607d0189879/main.mp4",
"difficulty": "easy",
"uid": "zad-50-stereom"
},
{
"description": "Kąt $\\alpha$ jest ostry i speniona jest równość $3\\tg\\alpha = 2$. Wtedy wartość wyrażenia $\\sin\\alpha + \\cos\\alpha$ jest równa",
"combinations": ["A. $1$", "B. $\\frac{5\\sqrt{13}}{26}$", "C. $\\frac{5\\sqrt{13}}{13}$", "D. $\\sqrt{5}$"],
"answer": "C. $\\frac{5\\sqrt{13}}{13}$",
"photoUrl": null,
"tags": ["Trygonometria"],
"type": "zamkniete",
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c18ebe06c8e607d0189884/main.mp4",
"difficulty": "medium",
"uid": "zad-51-tryg"
},
{
"description": "W trójkącie prostokątnym przeciwprostokątna ma długość $3$, a długość przyprostokątnej leżącej naprzeciwko kąta $\\alpha$ jest równa $\\sqrt{3}$. Zatem:",
"combinations": ["A. $\\alpha = 60\\degree$", "B. $\\alpha \\in (40\\degree, 60\\degree)$", "C. $\\alpha \\in (30\\degree, 40\\degree)$", "D. $\\alpha = 30\\degree$"],
"answer": "C. $\\alpha \\in (30\\degree, 40\\degree)$",
"photoUrl": null,
"type":"zamkniete",
"tags": ["Trygonometria"],
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c18ebed635271420a6a510/main.mp4",
"difficulty": "hard",
"uid": "zad-52-tryg"
},
{
"description": "Punkt $S = (3, -1)$ jest środkiem odcinka $AB$ i $A = (-3, -5)$. Punkt $B$ ma współrzędne:",
"combinations": ["A. $(9,3)$", "B. $(9, -3)$", "C. $(-9, -3)$", "D. $(-9, 3)$"],
"answer": "A. $(9,3)$",
"photoUrl": null,
"type":"zamkniete",
"tags": ["Geometria analityczna"],
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c18ebfd635271420a6a524/main.mp4",
"difficulty": "medium",
"uid": "zad-53-geoman"
},
{
"description": "Wykresem funkcji kwadratowej $f$ określonej wzorem $f(x) = x^2 + bx + c$ jest parabola, na której leży punkt $A = (0, -5)$. Osią symetrii tej paraboli jest prosta o równaniu $x=7$. Oblicz wartości współczynników $b$ i $c$.",
"combinations": null,
"answer": "$b = (-14), c = (-5)$",
"type":"otwarte",
"photoUrl": null,
"tags": ["Kwadratowa"],
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c18ebf06c8e607d01898b0/main.mp4",
"difficulty": "hard",
"uid": "zad-54-kwad"
},
{
"description": "Znajdź wszystkie argumenty $x$ dla których funkcje $f(x) = x-3$ oraz $g(x) = -\\frac{2}{x}$ przyjmują tę samą wartość.",
"combinations": null,
"answer": "$x=2, x=1$",
"type":"otwarte",
"photoUrl": null,
"tags": ["Liniowa"],
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c18ec7d635271420a6a61e/main.mp4",
"difficulty": "medium",
"uid": "zad-55-lin"
},
{
"description": "Ciąg $a_n$ jest geometryczny oraz $a_1 = 2, a_2 = 6$. Liczby $a_3, x, \\frac{x}{2}$ w podanej kolejności tworzą ciąg arytmetyczny. Oblicz $x$.",
"combinations": null,
"answer": "$x=12$",
"type":"otwarte",
"photoUrl": null,
"tags": ["Ciągi"],
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c18ec7d635271420a6a628/main.mp4",
"difficulty": "hard",
"uid": "zad-56-ciag"
},
{
"description": "Sześcian o krawędzi $6$ przecięto płaszczyzną zawierającą przekątną dolnej podstawy i jeden wierzchołek drugiej (patrz rysunek). Oblicz pole otrzymanego przekroju.",
"combinations": null,
"answer": "$P=18\\sqrt{3}$",
"type":"otwarte",
"photoUrl": "https://i.imgur.com/1P7r5rS.png",
"tags": ["Stereometria"],
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c18ec706c8e607d01899bf/main.mp4",
"difficulty": "hard",
"uid": "zad-57-stereom"
},
{
"description": "Proste $l$ i $k$ przecinają się w punkcie $A=(0, 4)$. Prosta $l$ wyznacza wraz z dodatnimi półosiami układu współrzędnych trójkąt o polu $8$, zaś prosta $k$ - trójkąt o polu $10$. Oblicz pole trójkąta, którego wierzchołkami są: punkt $A$ oraz punkty przecięcia prostych $l$ i $k$ z osią $Ox$.",
"combinations": null,
"answer": "",
"type":"otwarte",
"photoUrl": null,
"tags": ["Liniowa"],
"answerUrl": "https://video.gumlet.io/64c3db1747b2326c9b7bf164/64c69d3c47b2326c9b8e0e05/main.mp4",
"difficulty": "hard",
"uid": "zad-58-lin"
},
{
"description": "Na trójkącie o bokach długości $\\sqrt{7}, \\sqrt{8}, \\sqrt{15}$ opisano okrąg. Oblicz długość promienia tego okręgu.",
"combinations": null,
"answer": "$r=\\frac{\\sqrt{15}}{2}$",
"type":"otwarte",
"photoUrl": null,
"tags": ["Planimetria"],
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c18ec7d635271420a6a635/main.mp4",
"difficulty": "medium",
"uid": "zad-59-plan"
},
{
"description": "Punkty $A=(-1,1), C=(1,9)$ są wierzchołkami trójkąta równoramiennego $ABC$, w którym $|AC| = |BC|$. Podstawa $AB$ tego trójkąta zawiera się w prostej o równaniu $y=\\frac{1}{2}x + \\frac{3}{2}$. Oblicz współrzędne wierzchołka $B$.",
"combinations": null,
"answer": "",
"type":"otwarte",
"photoUrl": null,
"tags": ["Geometria analityczna"],
"answerUrl": "https://video.gumlet.io/64c3db1747b2326c9b7bf164/64c69d3c47b2326c9b8e0df4/main.mp4",
"difficulty": "hard",
"uid": "zad-60-geoman"
},
{
"description": "Ciąg $(9, 18, x)$ jest geometryczny, a ciąg $(x, 30, y)$ jest arytmetyczny. Oblicz medianę liczb $10,x,y,12,12,18,30$.",
"combinations": null,
"answer": "$m=18$",
"type":"otwarte",
"photoUrl": null,
"tags": ["Ciągi", "Statystyka"],
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c18ec806c8e607d01899d2/main.mp4",
"difficulty": "easy",
"uid": "zad-61-ciag"
},
{
"description": "Dane są dwa zbiory $A={100, 200, 300, 400, 500, 600, 700}, B={10,11,12,13,14,15,16}$. Z każdgo z nich losujemy jedną liczbę. Oblicz prawdopodobieństwo zdarzenia polegającego na tym, że suma wylosowanych liczb będzie podzielna przez $3$. Obliczone prawdopodobieństwo zapisz w postaci nieskracalnego ułamka zwykłego.",
"combinations": null,
"answer": "",
"type":"otwarte",
"photoUrl": null,
"tags": ["Prawdopodobieństwo"],
"answerUrl": "https://video.gumlet.io/64c3db1747b2326c9b7bf164/64c69d3c47b2326c9b8e0e08/main.mp4",
"difficulty": "hard",
"uid": "zad-62-prawd"
},
{
"description": "Liczbę \\sqrt{32} można przedstawić w postaci",
"combinations": ["A. $8\\sqrt{2}$", "B. $12\\sqrt{3}$", "C. $4\\sqrt{8}$", "D. $4\\sqrt{2}$"],
"answer": "D. $4\\sqrt{2}$",
"type":"zamkniete",
"photoUrl": null,
"tags": ["Rzeczywiste"],
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c18ec8d635271420a6a66e/main.mp4",
"difficulty": "easy",
"uid": "zad-63-in"
},
{
"description": "Punkty $A=(-5, 2), B=(3, -2)$ są wierzchołkami trójkąta równobocznego $ABC$. Obwód tego trójkąta jest równy",
"combinations": ["A. $30$", "B. $4\\sqrt{5}$", "C. $12\\sqrt{5}$", "D. $36$"],
"answer": "C. $12\\sqrt{5}$",
"type":"zamkniete",
"photoUrl": null,
"tags": ["Geometria analityczna"],
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c18eced635271420a6a718/main.mp4",
"difficulty": "medium",
"uid": "zad-64-geoman"
},
{
"description": "Kąt $\\alpha$ jest ostry i $\\sin\\alpha = \\frac{1}{4}$. Wówczas",
"combinations": ["A. $\\cos\\alpha < \\frac{3}{4}$", "B. $\\cos\\alpha = \\frac{3}{4}$", "C. $\\cos\\alpha = \\frac{\\sqrt{13}}{4}$", "D. $\\cos\\alpha > \\frac{\\sqrt{13}}{4}$"],
"answer": "D. $\\cos\\alpha > \\frac{\\sqrt{13}}{4}$",
"type":"zamkniete",
"photoUrl": null,
"tags": ["Trygonometria"],
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c18eced635271420a6a724/main.mp4",
"difficulty": "medium",
"uid": "zad-65-tryg"
},
{
"description": "Dla $x = \\frac{2}{\\sqrt{2}} + 1$ oraz $y=\\sqrt{2}-1$ wartość wyrażenia $x^2 - 2xy + y^2$ jest równa",
"combinations": ["A. $4$", "B. $1$", "C. $\\sqrt{2}$", "D. $\\frac{1}{\\sqrt{2}}$"],
"answer": "A. $4$",
"type":"zamkniete",
"photoUrl": null,
"tags": ["Rzeczywiste"],
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c18eced635271420a6a72e/main.mp4",
"difficulty": "medium",
"uid": "zad-66-in"
},
{
"description": "Wykresy funkcji liniowych $f(x) = \\frac{\\sqrt{5}}{3}x + 6$ oraz $g(x) = \\frac{5}{3\\sqrt{5}}x - \\frac{1}{6}$:",
"combinations": ["A. są prostopadłe", "B. przecinają się, ale nie sa prostopadłe", "C. pokrywają się", "D. są równoległe, ale nie pokrywają się"],
"answer": "D. są równoległe, ale nie pokrywają się",
"type":"zamkniete",
"photoUrl": null,
"tags": ["Liniowa"],
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c25ac906c8e607d0270403/main.mp4",
"difficulty": "medium",
"uid": "zad-67-lin"
},
{
"description": "Dany jest ciąg $a_n$ określony wzorem $a_n = \\frac{5-2n}{6}$ dla $n >=1$. Ciąg ten jest",
"combinations": ["A. arytmetyczny i jego różnica wynosi $r = - \\frac{1}{3}$", "B. arytmetyczny i jego różnica wynosi $r = -2$", "C. geometryczny i jego iloraz jest równy $q = -\\frac{1}{3}$", "D. geometryczny i jego iloraz jest równy $q=\\frac{5}{6}$"],
"answer": "A. arytmetyczny i jego różnica wynosi $r = - \\frac{1}{3}$",
"type":"zamkniete",
"photoUrl": null,
"tags": ["Ciągi"],
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c25ac906c8e607d0270406/main.mp4",
"difficulty": "medium",
"uid": "zad-68-ciag"
},
{
"description": "Kąt $\\alpha$ jest ostry i $\\cos\\alpha = \\sqrt{2}-1$. Wtedy wyrażenie $\\frac{1}{|\\sin^2\\alpha - 2\\cos\\alpha - 1|}$ jest równe",
"combinations": ["A. $-1$", "B. $0$", "C. $1$", "D. $\\frac{\\sqrt{2}}{2}$"],
"answer": "C. $1$",
"type":"zamkniete",
"photoUrl": null,
"tags": ["Trygonometria"],
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c25ac8d635271420b516e8/main.mp4",
"difficulty": "hard",
"uid": "zad-69-tryg"
},
{
"description": "Różnica miar dwóch sąsiednich kątów wewnętrznych równoległoboku jest równa $30\\degree$. Kąt rozwarty tego równoległoboku ma miarę",
"combinations": ["A. $105\\degree$", "B. $115\\degree$", "C. $125\\degree$", "D. $135\\degree$"],
"answer": "A. $105\\degree$",
"type":"zamkniete",
"photoUrl": null,
"tags": ["Planimetria"],
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c25ac906c8e607d0270404/main.mp4",
"difficulty": "medium",
"uid": "zad-70-plan"
},
{
"description": "Liczba $(\\sqrt{3}-1)^2 + (\\sqrt{5}-1)(\\sqrt{5}+1)$ jest równa",
"combinations": ["A. $8 + \\sqrt{3}$", "B. $8 + 2\\sqrt{3}$", "C. $10 + 2\\sqrt{3}$", "D. $8 - 2\\sqrt{3}$"],
"answer": "D. $8 - 2\\sqrt{3}$",
"type":"zamkniete",
"photoUrl": null,
"tags": ["Rzeczywiste"],
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c25ac8d635271420b516e7/main.mp4",
"difficulty": "medium",
"uid": "zad-71-in"
},
{
"description": "Dla każdej liczby rzeczywistej $x$ wyrażenie $x^6 - 2x^3 - 3$ jest równe",
"combinations": ["A. $(x^3+1)(x^2-3)$", "B. $(x^3-3)(x^3+1)$", "C. $(x^2+3)(x^4-1)$", "D. $(x^4+1)(x^2-3)$"],
"answer": "B. $(x^3-3)(x^3+1)$",
"type":"zamkniete",
"photoUrl": null,
"tags": ["Rzeczywiste"],
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c25ac8d635271420b516e9/main.mp4",
"difficulty": "medium",
"uid": "zad-72-in"
},
{
"description": "Wartość wyrażenia $2\\sin^218\\degree + \\sin^272\\degree + \\cos^218\\degree jest równa$",
"combinations": ["A. $0$", "B. $1$", "C. $2$", "D. $4$"],
"answer": "C. $2$",
"type":"zamkniete",
"photoUrl": null,
"tags": ["Trygonometria"],
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c25aca06c8e607d0270468/main.mp4",
"difficulty": "medium",
"uid": "zad-73-tryg"
},
{
"description": "Punkty $B=(-2,4), C=(5,1)$ są sąsiednimi wierzchołkami kwadratu $ABCD$. Pole tego kwadratu jest równe",
"combinations": ["A. $29$", "B. $40$", "C. $58$", "D. $74$"],
"answer": "C. $58$",
"type":"zamkniete",
"photoUrl": null,
"tags": ["Geometria analityczna"],
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c25ad106c8e607d027060e/main.mp4",
"difficulty": "medium",
"uid": "zad-74-geoman"
},
{
"description": "Jedną z liczb, które spełniają nierówność $-x^5 + x^3 - x < -2$, jest",
"combinations": ["A. $1$", "B. $-1$", "C. $2$", "D. $-2$"],
"answer": "C. $2$",
"type":"zamkniete",
"photoUrl": null,
"tags": ["Nierówności"],
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c25ad2d635271420b5196c/main.mp4",
"difficulty": "medium",
"uid": "zad-75-nier"
},
{
"description": "Na płaszczyźnie z układem współrzędnych proste $k$ i $l$ przecinają się pod kątem prostym w punkcie $A=(-2,4)$. Prosta $k$ jest określona równaniem $y=-\\frac{1}{4}x + \\frac{7}{2}$. Zatem prostą $l$ opisuje równanie",
"combinations": ["A. $y=\\frac{1}{4}x+\\frac{7}{2}$", "B. $y=-\\frac{1}{4}x+\\frac{7}{2}$", "C. $y=4x-12$", "D. $4x+12$"],
"answer": "D. $4x+12$",
"type":"zamkniete",
"photoUrl": null,
"tags": ["Liniowa"],
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c25ad2d635271420b5197a/main.mp4",
"difficulty": "medium",
"uid": "zad-76-lin"
},
{
"description": "Rozwiąż równanie (x^3 + 27)(x^2 - 16) = 0",
"combinations": null,
"type":"otwarte",
"answer": "$x=(-4), x=(-3), x=4$",
"photoUrl": null,
"tags": ["Równania"],
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c25ad2d635271420b5198f/main.mp4",
"difficulty": "medium",
"uid": "zad-77-row"
},
{
"description": "Wyznacz równanie osi symetrii trójkąta o wierzchołkach $A = (-2,2), B = (6, -2), C=(10,6)$.",
"combinations": null,
"type":"otwarte",
"answer": "$y=-3x+16$",
"photoUrl": null,
"tags": ["Geometria analityczna"],
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c25ad506c8e607d0270718/main.mp4",
"difficulty": "hard",
"uid": "zad-78-geoman"
},
{
"description": "Ze zbioru dwucyfrowych liczb naturalnych wybieramy losowo jedną liczbę. Prawdopodobieństwo otrzymania liczby podzielonej przez $30$ jest równe",
"combinations": ["A. $\\frac{1}{90}$", "B. $\\frac{2}{90}$", "C. $\\frac{3}{90}$", "D. $\\frac{10}{90}$"],
"answer": "C. $\\frac{3}{90}$",
"type":"zamkniete",
"photoUrl": null,
"tags": ["Prawdopodobieństwo"],
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c25ad6d635271420b51a9d/main.mp4",
"difficulty": "medium",
"uid": "zad-79-prawd"
},
{
"description": "Punkt $S=(4,1)$ jest środkiem odcinka $AB$, gdzie $A=(a, 0), B=(a+3, 2)$. Zatem",
"combinations": ["A. $a=0$", "B. $a=\\frac{1}{2}$", "C. $a=2$", "D. $a=\\frac{5}{2}$"],
"answer": "D. $a=\\frac{5}{2}$",
"type":"zamkniete",
"photoUrl": null,
"tags": ["Geometria analityczna"],
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c25ad6d635271420b51ad6/main.mp4",
"difficulty": "medium",
"uid": "zad-80-geoman"
},
{
"description": "W ciągu arytmetycznym $a_n$ dla $n >= 1$, $a_1 = 8$ oraz $a_1 + a_2 + a_3 = 33$. Wtedy suma $a_4 + a_5 + a_6$ jest równa",
"combinations": ["A. $44$", "B. $60$", "C. $69$", "D. $93$"],
"answer": "B. $60$",
"type":"zamkniete",
"photoUrl": null,
"tags": ["Ciągi"],
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c25ada06c8e607d02708a0/main.mp4",
"difficulty": "medium",
"uid": "zad-81-ciag"
},
{
"description": "Trzeci wyraz ciągu geometrycznego jest równy $4$, a piąty wyraz tego ciągu jest równy $1$. Pierwszy wyraz tego ciągu jest równy",
"combinations": ["A. $4$", "B. $4\\sqrt{2}$", "C. $16$", "D. $16\\sqrt{2}$"],
"answer": "C. $16$",
"type":"zamkniete",
"photoUrl": null,
"tags": ["Ciągi"],
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c25adad635271420b51c31/main.mp4",
"difficulty": "medium",
"uid": "zad-82-ciag"
},
{
"description": "Największą liczbą całkowitą spełniającą nierówność $(4+x)^2 < (x-4)(x+4)$ jest",
"combinations": ["A. $-5$", "B. $-4$", "C. $-3$", "D. $-2$"],
"answer": "A. $-5$",
"type":"zamkniete",
"photoUrl": null,
"tags": ["Nierówności"],
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c25adbd635271420b51c81/main.mp4",
"difficulty": "medium",
"uid": "zad-83-nier"
},
{
"description": "Licznik pewnego ułamka jest równy $6$. Jeżeli licznik tego ułamka zmniejszymy o $2$, a mianownik o $3$, to wartość tego ułamkka się nie zmieni. Jaki to ułamek?",
"combinations": ["A. $\\frac{6}{10}$", "B. $\\frac{6}{5}$", "C. $\\frac{6}{11}$", "D. $\\frac{6}{9}$"],
"answer": "D. $\\frac{6}{9}$",
"type":"zamkniete",
"photoUrl": null,
"tags": ["Rzeczywiste"],
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c25adf06c8e607d0270a0d/main.mp4",
"difficulty": "medium",
"uid": "zad-84-in"
},
{
"description": "Dla każdej dodatniej liczby $a$ iloraz $\\frac{a^{-2,6}}{a^{1,3}}$ jest równy",
"combinations": ["A. $a^{-3,9}$", "B. $a^{-2}$", "C. $a^{-1,3}$", "D. $a^{1,3}$"],
"answer": "A. $a^{-3,9}$",
"type":"zamkniete",
"photoUrl": null,
"tags": ["Rzeczywiste"],
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c25adfd635271420b51d99/main.mp4",
"difficulty": "medium",
"uid": "zad-85-in"
},
{
"description": "Dany jest rosnący ciąg arytmetyczny $a_n$, określony dla liczb naturalnych $n >= 1$, o wyrazach dodatnich. Jeśli $a_2 + a_9 = a_4 + a_k$, to $k$ jest równe",
"combinations": ["A. $8$", "B. $7$", "C. $6$", "D. $5$"],
"answer": "B. $7$",
"type":"zamkniete",
"photoUrl": null,
"tags": ["Ciągi"],
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c25adfd635271420b51dc6/main.mp4",
"difficulty": "medium",
"uid": "zad-86-ciag"
},
{
"description": "Kąt $\\alpha$ jest ostry oraz $3\\sin\\alpha - \\sqrt{3}\\cos\\alpha = 0$. Wtedy",
"combinations": ["A. $\\tg\\alpha = \\frac{1}{3}$", "B. $\\tg\\alpha = 3$", "C. $\\tg\\alpha = \\sqrt{3}$", "D. $\\tg\\alpha = \\frac{\\sqrt{3]}{3}$"],
"answer": "D. $\\tg\\alpha = \\frac{\\sqrt{3]}{3}$",
"type":"zamkniete",
"photoUrl": null,
"tags": ["Trygonometria"],
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c25adfd635271420b51db5/main.mp4",
"difficulty": "medium",
"uid": "zad-87-tryg"
},
{
"description": "W ciągu geometrycznym $a_n$ dane są $a_2 = \\frac{\\sqrt{3}}{2}, a_3 = -\\frac{3}{2}$. Wtedy wyraz $a_1$ jest równy",
"combinations": ["A. $-\\frac{1}{2}$", "B. $\\frac{1}{2}$", "C. $-\\frac{\\sqrt{3}}{2}$", "D. $\\frac{\\sqrt{3}}{3}$"],
"answer": "A. $-\\frac{1}{2}$",
"type":"zamkniete",
"photoUrl": null,
"tags": ["Ciągi"],
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c25ae0d635271420b51e04/main.mp4",
"difficulty": "medium",
"uid": "zad-88-ciag"
},
{
"description": "Ile jest wszystkich czterocyfrowych liczb naturalnych mniejszych niż $2017$?",
"combinations": ["A. $2016$", "B. $2017$", "C. $1016$", "D. $1017$"],
"answer": "D. $1017$",
"type":"zamkniete",
"photoUrl": null,
"tags": ["Kombinatoryka"],
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c25ae5d635271420b51fa5/main.mp4",
"difficulty": "medium",
"uid": "zad-89-komb"
},
{
"description": "Punkt $S=(2,7)$ jest środkiem odcinka $AB$, w którym $A=(-1,3)$. Punkt $B$ ma współrzędne:",
"combinations": ["A. $(5,11)$", "B. $(\\frac{1}{2}, 2)$", "C. $(-\\frac{3}{2}, -5)$", "D. $(3, 11)$"],
"answer": "A. $(5,11)$",
"type":"zamkniete",
"photoUrl": null,
"tags": ["Geometria analityczna"],
"answerUrl": "https://video.gumlet.io/647782dcc43ac869939ae869/64c25ae5d635271420b51fc0/main.mp4",
"difficulty": "medium",
"uid": "zad-90-geoman"
},
{
"description": "Liczby $x_1$ o $x_2$ są pierwiastkami równania $x^2 + 10x - 24 = 0$ i $x_1 < x_2$. Oblicz $2x_1 + x_2$",
"combinations": null,
"answer": "$2x_1 + x_2 = (-22)$",
"type":"otwarte",