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": "Candy has 15 light blue spools of thread, 45 dark blue spools of thread, 40 light green spools of thread, and 50 dark green spools of thread. What percent of her spools are blue?",
"answer": "First find the number of blue spools: 15 spools + 45 spools = <<15+45=60>>60 spools\nThen find the total number of spools: 40 spools + 50 spools + 60 spools = <<40+50+60=150>>150 spools\nThen divide the number of blue spools by the total number of spools and multiply by 100% to express the answer as a percentage: 60 spools / 150 spools * 100% = 40%\n#### 40",
"id_orig": 728,
"id_shuffled": 66,
"question_annotated": "{name} has {n1} light {c1} spools of thread, {n2} dark {c1} spools of thread, {n3} light {c2} spools of thread, and {n4} dark {c2} spools of thread. What percent of the spools are {c1}?\n\n#init:\n- name = sample(names)\n- c1, c2 = sample(colors, 2)\n- $n1 = range(45, 100)\n- $n2 = range(70, 150)\n- $n3 = range(20, 80)\n- $n4 = range(70, 100)\n\n#conditions:\n- is_int(100 * (n1 + n2) / (n1 + n2 + n3 + n4))\n\n#answer: int(100 * (n1 + n2) / (n1 + n2 + n3 + n4))",
"answer_annotated": "First find the number of {c1} spools: {n1} spools + {n2} spools = <<{n1}+{n2}={n1+n2}>>{n1+n2} spools\nThen find the total number of spools: {n3} spools + {n4} spools + {n1+n2} spools = <<{n3}+{n4}+{n1+n2}={n1+n2+n3+n4}>>{n1+n2+n3+n4} spools\nThen divide the number of {c1} spools by the total number of spools and multiply by 100% to express the answer as a percentage: {n1+n2} spools / {n1+n2+n3+n4} spools * 100% = {int(100 * (n1 + n2) / (n1 + n2 + n3 + n4))}%\n#### {int(100 * (n1 + n2) / (n1 + n2 + n3 + n4))}"
}