Two-Part Analysis

132 questions

Question 81Question

A subscription service evaluates customer activity over a three-month period (k=1,2,3k = 1, 2, 3). At the end of each month kk, a customer's total loyalty points PkP_k update based on their points from the previous month Pk1P_{k-1} and the net points earned during month kk (Δk\Delta_k), according to the state transition rule:

Pk=0.8×Pk1+ΔkP_k = \lfloor 0.8 \times P_{k-1} \rfloor + \Delta_k

where x\lfloor x \rfloor represents the greatest integer less than or equal to xx.

At the end of Month 3 (k=3k = 3), membership tiers are assigned based on final points P3P_3:
- VIP Tier: P3150P_3 \ge 150
- Premium Tier: 80P3<15080 \le P_3 < 150
- Standard Tier: P3<80P_3 < 80

Match each initial customer profile (defined by initial points P0P_0 and monthly additions Δ1,Δ2,Δ3\Delta_1, \Delta_2, \Delta_3) to its corresponding final state at the end of Month 3.

Click a left item, then click its matching right item

Items

Profile 1: P0=100P_0 = 100; additions Δ1=50,Δ2=10,Δ3=40\Delta_1 = 50, \Delta_2 = 10, \Delta_3 = 40
Profile 2: P0=150P_0 = 150; additions Δ1=30,Δ2=40,Δ3=50\Delta_1 = 30, \Delta_2 = 40, \Delta_3 = 50
Profile 3: P0=90P_0 = 90; additions Δ1=0,Δ2=10,Δ3=20\Delta_1 = 0, \Delta_2 = 10, \Delta_3 = 20
Profile 4: P0=200P_0 = 200; additions Δ1=0,Δ2=10,Δ3=30\Delta_1 = 0, \Delta_2 = 10, \Delta_3 = 30

Matches

Show answer & explanation

Answer

Profile 1 matches Final Points: 131 (Premium Tier); Profile 2 matches Final Points: 178 (VIP Tier); Profile 3 matches Final Points: 73 (Standard Tier); Profile 4 matches Final Points: 140 (Premium Tier).
Each profile is evaluated by computing the exact state update Pk=0.8Pk1+ΔkP_k = \lfloor 0.8 \cdot P_{k-1} \rfloor + \Delta_k sequentially over three transitions. Profile 1 yields 131 points (Premium Tier), Profile 2 yields 178 points (VIP Tier), Profile 3 yields 73 points (Standard Tier), and Profile 4 yields 140 points (Premium Tier).

Step-by-Step Solution

1
Apply the state transition formula Pk=0.8×Pk1+ΔkP_k = \lfloor 0.8 \times P_{k-1} \rfloor + \Delta_k iteratively across months k=1,2,3k = 1, 2, 3 for Profile 1.
P1=80+50=130P_1 = 80 + 50 = 130; P2=104+10=114P_2 = 104 + 10 = 114; P3=91+40=131P_3 = 91 + 40 = 131. Tier: Premium.
Tracking sequential updates ensures each intermediate decay and point addition step is accounted for accurately.
2
Apply the state transition formula iteratively across months k=1,2,3k = 1, 2, 3 for Profile 2.
P1=120+30=150P_1 = 120 + 30 = 150; P2=120+40=160P_2 = 120 + 40 = 160; P3=128+50=178P_3 = 128 + 50 = 178. Tier: VIP.
Continuous accumulation and decay calculation determines the final state threshold reached.
3
Apply the state transition formula iteratively across months k=1,2,3k = 1, 2, 3 for Profile 3.
P1=72+0=72P_1 = 72 + 0 = 72; P2=57+10=67P_2 = 57 + 10 = 67; P3=53+20=73P_3 = 53 + 20 = 73. Tier: Standard.
Floor function truncation must be evaluated at each step prior to adding monthly points.
4
Apply the state transition formula iteratively across months k=1,2,3k = 1, 2, 3 for Profile 4.
P1=160+0=160P_1 = 160 + 0 = 160; P2=128+10=138P_2 = 128 + 10 = 138; P3=110+30=140P_3 = 110 + 30 = 140. Tier: Premium.
Evaluating high starting values shows how retention decay influences final tier classification.

Key Concept

Sequential state transitions with floor function decay and additive step updates
Question 82Question

A commercial roastery blends two batches of coffee beans, Batch A and Batch R. Batch A contains whole beans and cracked beans in a mass ratio of 7:37:3. Batch R contains whole beans and cracked beans in a mass ratio of 3:23:2. A roaster combines xx kilograms of Batch A with yy kilograms of Batch R to create an unroasted blend in which the overall mass ratio of whole beans to cracked beans is 13:713:7.

During the roasting process, moisture evaporation causes whole beans to lose 10%10\% of their mass and cracked beans to lose 20%20\% of their mass. If the total mass of the roasted blend is 346346 kilograms, what was the initial mass xx of Batch A, in kilograms?

Show answer & explanation

Answer: 200

Answer

The initial mass of Batch A (xx) is 200 kg.
The correct calculation shows that equal masses of Batch A and Batch R (x=yx = y) satisfy the combined unroasted ratio of 13:713:7. Applying the respective 10%10\% and 20%20\% mass losses for whole and cracked beans results in a total roasted mass factor of 1.73x1.73x. Equating 1.73x=3461.73x = 346 gives x=200x = 200 kg.

Step-by-Step Solution

1
Set up expressions for initial whole and cracked bean masses
Batch A has 0.7x0.7x kg whole and 0.3x0.3x kg cracked beans; Batch R has 0.6y0.6y kg whole and 0.4y0.4y kg cracked beans.
Ratios 7:37:3 and 3:23:2 convert directly to component fractions 7/10=0.77/10 = 0.7, 3/10=0.33/10 = 0.3 for A, and 3/5=0.63/5 = 0.6, 2/5=0.42/5 = 0.4 for R.
2
Equate the total component ratio to 13:713:7 to find the relationship between xx and yy
x=yx = y
Setting 0.7x+0.6y0.3x+0.4y=137\frac{0.7x + 0.6y}{0.3x + 0.4y} = \frac{13}{7} and cross-multiplying yields 4.9x+4.2y=3.9x+5.2y4.9x + 4.2y = 3.9x + 5.2y, simplifying to x=yx = y.
3
Apply roasting mass loss percentages to compute total roasted mass in terms of xx
Total roasted mass = 1.73x1.73x
Whole beans retain 90%90\% mass (0.90×1.3x=1.17x0.90 \times 1.3x = 1.17x) and cracked beans retain 80%80\% mass (0.80×0.7x=0.56x0.80 \times 0.7x = 0.56x). Summing yields 1.17x+0.56x=1.73x1.17x + 0.56x = 1.73x.
4
Solve for xx given total roasted mass of 346346 kg
x=200x = 200
Dividing 346346 by 1.731.73 yields 200200 kg.

Key Concept

Weighted average ratios combined with proportional percentage change
Question 83Question

An automated pharmaceutical freeze-drying facility uses two types of sublimation condensers, Unit Type A and Unit Type B, to process frozen liquid formulations into powder.

- Under standard mode, 4 units of Type A and 5 units of Type B operating simultaneously for 8 hours process a combined total of 5,120 kg5,120\text{ kg} of formulation.
- Under high-efficiency mode, the hourly processing rate of each Type A unit increases by 20%20\%, while the hourly processing rate of each Type B unit decreases by 15%15\%. When operating in high-efficiency mode, 3 units of Type A and 8 units of Type B running simultaneously for 5 hours process a combined total of 3,570 kg3,570\text{ kg} of formulation.

Select the hourly processing rate (in kg/hr) for a single Type A unit operating under high-efficiency mode, and the hourly processing rate (in kg/hr) for a single Type B unit operating under standard mode.

Click a left item, then click its matching right item

Items

Hourly processing rate of 1 Type A unit under high-efficiency mode (kg/hr)
Hourly processing rate of 1 Type B unit under standard mode (kg/hr)

Matches

Show answer & explanation

Answer

High-efficiency rate of Type A = 102 kg/hr; Standard rate of Type B = 60 kg/hr.
Solving the system of linear equations yields standard rates of 85 kg/hr85\text{ kg/hr} for Type A and 60 kg/hr60\text{ kg/hr} for Type B. Applying the 20%20\% increase to Type A gives 1.20×85=102 kg/hr1.20 \times 85 = 102\text{ kg/hr} for the high-efficiency Type A column, while the standard Type B column requires 60 kg/hr60\text{ kg/hr}.

