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": "John has 10 hectares of a pineapple field. There are 100 pineapples per hectare. John can harvest his pineapples every 3 months. How many pineapples can John harvest within a year?",
"answer": "John has 100 x 10= <<100*10=1000>>1000 pineapples on his field.\nJohn can harvest his Pineapple 12 ÷ 3 = <<12/3=4>>4 times per year\nTherefore John can harvest 1000 x 4 = <<1000*4=4000>>4000 pineapples per year.\n#### 4000",
"id_orig": 145,
"id_shuffled": 6,
"question_annotated": "{name,John} has {x,10} {area,hectare}s of {fruit,pineapple} field. There are {k,100} {fruit,pineapple}s per {area,hectare}. {name, John} can harvest his {fruit,pineapple}s every {n,3} months. How many {fruit,pineapple}s can {name,John} harvest within a year?\n\n#init:\n- name = sample(names_male)\n- fruit = sample(fruits)\n- area = sample(['hectare', 'square yard', 'square meter'])\n- $x = range(5, 100, 5)\n- $k = range(2, 101)\n- $n = sample([1, 2, 3, 4, 6, 12])\n\n#answer: x * k * (12//n)",
"answer_annotated": "{name} has {k} x {x}= <<{k}*{x}={k*x}>>{k*x} {fruit}s on his field.\n{name} can harvest his {fruit}s 12 ÷ {n} = <<{12}/{n}={12//n}>>{12//n} times per year\nTherefore {name} can harvest {k*x} x {12//n} = <<{k*x}*{12//n}={k*x*12//n}>>{k*x*12//n} {fruit}s per year.\n#### {k*x*12//n}"
}