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": "A boy has 5 cards. His brother has 3 fewer cards than he has. How many cards do they have together?",
"answer": "His brother has 5 - 3 = <<5-3=2>>2 cards.\nTogether, they have 5 + 2 = <<5+2=7>>7 cards.\n#### 7",
"id_orig": 579,
"id_shuffled": 63,
"question_annotated": "A {person1} has {n} {item}s. His {relation} has {k} fewer {item}s than he has. How many {item}s do they have together?\n\n#init:\n- person1 = sample([\"student\", \"boy\", \"child\", \"kid\"])\n- item = sample([\"marble\", \"sticker\", \"toy\", \"book\", \"pencil\"])\n- relation = sample([\"sister\", \"brother\", \"friend\", \"cousin\"])\n- $n = range(5, 21)\n- $k = range(2, 10)\n\n#conditions:\n- n > k\n\n#answer: n + (n-k)",
"answer_annotated": "His {relation} has {n} - {k} = <<{n}-{k}={n-k}>>{n-k} {item}s.\nTogether, they have {n} + {n-k} = <<{n}+{n-k}={n+(n-k)}>>{n+(n-k)} {item}s.\n#### {n+(n-k)}"
}