Step-by-Step Solution

1
Define variables for the standard hourly rates of Type A and Type B units.
Let xx be the standard hourly processing rate of 1 Type A unit (in kg/hr), and let yy be the standard hourly processing rate of 1 Type B unit (in kg/hr).
Establishing individual unit rates allows setting up linear equations based on total mass processed.
2
Formulate the first linear equation using standard mode data.
Total hourly rate for 4 Type A and 5 Type B units is 4x+5y4x + 5y. Operating for 8 hours gives 8(4x+5y)=5,120    4x+5y=6408(4x + 5y) = 5,120 \implies 4x + 5y = 640.
Dividing total mass by hours yields the combined hourly processing capacity of the configuration.
3
Formulate the second linear equation using high-efficiency mode data.
High-efficiency Type A rate =1.20x= 1.20x, and high-efficiency Type B rate =0.85y= 0.85y.
For 3 Type A and 8 Type B units running 5 hours: 5(3(1.20x)+8(0.85y))=3,570    5(3.6x+6.8y)=3,570    3.6x+6.8y=7145(3(1.20x) + 8(0.85y)) = 3,570 \implies 5(3.6x + 6.8y) = 3,570 \implies 3.6x + 6.8y = 714.
Multiply by 10 to clear decimals: 36x+68y=7,140    9x+17y=1,78536x + 68y = 7,140 \implies 9x + 17y = 1,785.
Applying percentage rate modifications gives the adjusted unit rates for high-efficiency mode.
4
Solve the system of simultaneous linear equations for xx and yy.
From Equation 1 (4x+5y=6404x + 5y = 640), express x=6405y4x = \frac{640 - 5y}{4}.
Substitute into Equation 2 (9x+17y=1,7859x + 17y = 1,785):
9(6405y4)+17y=1,7859\left(\frac{640 - 5y}{4}\right) + 17y = 1,785
5,76045y+68y=7,1405,760 - 45y + 68y = 7,140
23y=1,380    y=6023y = 1,380 \implies y = 60.
Substituting y=60y = 60 back into 4x+5(60)=640    4x=340    x=854x + 5(60) = 640 \implies 4x = 340 \implies x = 85.
Using substitution resolves the two-variable system to find the standard rates.
5
Calculate the target quantities requested in the prompt.
Standard rate of Type B =y=60 kg/hr= y = 60\text{ kg/hr}.
High-efficiency rate of Type A =1.20x=1.20×85=102 kg/hr= 1.20x = 1.20 \times 85 = 102\text{ kg/hr}.
The question specifically asks for Type A's high-efficiency rate and Type B's standard rate.

Key Concept

Formulating and solving simultaneous multi-variable linear systems derived from work rate scenarios with non-standard modifiers.

Alternative Method

Clear the hourly rates immediately: Equation 1 gives combined rate 4x+5y=6404x + 5y = 640. Equation 2 gives 3.6x+6.8y=7143.6x + 6.8y = 714. Multiply Equation 1 by 0.90.9 to align xx-coefficients (3.6x+4.5y=5763.6x + 4.5y = 576), then subtract from Equation 2: 2.3y=138    y=602.3y = 138 \implies y = 60.
Estimated Time:2m 30s
Question 84Question

An international climate organization classifies regional sustainability projects into four distinct intervention tiers based on three quantitative indicators: Carbon Offset Potential (CC, in kilotons/yr), Community Impact Score (II, on a 1–100 scale), and Local Matching Funds (MM, as a percentage of total budget).

The evaluation criteria for the tiers are defined as follows:
- Tier A (Immediate Funding): Requires High Carbon Offset Potential (C50C \ge 50), High Community Impact Score (I75I \ge 75), AND Secured Matching Funds (M30%M \ge 30\%).
- Tier B (Technical Assistance): Requires High Community Impact Score (I75I \ge 75) AND Unsecured Matching Funds (M<30%M < 30\%), regardless of Carbon Offset Potential.
- Tier C (Co-Financing Mandatory): Requires High Carbon Offset Potential (C50C \ge 50) AND Secured Matching Funds (M30%M \ge 30\%), BUT Low Community Impact Score (I<75I < 75).
- Tier D (Deferred Review): Assigned to any project with Low Carbon Offset Potential (C<50C < 50) AND Low Community Impact Score (I<75I < 75), regardless of Matching Funds status.

Four specific projects are currently under review:
- Project Alpha: C=65C = 65, I=82I = 82, M=35%M = 35\%
- Project Beta: C=40C = 40, I=88I = 88, M=15%M = 15\%
- Project Gamma: C=55C = 55, I=60I = 60, M=40%M = 40\%
- Project Delta: C=30C = 30, I=50I = 50, M=45%M = 45\%

Match each project on the left to its correct intervention tier on the right.

Click a left item, then click its matching right item

Items

Project Alpha
Project Beta
Project Gamma
Project Delta

Matches

Show answer & explanation

Answer

Project Alpha matches Tier A (Immediate Funding); Project Beta matches Tier B (Technical Assistance); Project Gamma matches Tier C (Co-Financing Mandatory); Project Delta matches Tier D (Deferred Review).
Each project maps uniquely to its corresponding intervention tier by evaluating all three indicators (CC, II, MM) against the strict multi-attribute conditional rules defined in the prompt.

Step-by-Step Solution

1
Evaluate Project Alpha against the classification thresholds.
C=6550C = 65 \ge 50 (High), I=8275I = 82 \ge 75 (High), M=35%30%M = 35\% \ge 30\% (Secured).
All three conditions for Tier A (Immediate Funding) are satisfied.
2
Evaluate Project Beta against the classification thresholds.
C=40<50C = 40 < 50 (Low), I=8875I = 88 \ge 75 (High), M=15%<30%M = 15\% < 30\% (Unsecured).
High Community Impact combined with Unsecured Matching Funds uniquely triggers Tier B (Technical Assistance).
3
Evaluate Project Gamma against the classification thresholds.
C=5550C = 55 \ge 50 (High), I=60<75I = 60 < 75 (Low), M=40%30%M = 40\% \ge 30\% (Secured).
High Carbon Offset and Secured Matching Funds with a Low Community Impact Score satisfies the rule for Tier C (Co-Financing Mandatory).
4
Evaluate Project Delta against the classification thresholds.
C=30<50C = 30 < 50 (Low), I=50<75I = 50 < 75 (Low), M=45%30%M = 45\% \ge 30\% (Secured).
Both Carbon Offset and Community Impact fall below the high threshold, which triggers Tier D (Deferred Review) regardless of matching funds.

Key Concept

Multi-attribute conditional classification using strict decision rules and boundary conditions.
Question 85Question

A logistics company operates two types of delivery vehicles: Type X and Type Y.

- Each Type X vehicle carries 4040 packages and costs $300\$300 per trip.
- Each Type Y vehicle carries 2525 packages and costs $150\$150 per trip.

The company operates under a maximum daily budget of $3,300\$3,300. Additionally, due to fleet maintenance regulations, the number of Type Y vehicle trips cannot exceed twice the number of Type X vehicle trips.

Which combination of Type X and Type Y vehicle trips maximizes the total package delivery capacity while satisfying all daily budget and maintenance constraints?

Show answer & explanation

Answer: 6 Type X vehicles and 10 Type Y vehicles

Answer

6 Type X vehicles and 10 Type Y vehicles
The combination of 6 Type X vehicles and 10 Type Y vehicles strictly satisfies the budget constraint (300×6+150×10=33003300300 \times 6 + 150 \times 10 = 3300 \le 3300) and the maintenance constraint (102×6=1210 \le 2 \times 6 = 12). It produces a maximum valid package capacity of 490.

Step-by-Step Solution

1
Formulate the algebraic constraint inequalities
Budget constraint: 300X+150Y3300    2X+Y22300X + 150Y \le 3300 \implies 2X + Y \le 22. Maintenance constraint: Y2XY \le 2X.
Linear constraints define the feasible region for vehicle counts.
2
Express total capacity CC in terms of XX along the budget boundary
C=40X+25YC = 40X + 25Y. On the boundary Y=222XY = 22 - 2X, C=40X+25(222X)=55010XC = 40X + 25(22 - 2X) = 550 - 10X.
To maximize capacity, smaller values of XX along the boundary yield higher total capacity because Type Y provides more capacity per dollar.
3
Find the intersection of constraints to locate the optimal integer point
Setting Y=2XY = 2X into 2X+Y=222X + Y = 22 gives 4X=22    X=5.54X = 22 \implies X = 5.5. The smallest valid integer X5.5X \ge 5.5 satisfying Y=222X2XY = 22 - 2X \le 2X is X=6X = 6.
When X=6X = 6, Y=222(6)=10Y = 22 - 2(6) = 10. Checking maintenance: 102(6)=1210 \le 2(6) = 12 holds true.
4
Calculate the maximum capacity
C=40(6)+25(10)=240+250=490C = 40(6) + 25(10) = 240 + 250 = 490 packages.
This point (6,10)(6, 10) yields the maximum capacity satisfying all linear inequality constraints.

