Example problems
Here are examples from different training steps. Early questions are often underspecified or invalid;
later generations become cleaner, more constrained, and span a wider range of reasoning topics.
invalidstep 0solve rate 0.25
A concert venue charges an admission price per seat and also offers a VIP ticket package that includes food, drinks, and other perks. If the food and other perks are included in the VIP ticket price and are worth $10 per person, and a group of friends want to buy the same number of VIP tickets as they would with regular tickets, what is the minimum admission price per regular ticket to make the total cost of the VIP tickets equal to or less than the total cost of the regular tickets?
Why invalid: the VIP ticket price is never given, so the answer is undetermined. Early training is full of these.
invalidstep 0solve rate 0.125
Consider two positive integers m and n (m >= n). Given a 2x2 matrix of numbers where each element is a non-negative integer, find the maximum value of ax^2 + by^2 + cxy, where a, b, c are constants, subject to the constraint that the sum of any two elements in each row and column of the matrix are equal. What is the maximum possible value of ax^2 + by^2 + cxy?
Why invalid: a, b, c are unspecified, m, n are unused, and the optimisation is not bounded.
validstep 124solve rate 0.375
A farmer has 10 different types of vegetables to store in a warehouse with 1,000 m2 of floor space. Four container sizes are available (5/10/15/20 m2, with caps of 50/40/30/25). Bulky vegetables need at least 15 m2 containers; medium need at least 10 m2; small fit anywhere. Each vegetable type must be in at least one container. What is the maximum number of containers that can be used while satisfying all constraints and not exceeding 1,000 m2 total?
Now valid: a bounded optimisation problem with explicit constraints.
validstep 156solve rate 0.375
Find the equation of the curve y = f(x) where the derivative is given by f'(x) = (3x^2 - x - 2) / 2x and the curve passes through the point (2, 3).
A clean calculus problem requiring antiderivatives and a boundary condition.
validstep 172solve rate 0.50
A golfer hits a ball from the top of a 50-meter high cliff with an initial velocity of 30 m/s at an angle of 45 degrees above the horizontal. What is the horizontal distance traveled by the ball when it hits the ground?
Projectile motion: trigonometry plus physics, outside the original arithmetic seed.
validstep 188solve rate 0.25
Consider a randomly ordered sequence of n = 3q distinct integers. Let f be the number of adjacent pairs sharing the same remainder mod 3. If the integers 1..3q are randomly permuted, what is the expected value of f?
A harder probability problem involving expectations over permutation statistics.