{ "question": "Pat has a flower bed that is 111 feet long. Pat wants to fill her flower bed with plants. Pat's flowers grow 12 inches wide so she needs to leave 1.5 feet between every plant. Pat already owns 17 flowers. Each flowering plant costs $6 at the store, how much money will Pat spend at the store to fill up her flower bed?", "answer": "Pat's flower bed is 111 feet / 1.5 feet per plant = <<111/1.5=74>>74 plants needed.\nPat needs to buy 74 plants - 17 plants = <<74-17=57>>57 plants needed to purchase.\nPat will spend 57 plants * $6 = $<<57*6=342>>342.\n#### 342", "id_orig": 984, "id_shuffled": 45, "question_annotated": "{name,Pat} has a flower bed that is {length,111} {unit_length,feet} long. {name,Pat} wants to fill her flower bed with plants. {name,Pat}'s flowers grow {plant_width,12} {unit_length,feet} wide so she needs to leave {space,1.5} {unit_length,feet} between every plant. {name,Pat} already owns {owned,17} flowers. Each flowering plant costs {cur,$}{cost,6} at the store, how much money will {name,Pat} spend at the store to fill up her flower bed?\n\n#init:\n- name = sample(names_female)\n- unit_length = sample(['feet', 'meters'])\n- cur = sample(currencies_sym)\n- $length = range(110, 220)\n- $plant_width = range(2, 8)\n- $space = np.arange(12, 20, 0.25)\n- $owned = range(10, 30)\n- $cost = range(3, 15)\n\n#conditions:\n- plant_width * 3 < length\n- plant_width < space\n- is_int(length / space)\n- length / space > owned\n\n#answer: int((length / space - owned) * cost)", "answer_annotated": "{name}'s flower bed is {length} {unit_length} / {space} {unit_length} per plant = <<{length}/{space}={int(length/space)}>>{int(length/space)} plants needed.\n{name} needs to buy {int(length/space)} plants - {owned} plants = <<{int(length/space)}-{owned}={int(length/space)-owned}>>{int(length/space)-owned} plants needed to purchase.\n{name} will spend {int(length/space)-owned} plants * {cur}{cost} = {cur}<<{int(length/space)-owned}*{cost}={int((length/space - owned) * cost)}>>{int((length/space - owned) * cost)}.\n#### {int((length/space - owned) * cost)}" }