Key Concept

Linear Optimization under Bounded Constraints
Question 86Question

A logistics company operates two types of delivery drones: Model X and Model Y. Working continuously at their respective constant hourly rates, a fleet of 3 Model X drones and 5 Model Y drones delivers a total of 190 packages per hour. Alternatively, a fleet of 4 Model X drones and 2 Model Y drones delivers a total of 160 packages per hour. What is the hourly package delivery capacity of a single Model X drone?

Show answer & explanation

Answer: 30

Answer

The hourly package delivery capacity of a single Model X drone is 30 packages per hour.
By translating the problem into simultaneous linear equations, 3x+5y=1903x + 5y = 190 and 4x+2y=1604x + 2y = 160, simplifying the second equation gives 2x+y=802x + y = 80, so y=802xy = 80 - 2x. Substituting this into the first equation yields 3x+5(802x)=1903x + 5(80 - 2x) = 190, which reduces to 7x=210-7x = -210, giving x=30x = 30 packages per hour.

Step-by-Step Solution

1
Set up a system of two linear equations based on the rates of Model X (xx) and Model Y (yy).
System of equations:
(1) 3x+5y=1903x + 5y = 190
(2) 4x+2y=1604x + 2y = 160
Each statement provides a linear combination of the hourly output of the two drone types.
2
Express yy in terms of xx using the second equation.
2x+y=80    y=802x2x + y = 80 \implies y = 80 - 2x
Simplifying the second equation isolates yy easily for substitution.
3
Substitute the expression for yy into the first equation and solve for xx.
3x+5(802x)=190    3x+40010x=190    7x=210    x=303x + 5(80 - 2x) = 190 \implies 3x + 400 - 10x = 190 \implies -7x = -210 \implies x = 30
Solving the single-variable linear equation yields the precise capacity of Model X.

Key Concept

Solving Systems of Two Linear Equations with Two Unknowns
Estimated Time:1m 30s
Question 87Question

A specialty coffee roasting facility operates two roasting machines, Roaster X and Roaster Y, each producing roasted coffee beans at a constant hourly rate. On Monday, running Roaster X for 5 hours and Roaster Y for 4 hours yielded a total of 400 kg400\text{ kg} of roasted beans. On Tuesday, running Roaster X for 3 hours and Roaster Y for 7 hours yielded a total of 470 kg470\text{ kg} of roasted beans. Based on this information, match each quantity listed on the left with its corresponding value on the right.

Click a left item, then click its matching right item

Items

Hourly production rate of Roaster X
Hourly production rate of Roaster Y
Combined production output of Roaster X and Roaster Y operating together for 1 hour
Net difference between the output of Roaster Y running for 2 hours and Roaster X running for 1 hour

Matches

Show answer & explanation

Answer

Hourly production rate of Roaster X corresponds to 40 kg40\text{ kg}; Hourly production rate of Roaster Y corresponds to 50 kg50\text{ kg}; Combined production output of both roasters for 1 hour corresponds to 90 kg90\text{ kg}; Net difference between 2 hours of Roaster Y and 1 hour of Roaster X corresponds to 60 kg60\text{ kg}.
Formulating the system 5x+4y=4005x + 4y = 400 and 3x+7y=4703x + 7y = 470 and solving via elimination gives x=40 kg/hrx = 40\text{ kg/hr} for Roaster X and y=50 kg/hry = 50\text{ kg/hr} for Roaster Y. Consequently, the 1-hour combined output x+y=90 kgx + y = 90\text{ kg}, and the net difference 2yx=2(50)40=60 kg2y - x = 2(50) - 40 = 60\text{ kg}.

Step-by-Step Solution

1
Set up a system of linear equations using variables xx and yy for the hourly rates of Roaster X and Roaster Y.
Monday: 5x+4y=4005x + 4y = 400; Tuesday: 3x+7y=4703x + 7y = 470.
Total production equals the rate multiplied by time for each machine.
2
Eliminate variable xx by multiplying the first equation by 3 and the second equation by 5.
First equation becomes 15x+12y=120015x + 12y = 1200; second equation becomes 15x+35y=235015x + 35y = 2350.
Align coefficients of xx to eliminate xx by subtraction.
3
Subtract the modified first equation from the modified second equation to solve for yy.
23y = 1150 \implies y = 50\text{ kg/hr}$.
Simplifies the two-variable system to a single linear equation in yy.
4
Substitute y=50y = 50 back into 5x+4y=4005x + 4y = 400 to solve for xx.
5x + 4(50) = 400 \implies 5x + 200 = 400 \implies 5x = 200 \implies x = 40\text{ kg/hr}$.
Determines the rate of Roaster X.
5
Calculate the composite values for the remaining matching targets.
Combined output: x+y=40+50=90 kgx + y = 40 + 50 = 90\text{ kg}. Difference: 2yx=2(50)40=60 kg2y - x = 2(50) - 40 = 60\text{ kg}.
Evaluates expressions using solved individual variable values.

Key Concept

Solving systems of simultaneous linear equations in two variables.
Question 88Question

An agricultural institute evaluated a pilot program in a semi-arid region where farmers simultaneously introduced cover cropping (planting off-season vegetation) and upgraded to drip irrigation systems. Researchers observed a 30%30\% increase in soil moisture retention on participating farms and hypothesized that the cover cropping was the primary cause of the increased moisture retention.

Match each causal argument role on the left with the observational statement on the right that best fulfills that role.

Click a left item, then click its matching right item

Items

Statement representing the core observed correlation underlying the initial hypothesis
Statement providing an alternative causal explanation for the observed moisture increase
Statement providing evidence that strengthens the cover cropping causal hypothesis

Matches

Show answer & explanation

Answer

The core observed correlation matches the finding that soil moisture increased by 30%30\% on farms implementing both practices. The alternative causal explanation matches the finding that drip irrigation reduced evaporation across all farms regardless of cover crop usage. The statement strengthening the hypothesis matches the finding that farms adopting cover cropping without drip irrigation still experienced a 28%28\% moisture increase.
Matching the core correlation to the dual-implementation finding correctly identifies the baseline observational data. Matching the alternative causal explanation to the drip irrigation finding correctly identifies a confounding variable. Matching the strengthening evidence to the cover-cropping-only finding correctly isolates the hypothesized cause.

Step-by-Step Solution

1
Identify the initial observation and causal hypothesis in the argument stem.
The observed effect is a 30%30\% increase in soil moisture on farms that introduced both cover cropping and drip irrigation. The hypothesis claims cover cropping caused this effect.
Establishing the premise and claimed cause helps evaluate how external statements interact with the argument.
2
Evaluate the statement that represents the core observed correlation.
The statement describing the 30%30\% increase on dual-implementation farms directly states the initial empirical correlation.
The initial hypothesis was formed based on this specific dual-implementation data point.
3
Evaluate the statement introducing an alternative causal explanation.
The statement noting that drip irrigation reduced evaporation across all farms regardless of cover crop usage points to drip irrigation as the true cause of the moisture increase.
An alternative cause weakens a causal claim by showing that the outcome could have occurred due to a confounding factor rather than the hypothesized cause.
4
Evaluate the statement that strengthens the causal hypothesis.
The statement showing a 28%28\% increase on farms with cover cropping but without drip irrigation isolates the cover cropping variable.
Showing that the effect occurs when the hypothesized cause is present without the potential confounding factor (drip irrigation) strongly supports the causal link.

Key Concept

Evaluating Causal Arguments and Alternative Explanations
Question 89Question

An analytics firm processes data batches using two types of cloud computing instances: High-Memory Instances (MM) and High-Compute Instances (CC).

