Still experimenting

This commit is contained in:
abdulhakeem 2025-01-30 23:44:12 -06:00
parent a3378bd95f
commit ff13dc6825
357 changed files with 2888 additions and 0 deletions

View file

@ -0,0 +1,8 @@
{
"question": "Dax went to their farm to pick some apples and found half as many bugs as ants in the garden. If there were 50 ants, calculate the total number of insects in the garden.",
"answer": "If there were 50 ants, the total number of bugs in the garden is 1 bug/2 ants * 50 ants = 25 bugs\nThe total number of insects in the garden is 25 bugs + 50 ants = <<25+50=75>>75 insects\n#### 75",
"id_orig": 232,
"id_shuffled": 43,
"question_annotated": "{name,Dax} went to their {place,farm} to pick some {fruit,apples} and found {frac,half} as many {insect1,bugs} as {insect2,ants} in the {location,garden}. {name,Dax} then found {extra,50} rabbits, {i3,10} {insect3,bees}, and {n,50} {insect2,ants}. What percentage of animals in the {location,garden} were rabbits?\n\n#init:\n- name = sample(names)\n- place = sample([\"orchard\", \"backyard\", \"greenhouse\", \"allotment\"])\n- fruit = sample([\"strawberries\", \"cherries\", \"blueberries\", \"raspberries\"])\n- location = sample([\"garden\", \"field\", \"plot\", \"patch\"])\n- insect1, insect2, insect3 = sample([\"ants\", \"beetles\", \"ladybugs\", \"grasshoppers\", \"caterpillars\", \"bees\", \"wasps\"], 3)\n- $frac = sample(fraction_alnum + multi_times)\n- $i3 = range(15, 45)\n- $n = range(4, 25)\n- $extra = range(8, 76)\n\n#conditions:\n- is_int(n * frac)\n- n * frac > 2\n- is_int(extra/(extra+i3+int((n + int(n * frac))))*100)\n\n#answer: int(extra/(extra+i3+int((n + int(n * frac))))*100)",
"answer_annotated": "If there were {n} {insect2}, the total number of {insect1} in the {location} is {frac} * {n} {insect2} = {int(n * frac)} {insect1}\nThe total number of insects in the {location} is {int(n * frac)} {insect1} + {n} {insect2} + {i3} {insect3}= <<{int(n * frac)}+{n}+{i3}={n + i3+ int(n * frac)}>>{n + i3+int(n * frac)} insects.\nThe percentage of rabbits is {extra}/{extra+n+i3+ int(n * frac)} * 100 = {int(extra/int((extra+i3+n + int(n * frac)))*100)}\n#### {int(extra/(extra+i3+int((n + int(n * frac))))*100)}"
}