File size: 5,681 Bytes
3c25c17
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
[
  {
    "id": 1,
    "topic": "algebra",
    "difficulty": "easy",
    "question": "Solve the equation x^2 - 5x + 6 = 0",
    "expected_answer": "x = 2, x = 3",
    "expected_topic": "algebra"
  },
  {
    "id": 2,
    "topic": "algebra",
    "difficulty": "medium",
    "question": "Find the sum of roots of 2x^2 - 7x + 3 = 0",
    "expected_answer": "7/2",
    "expected_topic": "algebra"
  },
  {
    "id": 3,
    "topic": "algebra",
    "difficulty": "medium",
    "question": "If the roots of x^2 + px + q = 0 are in the ratio 2:3, and their sum is 10, find p and q.",
    "expected_answer": "p = -10, q = 24",
    "expected_topic": "algebra"
  },
  {
    "id": 4,
    "topic": "algebra",
    "difficulty": "hard",
    "question": "Find the minimum value of x + 1/x for x > 0",
    "expected_answer": "2",
    "expected_topic": "algebra"
  },
  {
    "id": 5,
    "topic": "algebra",
    "difficulty": "medium",
    "question": "Evaluate: log_2(8) + log_3(27) - log_5(25)",
    "expected_answer": "4",
    "expected_topic": "algebra"
  },
  {
    "id": 6,
    "topic": "algebra",
    "difficulty": "hard",
    "question": "Find the number of terms in the expansion of (x + y)^10",
    "expected_answer": "11",
    "expected_topic": "algebra"
  },
  {
    "id": 7,
    "topic": "algebra",
    "difficulty": "medium",
    "question": "Find the sum of the first 20 terms of the arithmetic progression 3, 7, 11, 15, ...",
    "expected_answer": "820",
    "expected_topic": "algebra"
  },
  {
    "id": 8,
    "topic": "probability",
    "difficulty": "easy",
    "question": "A fair coin is tossed 3 times. What is the probability of getting exactly 2 heads?",
    "expected_answer": "3/8",
    "expected_topic": "probability"
  },
  {
    "id": 9,
    "topic": "probability",
    "difficulty": "medium",
    "question": "A bag contains 5 red and 3 blue balls. Two balls are drawn without replacement. Find the probability that both are red.",
    "expected_answer": "5/14",
    "expected_topic": "probability"
  },
  {
    "id": 10,
    "topic": "probability",
    "difficulty": "medium",
    "question": "In how many ways can 5 people be arranged in a circle?",
    "expected_answer": "24",
    "expected_topic": "probability"
  },
  {
    "id": 11,
    "topic": "probability",
    "difficulty": "hard",
    "question": "A test has a 95% true positive rate and 10% false positive rate. If 1% of the population has the disease, what is the probability that a person who tests positive actually has the disease?",
    "expected_answer": "0.0876 or approximately 8.76%",
    "expected_topic": "probability"
  },
  {
    "id": 12,
    "topic": "probability",
    "difficulty": "medium",
    "question": "Find P(X >= 1) where X follows Binomial(5, 0.3)",
    "expected_answer": "1 - (0.7)^5 = 0.83193",
    "expected_topic": "probability"
  },
  {
    "id": 13,
    "topic": "probability",
    "difficulty": "easy",
    "question": "How many ways can you choose 3 items from 10?",
    "expected_answer": "120",
    "expected_topic": "probability"
  },
  {
    "id": 14,
    "topic": "calculus",
    "difficulty": "easy",
    "question": "Find the derivative of f(x) = x^3 + 2x^2 - 5x + 1",
    "expected_answer": "3x^2 + 4x - 5",
    "expected_topic": "calculus"
  },
  {
    "id": 15,
    "topic": "calculus",
    "difficulty": "medium",
    "question": "Evaluate the limit: lim(x->0) sin(3x)/x",
    "expected_answer": "3",
    "expected_topic": "calculus"
  },
  {
    "id": 16,
    "topic": "calculus",
    "difficulty": "medium",
    "question": "Find the integral of (2x + 3)dx from 0 to 4",
    "expected_answer": "28",
    "expected_topic": "calculus"
  },
  {
    "id": 17,
    "topic": "calculus",
    "difficulty": "hard",
    "question": "Find the maximum value of f(x) = -x^2 + 6x - 5",
    "expected_answer": "4",
    "expected_topic": "calculus"
  },
  {
    "id": 18,
    "topic": "calculus",
    "difficulty": "medium",
    "question": "Find dy/dx if y = e^(2x) * sin(x)",
    "expected_answer": "e^(2x)(2sin(x) + cos(x))",
    "expected_topic": "calculus"
  },
  {
    "id": 19,
    "topic": "calculus",
    "difficulty": "hard",
    "question": "Evaluate lim(x->0) (e^x - 1 - x) / x^2",
    "expected_answer": "1/2",
    "expected_topic": "calculus"
  },
  {
    "id": 20,
    "topic": "calculus",
    "difficulty": "medium",
    "question": "Find the area under the curve y = x^2 from x = 0 to x = 3",
    "expected_answer": "9",
    "expected_topic": "calculus"
  },
  {
    "id": 21,
    "topic": "linear_algebra",
    "difficulty": "easy",
    "question": "Find the determinant of the matrix [[2, 3], [1, 4]]",
    "expected_answer": "5",
    "expected_topic": "linear_algebra"
  },
  {
    "id": 22,
    "topic": "linear_algebra",
    "difficulty": "medium",
    "question": "Find the dot product of vectors a = (1, 2, 3) and b = (4, 5, 6)",
    "expected_answer": "32",
    "expected_topic": "linear_algebra"
  },
  {
    "id": 23,
    "topic": "linear_algebra",
    "difficulty": "medium",
    "question": "Find the cross product of vectors a = (1, 0, 0) and b = (0, 1, 0)",
    "expected_answer": "(0, 0, 1)",
    "expected_topic": "linear_algebra"
  },
  {
    "id": 24,
    "topic": "linear_algebra",
    "difficulty": "hard",
    "question": "For what value of k does the system x + y = 2, 2x + 2y = k have infinitely many solutions?",
    "expected_answer": "k = 4",
    "expected_topic": "linear_algebra"
  },
  {
    "id": 25,
    "topic": "linear_algebra",
    "difficulty": "medium",
    "question": "Find the inverse of the matrix [[1, 2], [3, 4]]",
    "expected_answer": "[[-2, 1], [3/2, -1/2]]",
    "expected_topic": "linear_algebra"
  }
]