- Processing Capacity: Each High-Memory Instance processes 120120 thousand transactions per hour, and each High-Compute Instance processes 200200 thousand transactions per hour. The workload requires a total processing rate of at least 1,3201,320 thousand transactions per hour.
- Instance Availability: At most 1010 High-Memory Instances (M10M \le 10) and at most 66 High-Compute Instances (C6C \le 6) are available. At least 11 instance of each type must be used (M1M \ge 1 and C1C \ge 1).
- Load Balancing Constraint: To ensure infrastructure stability, the number of High-Memory Instances cannot exceed twice the number of High-Compute Instances (M2CM \le 2C).
- Operating Costs: High-Memory Instances cost $18\$18 per hour each, while High-Compute Instances cost $25\$25 per hour each.

Select the number of High-Memory Instances (MM) and the number of High-Compute Instances (CC) that minimize the total hourly operating cost while satisfying all operational requirements.

Click a left item, then click its matching right item

Items

Number of High-Memory Instances (MM)
Number of High-Compute Instances (CC)

Matches

Show answer & explanation

Answer

The minimum cost is achieved by selecting 1 High-Memory Instance (M=1M = 1) and 6 High-Compute Instances (C=6C = 6).
To minimize the total hourly cost subject to 3M+5C333M + 5C \ge 33, M2CM \le 2C, 1M101 \le M \le 10, and 1C61 \le C \le 6, testing all feasible integer boundary points shows that C=6C = 6 allows M=1M = 1 (since 3(1)+5(6)=333(1) + 5(6) = 33 and 12(6)1 \le 2(6) holds), producing the lowest cost of $168\$168. Thus, M=1M = 1 and C=6C = 6 are the optimal selections.

Step-by-Step Solution

1
Set up the objective function and mathematical constraints from the problem stem.
Objective: Minimize Cost=18M+25C\text{Cost} = 18M + 25C.
Constraints:
1) Throughput: 120M+200C1320    3M+5C33120M + 200C \ge 1320 \implies 3M + 5C \ge 33.
2) Availability: 1M101 \le M \le 10 and 1C61 \le C \le 6 (integers).
3) Load balancing: M2CM \le 2C.
Formulating the inequalities defines the boundary of feasible integer pairs (M,C)(M, C).
2
Test candidate integer boundary values for C{1,2,3,4,5,6}C \in \{1, 2, 3, 4, 5, 6\}.
- For C=1,2C = 1, 2: Maximum M2CM \le 2C yields 3(2C)+5C=11C3(2C) + 5C = 11C, giving max 1111 (for C=1C=1) and 2222 (for C=2C=2), both <33< 33 (infeasible).
- For C=3C = 3: M6M \le 6. 3M335(3)=18    M63M \ge 33 - 5(3) = 18 \implies M \ge 6. Min M=6M = 6. Cost =18(6)+25(3)=108+75=183= 18(6) + 25(3) = 108 + 75 = 183.
- For C=4C = 4: M8M \le 8. 3M335(4)=13    M53M \ge 33 - 5(4) = 13 \implies M \ge 5. Min M=5M = 5. Cost =18(5)+25(4)=90+100=190= 18(5) + 25(4) = 90 + 100 = 190.
- For C=5C = 5: M10M \le 10. 3M335(5)=8    M33M \ge 33 - 5(5) = 8 \implies M \ge 3. Min M=3M = 3. Cost =18(3)+25(5)=54+125=179= 18(3) + 25(5) = 54 + 125 = 179.
- For C=6C = 6: M10M \le 10. 3M335(6)=3    M13M \ge 33 - 5(6) = 3 \implies M \ge 1. Min M=1M = 1. Cost =18(1)+25(6)=18+150=168= 18(1) + 25(6) = 18 + 150 = 168.
Evaluating minimal feasible MM for each allowed CC identifies all vertex and boundary candidates.
3
Compare total cost across all valid candidate combinations.
The candidate pair (M=1,C=6)(M=1, C=6) yields the minimum operating cost of $168\$168, while satisfying 120(1)+200(6)=13201320120(1) + 200(6) = 1320 \ge 1320 and 12(6)1 \le 2(6).
Comparing all valid boundary points proves that M=1M=1 and C=6C=6 minimize cost under all constraints.

Key Concept

Optimization under Bounded Constraints
Question 90Question

A high-precision semiconductor fabrication plant operates two automated lithography processing lines, Line X and Line Y.

- Line X processes silicon wafers at a constant normal rate of rXr_X wafers per hour with a defect-free yield rate of 90%90\%.
- Line Y processes silicon wafers at a constant normal rate of rYr_Y wafers per hour with a defect-free yield rate of 80%80\%.
- When both lines operate simultaneously at their respective normal rates for 10 hours, they produce a combined total of 4,300 defect-free wafers.
- If Line X operates at 110%110\% of its normal processing rate while Line Y operates at 125%125\% of its normal processing rate, operating simultaneously for 10 hours yields a combined total of 4,970 defect-free wafers.

Which of the following paired values represents the normal processing rate for Line X (rXr_X) and the normal processing rate for Line Y (rYr_Y), in wafers per hour?

Show answer & explanation

Answer: Line X: 300 wafers/hr; Line Y: 200 wafers/hr

Answer

Line X: 300 wafers/hr; Line Y: 200 wafers/hr
The correct option gives Line X processing 300 wafers per hour and Line Y processing 200 wafers per hour. Under normal conditions, Line X outputs 300×0.90=270300 \times 0.90 = 270 defect-free wafers/hr and Line Y outputs 200×0.80=160200 \times 0.80 = 160 defect-free wafers/hr. In 10 hours, the total defect-free output is (270+160)×10=4,300(270 + 160) \times 10 = 4,300 wafers. Under the adjusted rates, Line X processes 300×1.10=330300 \times 1.10 = 330 wafers/hr (297297 defect-free) and Line Y processes 200×1.25=250200 \times 1.25 = 250 wafers/hr (200200 defect-free), yielding (297+200)×10=4,970(297 + 200) \times 10 = 4,970 defect-free wafers in 10 hours, satisfying both system constraints.

Step-by-Step Solution

1
Set up the linear equations for the defect-free hourly rates of Line X (rXr_X) and Line Y (rYr_Y).
The hourly defect-free output for Line X is 0.90rX0.90 r_X and for Line Y is 0.80rY0.80 r_Y. Over 10 hours, 10(0.90rX+0.80rY)=4,300    0.90rX+0.80rY=43010(0.90 r_X + 0.80 r_Y) = 4,300 \implies 0.90 r_X + 0.80 r_Y = 430. Multiplying by 10 gives Equation (1): 9rX+8rY=4,3009 r_X + 8 r_Y = 4,300.
Converting the 10-hour total output into hourly rate expressions establishes the first system equation.
2
Set up the linear equation for the altered processing rates.
Line X operates at 1.10rX1.10 r_X with 90%90\% yield, so its hourly defect-free rate is 0.90(1.10rX)=0.99rX0.90(1.10 r_X) = 0.99 r_X. Line Y operates at 1.25rY1.25 r_Y with 80%80\% yield, so its hourly defect-free rate is 0.80(1.25rY)=1.00rY0.80(1.25 r_Y) = 1.00 r_Y. Over 10 hours, 10(0.99rX+1.00rY)=4,970    0.99rX+1.00rY=49710(0.99 r_X + 1.00 r_Y) = 4,970 \implies 0.99 r_X + 1.00 r_Y = 497. Multiplying by 100 gives Equation (2): 99rX+100rY=49,70099 r_X + 100 r_Y = 49,700.
Applying the rate changes to each line yields the second system equation.
3
Solve the system of simultaneous linear equations.
From Equation (1), express rYr_Y in terms of rXr_X: 8rY=4,3009rX    100rY=12.5(4,3009rX)=53,750112.5rX8 r_Y = 4,300 - 9 r_X \implies 100 r_Y = 12.5(4,300 - 9 r_X) = 53,750 - 112.5 r_X. Substitute into Equation (2): 99rX+(53,750112.5rX)=49,700    13.5rX=49,70053,750=4,05099 r_X + (53,750 - 112.5 r_X) = 49,700 \implies -13.5 r_X = 49,700 - 53,750 = -4,050. Thus, rX=4,05013.5=300r_X = \frac{-4,050}{-13.5} = 300. Substituting rX=300r_X = 300 into Equation (1): 9(300)+8rY=4,300    2,700+8rY=4,300    8rY=1,600    rY=2009(300) + 8 r_Y = 4,300 \implies 2,700 + 8 r_Y = 4,300 \implies 8 r_Y = 1,600 \implies r_Y = 200.
Eliminating rYr_Y gives the exact unique values for the processing rates rX=300r_X = 300 wafers/hr and rY=200r_Y = 200 wafers/hr.

Key Concept

Simultaneous Rate and Percentage Equations in Two-Part Analysis
Question 91Question

A financial technology company's automated risk engine classifies flagged international wire transfers into three Compliance Escalation Tiers (Tier 1, Tier 2, or Tier 3) based on two parameters: Transaction Anomaly Score (SS), measured on a scale from 11 to 100100, and Counterparty Country Risk Index (RR), categorized as Low (R30R \le 30), Medium (30<R7030 < R \le 70), or High (R>70R > 70).

The engine applies the following hierarchical rules:
- Tier 1 (Immediate Hold): Assigned to any transaction with S80S \ge 80, or any transaction with R>70R > 70 EXCEPT when S<40S < 40 (which reassigns it to Tier 2).
- Tier 2 (Enhanced Verification): Assigned to any transaction not meeting Tier 1 criteria that satisfies at least one of the following conditions: S50S \ge 50, or Medium country risk (30<R7030 < R \le 70).
- Tier 3 (Standard Monitoring): Assigned to all remaining transactions.

A compliance officer evaluates two flagged transfers:
- Transaction Alpha: S=35S = 35, R=85R = 85
- Transaction Beta: S=85S = 85, R=25R = 25

Which of the following correctly pairs the Compliance Escalation Tiers for Transaction Alpha and Transaction Beta, respectively?

Show answer & explanation

Answer: Transaction Alpha: Tier 2; Transaction Beta: Tier 1

Answer

Transaction Alpha is classified as Tier 2, and Transaction Beta is classified as Tier 1.
Evaluating Transaction Alpha (S=35S = 35, R=85R = 85): although R=85>70R = 85 > 70, its Anomaly Score S=35<40S = 35 < 40 triggers the exception clause, placing it into Tier 2. Evaluating Transaction Beta (S=85S = 85, R=25R = 25): because S=8580S = 85 \ge 80, it satisfies the first sufficient condition for Tier 1. Thus, the correct pair is Transaction Alpha: Tier 2; Transaction Beta: Tier 1.

Step-by-Step Solution

1
Evaluate Tier 1 criteria for Transaction Alpha (S=35S = 35, R=85R = 85).
Country risk R=85>70R = 85 > 70 meets the general High risk condition for Tier 1. However, S=35<40S = 35 < 40, which triggers the stated exception ('EXCEPT when S<40S < 40, which reassigns it to Tier 2'). Therefore, Transaction Alpha is assigned to Tier 2.
Explicit conditional exceptions override general categorization rules in administrative decision logic.
2
Evaluate Tier 1 criteria for Transaction Beta (S=85S = 85, R=25R = 25).
The Anomaly Score S=8580S = 85 \ge 80. Since meeting S80S \ge 80 is sufficient on its own for Tier 1, Transaction Beta is assigned to Tier 1 regardless of its Low country risk (R=25R = 25).
Disjunctive (OR) rules mean satisfying any single sufficient condition qualifies the subject for that category.
3
Combine results to form the respective pair.
Transaction Alpha = Tier 2; Transaction Beta = Tier 1.
Matching the derived classifications in the correct ordered sequence (Alpha, Beta).

Key Concept

Categorical Sorting under Conditional Rules and Exceptions
Question 92Question

An airline engineering department classifies aircraft maintenance work orders to determine service queue priority based on three attributes: Safety Impact (Critical vs. Routine), Flight Hours Remaining until threshold (<50, 50–150, >150), and Prior Deferral History (Yes vs. No).

Queue priority is established according to the following strict precedence rules:
1. Work orders with a Critical Safety Impact take precedence over all work orders with a Routine Safety Impact.
2. For work orders with the same Safety Impact, priority is given to fewer Flight Hours Remaining (<50 outranks 50–150, which outranks >150).
3. If work orders have the same Safety Impact and fall into the same Flight Hours Remaining category, a work order with a Prior Deferral History (Yes) takes precedence over one without a Prior Deferral History (No).

Based on these rules, place the following four work orders in sequence from highest priority (first to be serviced) to lowest priority (last to be serviced).

Drag items to arrange them in the correct order

Show answer & explanation

Answer

Work Order Beta, followed by Work Order Alpha, then Work Order Gamma, and finally Work Order Delta.
The correct sequence sorts items strictly by the three-tier rule hierarchy. Primary sorting by Safety Impact places Critical items (Beta, Alpha, Gamma) ahead of Routine items (Delta). Secondary sorting by Flight Hours Remaining places <50 hr items (Beta, Alpha) ahead of 50–150 hr items (Gamma). Tertiary tie-breaking places the item with a prior deferral (Beta) ahead of the item without one (Alpha).

Step-by-Step Solution

1
Evaluate Primary Criterion (Safety Impact)
Work Orders Alpha, Beta, and Gamma have Critical Safety Impact, while Work Order Delta has Routine Safety Impact.
Rule 1 dictates that Critical Safety Impact outranks Routine Safety Impact regardless of other attributes, placing Work Order Delta at the lowest priority (Rank 4).
2
Evaluate Secondary Criterion (Flight Hours Remaining) for Critical items
Alpha and Beta both have 40 hours remaining (<50 bracket), whereas Gamma has 120 hours remaining (50–150 bracket).
Rule 2 dictates that <50 hours outranks 50–150 hours, placing Gamma behind both Alpha and Beta (Rank 3).
3
Evaluate Tertiary Criterion (Prior Deferral History) to break tie between Alpha and Beta
Beta has Prior Deferral: Yes, while Alpha has Prior Deferral: No.
Rule 3 dictates that a prior deferral takes precedence when Safety Impact and Flight Hours Remaining are tied, placing Beta at Rank 1 and Alpha at Rank 2.

Key Concept

Multi-attribute hierarchical categorization and tie-breaking sorting rules.
Question 93Question

An urban planning committee evaluated a 15% reduction in commercial building energy consumption across District Y following two concurrent initiatives: mandatory installation of smart thermostats in all commercial office buildings and a municipal public awareness campaign promoting voluntary off-peak energy conservation. The committee concluded that the voluntary awareness campaign was the primary driver of the reduction, reasoning that energy usage dropped most significantly during peak business hours when office workers were present in the buildings. Which of the following choices correctly pairs a statement that would MOST STRENGTHEN the committee's conclusion with a statement that would MOST WEAKEN it?

Show answer & explanation

Answer: Strengthen: A post-initiative survey showed that 80% of office workers in District Y manually adjusted thermostat settings during peak hours specifically due to campaign prompts. | Weaken: Smart thermostats installed under the mandatory program contained pre-programmed automated algorithms that reduced cooling draw during peak business hours regardless of occupant settings.

Answer

Strengthen: A post-initiative survey showed that 80% of office workers in District Y manually adjusted thermostat settings during peak hours specifically due to campaign prompts. | Weaken: Smart thermostats installed under the mandatory program contained pre-programmed automated algorithms that reduced cooling draw during peak business hours regardless of occupant settings.
The correct combination correctly matches the logical requirements for both roles. The strengthening statement provides direct empirical proof that office workers modified their behavior due to the campaign, confirming the proposed cause. The weakening statement establishes an alternative explanation—that default smart thermostat algorithms automatically reduced power usage—showing the energy drop would have occurred even without worker action under the voluntary campaign.

Step-by-Step Solution

1
Analyze the committee's causal conclusion and supporting evidence.
Conclusion: Voluntary awareness campaign -> 15% energy reduction. Premise: Energy dropped during peak hours when workers were present.
To evaluate causal arguments, we must isolate the claimed cause (voluntary campaign) from concurrent potential causes (smart thermostat mandate).
2
Identify a statement that strengthens the causal link.
Evidence demonstrating that workers actively changed thermostat behavior in response to the campaign directly strengthens the claimed cause.
Direct empirical evidence linking the cause to the effect confirms the causal mechanism.
3
Identify a statement that weakens the causal link.
Evidence showing that the mandatory smart thermostats automatically lowered energy consumption during peak hours regardless of human action weakens the conclusion.
Providing an alternative explanation (automation) accounts for the observed outcome without requiring the voluntary campaign.

Key Concept

Evaluating Causal Claims and Alternative Explanations in Two-Part Arguments
Estimated Time:2m 0s
Question 94Question

A commercial greenhouse allocates integer numbers of acres to grow two high-yield crops: Organic Tomatoes (TT) and Hydroponic Cucumbers (CC). The operational parameters and constraints are as follows:

- Each acre of Tomatoes requires 33 units of water per day and 44 units of fertilizer per week, producing a net revenue of $1,200\$1,200 per week.
- Each acre of Cucumbers requires 55 units of water per day and 22 units of fertilizer per week, producing a net revenue of $1,000\$1,000 per week.
- Total daily water usage across both crops cannot exceed 4545 units.
- Total weekly fertilizer usage across both crops cannot exceed 3636 units.
- To fulfill distributor agreements, the total cultivated area (T+CT + C) must be at least 1010 acres.

Which of the following crop allocation pairs (T,C)(T, C) maximizes total weekly net revenue while satisfying all operational constraints?

Show answer & explanation

Answer: 77 acres of Tomatoes and 44 acres of Cucumbers

Answer

The optimal crop allocation is 7 acres of Tomatoes and 4 acres of Cucumbers, yielding a maximum weekly revenue of $12,400.
The allocation of 7 acres of Tomatoes and 4 acres of Cucumbers fully respects all three operational boundaries: daily water (41 out of 45 units), weekly fertilizer (36 out of 36 units), and total cultivated area (11 acres, meeting the minimum threshold of 10 acres). It produces the highest valid weekly revenue of $12,400.

Step-by-Step Solution

1
Formulate the mathematical model from the context
Maximize Revenue R=1200T+1000CR = 1200T + 1000C subject to:
1) Water constraint: 3T+5C453T + 5C \le 45
2) Fertilizer constraint: 4T+2C36    2T+C184T + 2C \le 36 \implies 2T + C \le 18
3) Land constraint: T+C10T + C \ge 10
4) Integer constraints: T,CZ0T, C \in \mathbb{Z}_{\ge 0}
Establishing explicit linear inequality bounds and the objective function is required for constrained optimization.
2
Evaluate feasible integer boundary points near the intersection of joint constraints
Testing boundary candidate pairs:
- At T=7,C=4T = 7, C = 4: Water =3(7)+5(4)=4145= 3(7)+5(4) = 41 \le 45, Fertilizer =4(7)+2(4)=3636= 4(7)+2(4) = 36 \le 36, Area =1110= 11 \ge 10. Feasible! Revenue =1200(7)+1000(4)=$12,400= 1200(7) + 1000(4) = \$12,400.
- At T=8,C=2T = 8, C = 2: Water =3445= 34 \le 45, Fertilizer =3636= 36 \le 36, Area =1010= 10 \ge 10. Feasible! Revenue =1200(8)+1000(2)=$11,600= 1200(8) + 1000(2) = \$11,600.
- At T=6,C=5T = 6, C = 5: Water =4345= 43 \le 45, Fertilizer =3436= 34 \le 36, Area =1110= 11 \ge 10. Feasible! Revenue =1200(6)+1000(5)=$12,200= 1200(6) + 1000(5) = \$12,200.
Systematic evaluation of feasible integer boundary points identifies the combination that maximizes net revenue.
3
Verify that higher revenue candidates violate joint system bounds
Checking candidate (8,3)(8, 3): Revenue would be $12,600\$12,600, but Fertilizer =4(8)+2(3)=38>36= 4(8) + 2(3) = 38 > 36 (infeasible).
Ensures that candidates yielding higher revenue are invalid due to joint constraint violations.

Key Concept

Optimization under Bounded Linear Constraints
Estimated Time:2m 30s
Question 95Question

An algorithmic trading firm executes orders using two automated execution venues, Venue X and Venue Y. Venue X processes orders at a constant rate of RXR_X orders per second with an execution slippage rate of 2%2\%. Venue Y processes orders at a constant rate of RYR_Y orders per second with an execution slippage rate of 5%5\%.

During a 1010-minute trading window when both venues operate simultaneously and continuously, a total of 18,00018,000 orders are processed, and the overall combined slippage rate across all orders processed by both venues is 3%3\%.

Based on the given information, which of the following correctly identifies the order processing rate for Venue X (RXR_X, in orders per second) and Venue Y (RYR_Y, in orders per second)?

Show answer & explanation

Answer: Venue X rate: 20 orders per second; Venue Y rate: 10 orders per second

Answer

Venue X rate: 20 orders per second; Venue Y rate: 10 orders per second
The correct answer specifies Venue X rate as 20 orders per second and Venue Y rate as 10 orders per second. Over 600 seconds, Venue X processes 12,000 orders (yielding 240 slipped orders at 2%) and Venue Y processes 6,000 orders (yielding 300 slipped orders at 5%). The total volume of 18,000 orders produces 540 slipped orders, which exactly equals a 3% overall slippage rate.

Step-by-Step Solution

1
Convert time window to seconds and establish total processing rate
Time T=10 minutes=600 secondsT = 10 \text{ minutes} = 600 \text{ seconds}. Combined rate RX+RY=18,000600=30 orders/secondR_X + R_Y = \frac{18,000}{600} = 30 \text{ orders/second}.
Processing rates are requested in orders per second, so total volume must be divided by total seconds.
2
Set up weighted average slippage equation
Total slipped orders = 3%×18,000=5403\% \times 18,000 = 540. Let NXN_X be total orders from X and NYN_Y be total orders from Y. 0.02NX+0.05NY=5400.02 N_X + 0.05 N_Y = 540.
The sum of slipped orders from both venues equals the overall combined slipped orders.
3
Solve simultaneous linear system for total order volumes NXN_X and NYN_Y
Substitute NX=18,000NYN_X = 18,000 - N_Y: 0.02(18,000NY)+0.05NY=540    360+0.03NY=540    0.03NY=180    NY=6,0000.02(18,000 - N_Y) + 0.05 N_Y = 540 \implies 360 + 0.03 N_Y = 540 \implies 0.03 N_Y = 180 \implies N_Y = 6,000. Thus NX=12,000N_X = 12,000.
Algebraic elimination isolated NYN_Y and NXN_X order volumes.
4
Determine individual processing rates RXR_X and RYR_Y
RX=12,000600=20 orders/secondR_X = \frac{12,000}{600} = 20 \text{ orders/second} and RY=6,000600=10 orders/secondR_Y = \frac{6,000}{600} = 10 \text{ orders/second}.
Dividing each venue's total order volume by 600 seconds yields its constant rate.

Key Concept

Weighted Average Ratios and Simultaneous Rate Equations
Question 96Question

A biopharmaceutical processing plant uses three ultrafiltration units—Unit A, Unit B, and Unit C—to extract an active therapeutic protein from a 3,000-liter3,000\text{-liter} batch of liquid culture media. The liquid media contains 5%5\% active protein solute by volume. The operational specifications for each unit are as follows:

- Unit A: Processes raw media at a rate of 150 liters/hour150\text{ liters/hour} with a protein solute recovery efficiency of 80%80\%.
- Unit B: Processes raw media at a rate of 200 liters/hour200\text{ liters/hour} with a protein solute recovery efficiency of 85%85\%.
- Unit C: Processes raw media at a rate of 400 liters/hour400\text{ liters/hour} with a protein solute recovery efficiency of 70%70\%.

The batch is processed in two sequential stages:
- Stage 1: Units A and B operate simultaneously for exactly 6 hours6\text{ hours}.
- Stage 2: Unit A is shut down, and Units B and C operate simultaneously to process all remaining liquid media from the 3,000-liter3,000\text{-liter} batch.

Match each operational outcome on the left with its corresponding calculated value on the right.

Click a left item, then click its matching right item

Items

Total volume of raw culture media processed by Unit B across both stages
Duration of Stage 2 required to process the remaining batch
Overall solute recovery percentage for the entire 3,000-liter3,000\text{-liter} batch
Total volume of solute recovered by Unit A during the operation

Matches

Show answer & explanation

Answer

The correct pairings match the operational outcomes as follows: Total volume processed by Unit B matches 1,500 liters1,500\text{ liters}; Duration of Stage 2 matches 1.5 hours1.5\text{ hours}; Overall solute recovery percentage matches 80.5%80.5\%; Total solute recovered by Unit A matches 36.0 liters36.0\text{ liters}.
Each calculation requires tracking both raw liquid flow rates and solute concentration extraction efficiencies across two operational phases. Unit A operates only in Stage 1 (6 hours6\text{ hours}), processing 900 liters900\text{ liters} of media containing 45 liters45\text{ liters} of solute and recovering 80%80\%, which equals 36.0 liters36.0\text{ liters}. The combined intake of Units A and B in Stage 1 is 2,100 liters2,100\text{ liters}, leaving 900 liters900\text{ liters} for Stage 2. Units B and C process the remaining volume at a combined rate of 600 L/hr600\text{ L/hr}, requiring 1.5 hours1.5\text{ hours}. Over both stages, Unit B processes 1,200+300=1,500 liters1,200 + 300 = 1,500\text{ liters}. Total solute recovered by all units equals 36.0+51.0+12.75+21.0=120.75 liters36.0 + 51.0 + 12.75 + 21.0 = 120.75\text{ liters} out of 150 liters150\text{ liters} total solute, which gives an overall recovery percentage of 80.5%80.5\%.

Step-by-Step Solution

1
Calculate Stage 1 processing volumes and solute recovery for Units A and B.
In Stage 1 (6 hours6\text{ hours}): Unit A processes 150×6=900 L150 \times 6 = 900\text{ L} and recovers 900×0.05×0.80=36.0 L900 \times 0.05 \times 0.80 = 36.0\text{ L} of solute. Unit B processes 200×6=1,200 L200 \times 6 = 1,200\text{ L} and recovers 1,200×0.05×0.85=51.0 L1,200 \times 0.05 \times 0.85 = 51.0\text{ L} of solute. Total raw media processed in Stage 1 = 2,100 liters2,100\text{ liters}.
Establishes baseline volumes completed before Stage 2 begins.
2
Determine the remaining volume and the duration of Stage 2.
Remaining volume = 3,0002,100=900 liters3,000 - 2,100 = 900\text{ liters}. Combined processing rate of Units B and C = 200+400=600 L/hr200 + 400 = 600\text{ L/hr}. Stage 2 duration = 900/600=1.5 hours900 / 600 = 1.5\text{ hours}.
Quantifies the time required for Stage 2 based on joint processing rates.
3
Calculate Stage 2 processing volumes and solute recovery for Units B and C.
In Stage 2 (1.5 hours1.5\text{ hours}): Unit B processes 200×1.5=300 L200 \times 1.5 = 300\text{ L} and recovers 300×0.05×0.85=12.75 L300 \times 0.05 \times 0.85 = 12.75\text{ L} of solute. Unit C processes 400×1.5=600 L400 \times 1.5 = 600\text{ L} and recovers 600×0.05×0.70=21.0 L600 \times 0.05 \times 0.70 = 21.0\text{ L} of solute.
Determines Unit B's second-stage contribution and Unit C's total output.
4
Calculate total volume processed by Unit B and cumulative solute recovery efficiency.
Total raw media processed by Unit B = 1,200+300=1,500 liters1,200 + 300 = 1,500\text{ liters}. Total solute recovered by all units = 36.0+51.0+12.75+21.0=120.75 liters36.0 + 51.0 + 12.75 + 21.0 = 120.75\text{ liters}. Total solute initially present in the batch = 3,000×0.05=150 liters3,000 \times 0.05 = 150\text{ liters}. Overall recovery efficiency = (120.75/150)×100%=80.5%(120.75 / 150) \times 100\% = 80.5\%.
Synthesizes multi-stage outputs to obtain total system efficiency metrics.

Key Concept

Sequential multi-stage work rates, solute mass-balance calculations, and weighted percentage recovery efficiency.
Question 97Question

An automated server optimization pipeline adjusts cache memory CC (in megabytes) and latency LL (in milliseconds) across three sequential cycles (k=1,2,3k = 1, 2, 3). The initial values at cycle 00 are C0=100C_0 = 100 MB and L0=50L_0 = 50 ms. The state transitions occur according to the following rules:

- Cycle 1 (k=1k = 1): C1=C0+20C_1 = C_0 + 20, and L1=L00.2×C0L_1 = L_0 - 0.2 \times C_0.
- Cycle 2 (k=2k = 2): If L135L_1 \le 35, then C2=C130C_2 = C_1 - 30 and L2=L1+10L_2 = L_1 + 10; otherwise, C2=C1+10C_2 = C_1 + 10 and L2=L15L_2 = L_1 - 5.
- Cycle 3 (k=3k = 3): If C2<100C_2 < 100, then C3=1.5×C2C_3 = 1.5 \times C_2 and L3=L215L_3 = L_2 - 15; otherwise, C3=C2+20C_3 = C_2 + 20 and L3=L2+5L_3 = L_2 + 5.

Which of the following statements regarding the system metrics across these cycles are true? Select all that apply.

Select all that apply

Show answer & explanation

Answer: At the end of Cycle 1, the latency metric L1L_1 is equal to 3030 ms.; At the end of Cycle 3, the cache memory C3C_3 is equal to 135135 MB.; The net change in cache memory from Cycle 0 to Cycle 3 (C3C0C_3 - C_0) is 3535 MB.

Answer

The statements asserting that L1=30L_1 = 30 ms at the end of Cycle 1, C3=135C_3 = 135 MB at the end of Cycle 3, and the net change in cache memory C3C0=35C_3 - C_0 = 35 MB are correct.
The calculation reveals the complete sequence of state pairs (Ck,Lk)(C_k, L_k): (100,50)(120,30)(90,40)(135,25)(100, 50) \rightarrow (120, 30) \rightarrow (90, 40) \rightarrow (135, 25). Therefore, at Cycle 1, L1=30L_1 = 30 ms is true. At Cycle 3, C3=135C_3 = 135 MB is true. Finally, the net difference C3C0=135100=35C_3 - C_0 = 135 - 100 = 35 MB is also true.

Step-by-Step Solution

1
Calculate state values at Cycle 1 (k=1k=1)
C1=100+20=120C_1 = 100 + 20 = 120 MB, and L1=500.2×100=30L_1 = 50 - 0.2 \times 100 = 30 ms.
Direct evaluation of the Cycle 1 transition equations starting from C0=100C_0 = 100 and L0=50L_0 = 50.
2
Evaluate condition and calculate state values at Cycle 2 (k=2k=2)
Since L1=3035L_1 = 30 \le 35 is true, C2=12030=90C_2 = 120 - 30 = 90 MB and L2=30+10=40L_2 = 30 + 10 = 40 ms.
The condition L135L_1 \le 35 is satisfied, requiring the application of the primary branch.
3
Evaluate condition and calculate state values at Cycle 3 (k=3k=3)
Since C2=90<100C_2 = 90 < 100 is true, C3=1.5×90=135C_3 = 1.5 \times 90 = 135 MB and L3=4015=25L_3 = 40 - 15 = 25 ms.
The condition C2<100C_2 < 100 is satisfied, triggering the multiplicative increase in cache memory.
4
Verify overall net change and evaluate all option statements
C3C0=135100=35C_3 - C_0 = 135 - 100 = 35 MB. Statements matching L1=30L_1 = 30 ms, C3=135C_3 = 135 MB, and net change =35= 35 MB are true.
Compares calculated metrics against each provided statement.

Key Concept

Multi-stage conditional state transitions and sequential numerical processing
Question 98Question

A research laboratory is formulating a daily dosage protocol for a clinical trial combining two therapeutics, Drug A (AA) and Drug B (BB), measured in integer milligrams (mg).

The trial protocol specifies the following operational constraints:
- The daily dosage of Drug A must be at least 10 mg10\text{ mg} and at most 40 mg40\text{ mg} (10A4010 \leq A \leq 40).
- The daily dosage of Drug B must be at least 15 mg15\text{ mg} and at most 50 mg50\text{ mg} (15B5015 \leq B \leq 50).
- To prevent hepatotoxicity, the combined daily dosage (A+B)(A + B) cannot exceed 65 mg65\text{ mg} (A+B65A + B \leq 65).
- To ensure therapeutic efficacy, the dosage of Drug B must be at least 10 mg10\text{ mg} less than twice the dosage of Drug A (B2A10B \geq 2A - 10).

The total treatment efficacy score EE is modeled by the linear function E=3A+4BE = 3A + 4B.

Based on the constraints above, select the daily dosage for Drug A and the daily dosage for Drug B that together maximize the total treatment efficacy score EE.

Click a left item, then click its matching right item

Items

Daily Dosage of Drug A (mg)
Daily Dosage of Drug B (mg)

Matches

Show answer & explanation

Answer

The optimal daily dosage is 15 mg for Drug A and 50 mg for Drug B, yielding a maximum total efficacy score of 245.
Because Drug B contributes +4+4 points per milligram to efficacy while Drug A contributes +3+3 points per milligram, maximizing Drug B to its upper limit of 50 mg provides the largest gain in total score. Given B=50 mgB = 50\text{ mg}, the combined toxicity limit A+B65 mgA + B \leq 65\text{ mg} restricts Drug A to at most 15 mg15\text{ mg}. Testing (A,B)=(15,50)(A, B) = (15, 50) satisfies all individual and joint constraints (151015 \geq 10, 502(15)10=2050 \geq 2(15) - 10 = 20), yielding the maximum overall score of 245245.

Step-by-Step Solution

1
Identify the objective function and system of linear inequalities.
Objective: Maximize E=3A+4BE = 3A + 4B subject to 10A4010 \leq A \leq 40, 15B5015 \leq B \leq 50, A+B65A + B \leq 65, and 2AB102A - B \leq 10.
Establishing the mathematical model allows systematically evaluating boundary vertices.
2
Analyze the objective function weights to determine optimization direction.
Drug B has a higher coefficient (+4+4) than Drug A (+3+3).
Increasing BB yields a greater increase in total efficacy EE per milligram than increasing AA, so BB should be made as large as allowed by constraints.
3
Test the maximum individual bound for Drug B.
Setting B=50B = 50 (its maximum bound), the toxicity constraint becomes A+5065    A15A + 50 \leq 65 \implies A \leq 15.
Determining the largest feasible AA given the maximal value of BB maximizes 3A+4(50)3A + 4(50).
4
Verify all secondary constraints at candidate point (A,B)=(15,50)(A, B) = (15, 50).
1) 10154010 \leq 15 \leq 40 (Satisfied)
2) 15505015 \leq 50 \leq 50 (Satisfied)
3) 15+50=656515 + 50 = 65 \leq 65 (Satisfied)
4) 502(15)10=2050 \geq 2(15) - 10 = 20 (Satisfied)
Total Efficacy: E=3(15)+4(50)=45+200=245E = 3(15) + 4(50) = 45 + 200 = 245.
Ensures the corner candidate point is fully compliant with every given restriction.
5
Compare against alternative valid vertex candidates.
Candidate (10,50)    E=30+200=230(10, 50) \implies E = 30 + 200 = 230.
Candidate (25,40)    E=75+160=235(25, 40) \implies E = 75 + 160 = 235.
Candidate (40,25)    E=120+100=220(40, 25) \implies E = 120 + 100 = 220.
Confirms that (15,50)(15, 50) yields the maximum value among all feasible integer combinations.

Key Concept

Optimization under Linear Inequality Bounded Constraints
Question 99Question

A logistics company evaluated three heavy-duty electric cargo vehicles—Truck X, Truck Y, and Truck Z���operating under distinct cargo loads and distances. Match each truck to its corresponding energy consumption rate expressed in kilowatt-hours (kWh) per ton-mile.

- Truck X: Transported a 1010-ton payload over a distance of 150150 miles, consuming a total of 300300 kWh of energy.
- Truck Y: Transported a 55-ton payload over a distance of 200200 miles, consuming a total of 300300 kWh of energy.
- Truck Z: Transported an 88-ton payload over a distance of 100100 miles, consuming a total of 400400 kWh of energy.

Click a left item, then click its matching right item

Items

Truck X (1010-ton payload, 150150 miles, 300300 kWh total)
Truck Y (55-ton payload, 200200 miles, 300300 kWh total)
Truck Z (88-ton payload, 100100 miles, 400400 kWh total)

Matches

Show answer & explanation

Answer

Truck X matches with 0.200.20 kWh per ton-mile, Truck Y matches with 0.300.30 kWh per ton-mile, and Truck Z matches with 0.500.50 kWh per ton-mile.
To find the rate per ton-mile for each vehicle, calculate total ton-miles by multiplying payload weight by distance, then divide total energy consumption in kWh by total ton-miles. For Truck X: 300/(10×150)=0.20300 / (10 \times 150) = 0.20 kWh/ton-mile. For Truck Y: 300/(5×200)=0.30300 / (5 \times 200) = 0.30 kWh/ton-mile. For Truck Z: 400/(8×100)=0.50400 / (8 \times 100) = 0.50 kWh/ton-mile.

Step-by-Step Solution

1
Calculate total ton-miles for each vehicle
Truck X: 10 tons×150 miles=1,500 ton-miles10 \text{ tons} \times 150 \text{ miles} = 1,500 \text{ ton-miles}. Truck Y: 5 tons×200 miles=1,000 ton-miles5 \text{ tons} \times 200 \text{ miles} = 1,000 \text{ ton-miles}. Truck Z: 8 tons×100 miles=800 ton-miles8 \text{ tons} \times 100 \text{ miles} = 800 \text{ ton-miles}.
Ton-miles measure total transport work performed (payload mass multiplied by distance).
2
Compute energy rate per ton-mile for each vehicle
Truck X rate: 300 kWh1,500 ton-miles=0.20 kWh/ton-mile\frac{300 \text{ kWh}}{1,500 \text{ ton-miles}} = 0.20 \text{ kWh/ton-mile}. Truck Y rate: 300 kWh1,000 ton-miles=0.30 kWh/ton-mile\frac{300 \text{ kWh}}{1,000 \text{ ton-miles}} = 0.30 \text{ kWh/ton-mile}. Truck Z rate: 400 kWh800 ton-miles=0.50 kWh/ton-mile\frac{400 \text{ kWh}}{800 \text{ ton-miles}} = 0.50 \text{ kWh/ton-mile}.
Dividing total energy consumed by total ton-miles gives the unit rate per ton-mile.
3
Map each truck to its matching energy rate
Truck X maps to 0.200.20 kWh per ton-mile; Truck Y maps to 0.300.30 kWh per ton-mile; Truck Z maps to 0.500.50 kWh per ton-mile.
Align each calculated rate with the corresponding item in the right-hand column.

Key Concept

Calculating work-based unit rates (rate = quantity / (payload × distance)).
Estimated Time:1m 30s
Question 100Question

A pharmaceutical facility uses automated Line Alpha and Line Beta to package liquid medicine vials.

- Line Alpha packages vials at a constant rate of 200200 vials per hour.
- Line Beta packages vials at a constant rate that is 50%50\% greater than the rate of Line Alpha.

During a production shift, Line Alpha operates for 99 hours. Line Beta operates for a duration such that Line Alpha's output accounts for 30%30\% of the total combined vial output of both lines during the shift.

Which of the following choices correctly identifies the total number of hours Line Beta operated and the total number of vials packaged by Line Beta during the shift?

Show answer & explanation

Answer: Line Beta Operating Time = 14 hours; Line Beta Total Vials = 4,200 vials

Answer

Line Beta operated for 14 hours and packaged 4,200 vials during the shift.
The correct answer accurately determines both required quantities. Line Alpha packages 200×9=1,800200 \times 9 = 1,800 vials. Since 1,8001,800 represents 30%30\% of the shift's total output, the total output is 1,800/0.30=6,0001,800 / 0.30 = 6,000 vials. Line Beta accounts for the remaining 6,0001,800=4,2006,000 - 1,800 = 4,200 vials. At Line Beta's rate of 200×1.5=300200 \times 1.5 = 300 vials per hour, its operating time is 4,200/300=144,200 / 300 = 14 hours.

Step-by-Step Solution

1
Calculate Line Beta's hourly packaging rate.
Line Beta Rate = 200×1.50=300200 \times 1.50 = 300 vials per hour.
Line Beta operates at a rate 50%50\% greater than Line Alpha's rate of 200200 vials/hr.
2
Calculate Line Alpha's total vial output during the shift.
Line Alpha Output = 200 vials/hr×9 hrs=1,800200 \text{ vials/hr} \times 9 \text{ hrs} = 1,800 vials.
Line Alpha runs for 99 hours at a constant rate of 200200 vials/hr.
3
Determine the total combined vial output of both lines.
Total Combined Output = 1,8000.30=6,000\frac{1,800}{0.30} = 6,000 vials.
Line Alpha's output of 1,8001,800 vials represents 30%30\% of the total combined output.
4
Calculate Line Beta's individual vial output.
Line Beta Output = 6,0001,800=4,2006,000 - 1,800 = 4,200 vials.
Line Beta produces the remaining 70%70\% of the total combined output.
5
Calculate Line Beta's total operating time.
Line Beta Operating Time = 4,200 vials300 vials/hr=14\frac{4,200 \text{ vials}}{300 \text{ vials/hr}} = 14 hours.
Dividing Line Beta's total output by its hourly rate gives the operating time.

Key Concept

Two-Part Analysis combining relative work rates and percentage allocation
PreviousPage 5 / 7Next
Two-Part Analysis Practice Questions — GMAT — Page 5 | Examkin