forked from zalio/word-problem-solver-thesis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
alg514.json
8882 lines (8882 loc) · 264 KB
/
alg514.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"iIndex":2598,
"lEquations":[
"3.0*novelists=5.0*poets",
"novelists+poets=24.0"
],
"sQuestion":"A writing workshop enrolls novelists and poets in a ratio of 5 to 3. There are 24 people at the workshop. How many novelists are there? How many poets are there?",
"lSolutions":[
15,
9
],
"template":[
"n1*x=n2*y",
"x+y=n3",
10
],
"templateType":10
},
{
"iIndex":1695,
"lEquations":[
"4.0*student_ticket+6.0*admission_ticket=2876.0",
"student_ticket+admission_ticket=525.0"
],
"sQuestion":"You are selling tickets for a high school play. Student tickets cost 4 dollars and general admission tickets cost 6 dollars. You sell 525 tickets and collect 2876 dollars. How many student tickets and general admission tickets did you sell?",
"lSolutions":[
137,
388
],
"template":[
"n1*x+n2*y=n3",
"x+y=n4",
15
],
"templateType":15
},
{
"iIndex":2575,
"lEquations":[
"10.5*ten_fifty+8.5*eight_fifty=93.0",
"ten_fifty+eight_fifty=10.0"
],
"sQuestion":"A store is selling compact discs for 10.50 dollars and 8.50 dollars. You buy 10 discs and spend a total of 93 dollars. How many compact discs did you buy that cost 10.50 dollars? How many did you buy that cost 8.50 dollars? ",
"lSolutions":[
4,
6
],
"template":[
"n1*x+n2*y=n3",
"x+y=n4",
15
],
"templateType":15
},
{
"iIndex":1075,
"lEquations":[
"0.07*fundone+0.06*fundtwo=405.0",
"fundone+fundtwo=6100.0"
],
"sQuestion":"Bob invested 6100 dollars in 2 funds , which pay 7 % and 6 % simple interest respectively. The combined interest he earned for both funds was 405 dollars for one year. How many dollars was invested at 7 %? How much was invested at 6 %? ",
"lSolutions":[
3900,
2200
],
"template":[
"n1*x+n2*y=n3",
"x+y=n4",
15
],
"templateType":15
},
{
"iIndex":267,
"lEquations":[
"2.0*two_point+4.0*four_point=100.0",
"two_point+four_point=40.0"
],
"sQuestion":"Your teacher is giving you a test worth 100 points and containing 40 questions. There are 2 point and 4 point questions on the test. How many two point questions are there? How many 4 point questions? ",
"lSolutions":[
30,
10
],
"template":[
"n1*x+n2*y=n3",
"x+y=n4",
15
],
"templateType":15
},
{
"iIndex":2089,
"lEquations":[
"160.0+7.0*week=210.0+5.0*week"
],
"sQuestion":"You have 160 dollars and save 7 dollars per week. Your friend has 210 dollars and saves 5 dollars per week. After how many weeks will each of you have saved the same amount of money?",
"lSolutions":[
25
],
"template":[
"n1+n2*x=n3+n4*x",
17
],
"templateType":17
},
{
"iIndex":5154,
"lEquations":[
"12.0*adult_tickets+5.0*children_tickets=519.0",
"adult_tickets+children_tickets=80.0"
],
"sQuestion":"A theater has 80 seats. On opening night , they sold out , selling adult tickets for 12 dollars each and child tickets for 5 dollars each. If they made a total of 519 dollars , how many child tickets were sold? ",
"lSolutions":[
63
],
"template":[
"n1*x+n2*y=n3",
"x+y=n4",
15
],
"templateType":15
},
{
"iIndex":6952,
"lEquations":[
"2.0*shorter=4.0+longer",
"shorter+longer=20.0"
],
"sQuestion":"A 20-foot board is cut into 2 pieces. Twice the length of the shorter piece is 4 feet more than the length of the longer piece. Find the length of the shorter piece.",
"lSolutions":[
8
],
"template":[
"n1*x=n2+y",
"x+y=n3",
9
],
"templateType":9
},
{
"iIndex":5131,
"lEquations":[
"distance_traveled+distance_mothers=234.0",
"distance_traveled=2.0*distance_mothers"
],
"sQuestion":"You are traveling to your mothers house that is 234 miles away. If you are currently twice as far from your house as you are from your mothers house how far have you traveled? Round to the nearest tenth mile.",
"lSolutions":[
156
],
"template":[
"x+y=n1",
"x=n2*y",
11
],
"templateType":11
},
{
"iIndex":5874,
"lEquations":[
"5.5*columbian_pounds+4.25*peruvian_pounds=40.0*4.6",
"columbian_pounds+peruvian_pounds=40.0"
],
"sQuestion":"Colombian coffee beans cost 5.50 dollars per pound, while Peruvian coffee beans cost 4.25 dollars per pound. We want to mix the beans together so as to produce a 40-pound bag , costing 4.60 dollars per pound. How many pounds of Columbian beans and how many pounds of Peruvian beans should be used? ",
"lSolutions":[
11.2,
28.8
],
"template":[
"n1*x+n2*y=n3*n4",
"x+y=n5",
18
],
"templateType":18
},
{
"iIndex":6370,
"lEquations":[
"0.05*five_percent_fund+0.07*seven_percent_fund=630.0",
"five_percent_fund+seven_percent_fund=10000.0"
],
"sQuestion":"A total of 10000 dollars is invested in 2 funds paying 5 % and 7 % annual interest. The combined annual interest is 630 dollars. How much of the 10000 dollars is invested at 5 %? How much at 7 %? ",
"lSolutions":[
3500,
6500
],
"template":[
"n1*x+n2*y=n3",
"x+y=n4",
15
],
"templateType":15
},
{
"iIndex":3240,
"lEquations":[
"2.0+0.12*minutes=23.36"
],
"sQuestion":"For his long distance phone service Milan pays a 2 dollars monthly fee plus 12 cents per minute. Last month , Milan 's long distance bill was 23.36 dollars. For how many minutes was Milan billed for? ",
"lSolutions":[
178
],
"template":[
"n1+n2*x=n3",
5
],
"templateType":5
},
{
"iIndex":5073,
"lEquations":[
"1.5*load_per_width=250.0",
"3.5*load_per_width=load"
],
"sQuestion":"The maximum load that a horizontal beam can carry is directly proportional to its width. If a beam 1.5 inches wide can support a load of 250 pounds , find the load that a beam of the same type can support if its width is 3.5 inches? ",
"lSolutions":[
583.3333
],
"template":[
"n1*x=n2",
"n3*x=y",
20
],
"templateType":20
},
{
"iIndex":6238,
"lEquations":[
"0.15*fifteen_solution+0.40*forty_solution=0.25*30.0",
"fifteen_solution+forty_solution=30.0"
],
"sQuestion":"A chemist needs to make 30 ounces of a 25 % alcohol solution by mixing together a 15 % alcohol solution with a 40 % alcohol solution. How many ounces of the 15 % solution should he use? How many ounces of the 40 % solution?",
"lSolutions":[
18,
12
],
"template":[
"n1*x+n2*y=n3*n4",
"x+y=n5",
18
],
"templateType":18
},
{
"iIndex":5077,
"lEquations":[
"16000.0/0.8=last"
],
"sQuestion":"The value of a sport utility vehicle this year is 16000 dollars , which is 0.8 of what its value was last year. Find the value of the vehicle last year. ",
"lSolutions":[
20000
],
"template":[
"n1/n2=x",
7
],
"templateType":7
},
{
"iIndex":1675,
"lEquations":[
"0.25*twentyfive_solution+0.50*fifty_solution=0.45*1000.0",
"twentyfive_solution+fifty_solution=1000.0"
],
"sQuestion":"Arianne is mixing a solution for Chemistry class. She has a 25 % copper solution and a 50 % copper solution. How many milliliters of the 25 % solution and 50 % solution should she mix to make 1000 milliliters of a 45 % solution?",
"lSolutions":[
200,
800
],
"template":[
"n1*x+n2*y=n3*n4",
"x+y=n5",
18
],
"templateType":18
},
{
"iIndex":3394,
"lEquations":[
"2.0*larger_number-smaller_number=43.0",
"smaller_number+larger_number=50.0"
],
"sQuestion":"The sum of 2 numbers is 50. The first number is 43 less than twice the second number. Find the smaller number. Find the larger number.",
"lSolutions":[
19,
31
],
"template":[
"n1*x-y=n2",
"y+x=n3",
9
],
"templateType":9
},
{
"iIndex":1106,
"lEquations":[
"10.0*children+11.0*adult=246.0",
"children+adult=23.0"
],
"sQuestion":"Adult tickets for a play cost 11 dollars and the child tickets cost 10 dollars. If there were 23 people at a performance and the theater collected 246 dollars from tickets sales , how many children attended the play? How many adults attended the play? ",
"lSolutions":[
7,
16
],
"template":[
"n1*x+n2*y=n3",
"x+y=n4",
15
],
"templateType":15
},
{
"iIndex":158,
"lEquations":[
"won+lost=82.0",
"won=3.0*lost-2.0"
],
"sQuestion":"The Kings won two less than three times as many games as they lost. They played 82 games. How many wins and losses did the team have? ",
"lSolutions":[
61,
21
],
"template":[
"x+y=n1",
"x=n2*y-n3",
0
],
"templateType":0
},
{
"iIndex":6521,
"lEquations":[
"0.06*six_acid+0.14*fourteen_acid=0.12*50.0",
"six_acid+fourteen_acid=50.0"
],
"sQuestion":"Find the amount of 6 percent acid solution and the amount of a 14 percent acid solution that Pat should combine to prepare 50 cubic-centimeters of 12 percent solution.",
"lSolutions":[
12.5,
37.5
],
"template":[
"n1*x+n2*y=n3*n4",
"x+y=n5",
18
],
"templateType":18
},
{
"iIndex":2493,
"lEquations":[
"42.0*corn+30.0*wheat=18600.0",
"corn+wheat=500.0"
],
"sQuestion":"The Johnson Farm has 500 acres of land allotted for cultivating corn and wheat. The cost of cultivating corn and wheat is 42 dollars for corn and 30 dollars for wheat. Mr.Johnson has 18,600 dollars available for cultivating these crops. If he used all the land and entire budget , how many acres of corn and how many acres of wheat should he plant? ",
"lSolutions":[
300,
200
],
"template":[
"n1*x+n2*y=n3",
"x+y=n4",
15
],
"templateType":15
},
{
"iIndex":6779,
"lEquations":[
"190.0+0.04*sales=500.0"
],
"sQuestion":"Trenton sells electronic supplies. Each week he earns 190 dollars plus commission equal to 4 % of his sales. This week his goal is to earn no less than 500 dollars. Write and solve an inequality to find the amount of sales he must make to reach his goal.",
"lSolutions":[
7750
],
"template":[
"n1+n2*x=n3",
5
],
"templateType":5
},
{
"iIndex":5955,
"lEquations":[
"shorter+longer=68.0",
"longer-12.0=shorter"
],
"sQuestion":"A 68-foot pipe is cut into 2 pieces , one of which is 12 feet less than the other. What is the length of the shorter piece in feet? ",
"lSolutions":[
28
],
"template":[
"x+y=n1",
"y-n2=x",
12
],
"templateType":12
},
{
"iIndex":1444,
"lEquations":[
"0.20*twenty_alloy+0.27*twentyseven_alloy=100.0*0.249",
"twenty_alloy+twentyseven_alloy=100.0"
],
"sQuestion":"Anne and Nancy use a metal alloy that is 24.9 % copper to make jewelry. How many ounces of a 20 % alloy must be mixed with a 27 % alloy to form 100 ounces of the desired alloy?",
"lSolutions":[
30
],
"template":[
"n1*x+n2*y=n3*n4",
"x+y=n5",
18
],
"templateType":18
},
{
"iIndex":7364,
"lEquations":[
"6.0*some+6.5*remainder=56.0",
"some+remainder=9.0"
],
"sQuestion":"Nine books are to be bought by a student. Some cost 6 dollars each and the remainder cost 6.50 dollars each. The total amount spent was 56 dollars. How many 6-dollar books were sold? How many 6.50-dollar books were sold? ",
"lSolutions":[
5,
4
],
"template":[
"n1*x+n2*y=n3",
"x+y=n4",
15
],
"templateType":15
},
{
"iIndex":428,
"lEquations":[
"7.0*seven_dollar+9.0*nine_dollar=225.0",
"seven_dollar+nine_dollar=29.0"
],
"sQuestion":"The Booster Club voted on where they would go for their annual trip. A majority of the club voted to go to a baseball game. They bought 29 tickets. Some of the tickets cost 7 dollars per ticket and some cost 9 dollars per ticket. All of the tickets cost 225 dollars. How many 7-dollar tickets did they buy? How many 9-dollar tickets did they buy? ",
"lSolutions":[
18,
11
],
"template":[
"n1*x+n2*y=n3",
"x+y=n4",
15
],
"templateType":15
},
{
"iIndex":5454,
"lEquations":[
"2.0*aerobics=3.0*weight_training",
"aerobics+weight_training=250.0"
],
"sQuestion":"Kay spends 250 minutes per week exercising. Her ratio of time spent on aerobics to time spent on weight training is 3 to 2. How many minutes per week does she spend on aerobics? How many minutes per week does she spend on weight training?",
"lSolutions":[
150,
100
],
"template":[
"n1*x=n2*y",
"x+y=n3",
10
],
"templateType":10
},
{
"iIndex":2371,
"lEquations":[
"large+small=64.0",
"large-small=4.0"
],
"sQuestion":"Find 2 numbers whose sum is 64 and whose difference is 4. What is the smaller number? What is the larger number?",
"lSolutions":[
30,
34
],
"template":[
"x+y=n1",
"x-y=n2",
12
],
"templateType":12
},
{
"iIndex":6373,
"lEquations":[
"1.5*hot_dogs+0.5*sodas=78.5",
"hot_dogs+sodas=87.0"
],
"sQuestion":"You are running a concession stand. You are selling hot dogs and soda. Each hot dog costs 1.50 dollars and each soda costs 0.50 dollars. You made a total of 78.50 dollars. You sold a total of 87 hot dogs and sodas combined. You must report the number of hot dogs and sodas sold. How many hot dogs and sodas were sold?",
"lSolutions":[
35,
52
],
"template":[
"n1*x+n2*y=n3",
"x+y=n4",
15
],
"templateType":15
},
{
"iIndex":5272,
"lEquations":[
"0.6667*number-10.0=0.25*number"
],
"sQuestion":"Find a number so that 10 less than 0.6667 the number is 0.25 the number.",
"lSolutions":[
24
],
"template":[
"n1*x-n2=n3*x",
2
],
"templateType":2
},
{
"iIndex":116,
"lEquations":[
"3.0*donuts+4.0*coffees=4.91",
"5.0*donuts+6.0*coffees=7.59"
],
"sQuestion":"On Monday , Harold picked up three doughnuts and four large coffees for the office staff. He paid 4.91 dollars. On Tuesday Melinda picked up five doughnuts and six large coffees for the office staff. She paid 7.59 dollars. What is the cost of one doughnut? What is the cost of one large coffee? ",
"lSolutions":[
0.45,
0.89
],
"template":[
"n1*x+n2*y=n3",
"n4*x+n5*y=n6",
8
],
"templateType":8
},
{
"iIndex":5043,
"lEquations":[
"2.0*paved_speed+3.0*dirt_speed=200.0",
"paved_speed=20.0+dirt_speed"
],
"sQuestion":"A semi truck travels on a paved road for 2 hours at an average speed of 20 miles per hour faster than it travels on a dirt road. The time spent on the dirt is 3 hours. If the entire trip is 200 miles , how fast is the truck traveling on the dirt road? ",
"lSolutions":[
32
],
"template":[
"n1*x+n2*y=n3",
"x=n4+y",
6
],
"templateType":6
},
{
"iIndex":1962,
"lEquations":[
"2.0*wins+1.0*tie=60.0",
"wins=9.0+tie"
],
"sQuestion":"Hockey teams receive 2 points for a win and 1 point for a tie. The wild cats once won a championship with 60 points. They won 9 more games than they tied. How many wins and how many ties did the Wildcats have?",
"lSolutions":[
23,
14
],
"template":[
"n1*x+n2*y=n3",
"x=n4+y",
6
],
"templateType":6
},
{
"iIndex":3560,
"lEquations":[
"larger+smaller=84.0",
"larger=3.0*smaller"
],
"sQuestion":"The sum of 2 numbers is 84. One number is 3 times the other. Find the smaller number. Find the larger number.",
"lSolutions":[
21,
63
],
"template":[
"x+y=n1",
"x=n2*y",
11
],
"templateType":11
},
{
"iIndex":6094,
"lEquations":[
"9.0*students+11.0*non_students=20960.0",
"students+non_students=2000.0"
],
"sQuestion":"Tickets for a concert were priced at 9 dollars for students and 11 dollars for non-students. There were 2000 tickets sold for a total of 20,960 dollars. How many student ticket were sold? ",
"lSolutions":[
520
],
"template":[
"n1*x+n2*y=n3",
"x+y=n4",
15
],
"templateType":15
},
{
"iIndex":5892,
"lEquations":[
"4.0*hours+6.0*hours=3.0"
],
"sQuestion":"Mary began walking home from school , heading south at a rate of 4 miles per hour. Sharon left school at the same time heading north at 6 miles per hour. How long will it take for them to be 3 miles apart? ",
"lSolutions":[
0.3
],
"template":[
"n1*x+n2*x=n3",
19
],
"templateType":19
},
{
"iIndex":5540,
"lEquations":[
"133*ratio=26.6",
"136.0*ratio=moon_weight"
],
"sQuestion":"The weight of an object on the moon varies directly to its weight on earth. A person who weights 133 pounds on earth weighs 26.6 pounds on the moon. How many pounds would a 136-pound person weigh on the moon?",
"lSolutions":[
27.2
],
"template":[
"n1*x=n2",
"n3*x=y",
20
],
"templateType":20
},
{
"iIndex":5947,
"lEquations":[
"5.0*five_dollar+20.0*twenty_dollar=780.0",
"five_dollar+twenty_dollar=54.0"
],
"sQuestion":"A bank teller has 54 5-dollar and 20-dollar bills in her cash drawer. The value of the bills is 780 dollars. How many 5 dollars bills are there?",
"lSolutions":[
20
],
"template":[
"n1*x+n2*y=n3",
"x+y=n4",
15
],
"templateType":15
},
{
"iIndex":2102,
"lEquations":[
"0.11*junk_bonds+0.05*government_bonds=740.0",
"junk_bonds+government_bonds=10000.0"
],
"sQuestion":"A total of 10000 dollars was invested in two bond mutual funds , a junk bond fund and a government bond fund. The junk fund is risky and yields 11 % interest. The safer government bond fund yields only 5 %. The year 's total income from the two investments was 740 dollars. How much was invested in each fund? ",
"lSolutions":[
4000,
6000
],
"template":[
"n1*x+n2*y=n3",
"x+y=n4",
15
],
"templateType":15
},
{
"iIndex":2866,
"lEquations":[
"2.75*sheets+125.0=1.5*sheets+140.0"
],
"sQuestion":"A student is pricing 2 different picture packages. John 's Photo World charges 2.75 dollars per sheet and a one time sitting fee of 125 dollars. Sam 's Picture Emporium charges 1.50 dollars per sheet and a one time sitting fee of 140 dollars. For how many sheets of pictures do the 2 companies charge the same amount?",
"lSolutions":[
12
],
"template":[
"n1*x+n2=n3*x+n4",
17
],
"templateType":17
},
{
"iIndex":6072,
"lEquations":[
"1500.0+3.0*shirts=20.0*shirts"
],
"sQuestion":"Suppose you invest 1,500 dollars in equipment to put pictures on T-shirts. You buy each T-shirt for 3 dollars. After you have placed the pictures on a shirt , you sell it for 20 dollars. How many T-shirts must you sell to break even? ",
"lSolutions":[
83
],
"template":[
"n1+n2*x=n3*x",
2
],
"templateType":2
},
{
"iIndex":7086,
"lEquations":[
"35.0*mcdonalds_stock+69.0*ohio_art_stock=2814.0",
"mcdonalds_stock=70.0+ohio_art_stock"
],
"sQuestion":"Norman and Suzanne Scarpulla own 35 shares of Mcdonald 's stocks and 69 shares of the Ohio Art Company stock. On a particular day in 2011 , their stock portfolio consisting of these two stocks was worth 2,814 dollars. The Mcdonalds stock was 70 dollars more per share than the Ohio Art Company stock. What was the price of McDonalds stock on that day? What was the cost of the Ohio Art Company stock on that day? ",
"lSolutions":[
73.5,
3.5
],
"template":[
"n1*x+n2*y=n3",
"x=n4+y",
6
],
"templateType":6
},
{
"iIndex":5133,
"lEquations":[
"2.0*number_one+2.0*number_two=36.0",
"number_one-number_two=6.0"
],
"sQuestion":"The difference between two numbers is 6. If you double both numbers , the sum is 36. Find the two numbers. ",
"lSolutions":[
12,
6
],
"template":[
"n1*x+n2*y=n3",
"x-y=n4",
6
],
"templateType":6
},
{
"iIndex":7021,
"lEquations":[
"larger+smaller=48.0",
"larger-smaller=20.0"
],
"sQuestion":"The difference between two numbers is 20 and their sum is 48. Find the numbers.",
"lSolutions":[
34,
14
],
"template":[
"x+y=n1",
"x-y=n2",
12
],
"templateType":12
},
{
"iIndex":2561,
"lEquations":[
"29.0+0.08*miles_driven=46.12"
],
"sQuestion":"A car rented for 29 dollars per day plus 0.08 dollars per mile. Julia paid 46.12 dollars for a 1-day rental. How far did she drive , in miles? ",
"lSolutions":[
214
],
"template":[
"n1+n2*x=n3",
5
],
"templateType":5
},
{
"iIndex":3869,
"lEquations":[
"6.0*adults+4.0*children=104.0",
"adults+children=21.0"
],
"sQuestion":"You sell tickets for admission to your school play and collect a total of 104 dollars. Admission prices are 6 dollars for adults and 4 dollars for children. You sold 21 tickets. How many adult tickets did you sell? How many children 's tickets did you sell? ",
"lSolutions":[
10,
11
],
"template":[
"n1*x+n2*y=n3",
"x+y=n4",
15
],
"templateType":15
},
{
"iIndex":5191,
"lEquations":[
"0.60*ordinary_time+0.90*overtime=32.4",
"ordinary_time+overtime=50.0"
],
"sQuestion":"A worker gets 60 cents an hour for ordinary time and 90 cents an hour for overtime. If she gets 32.40 dollars for a 50 hour week , how many hours are overtime? ",
"lSolutions":[
8
],
"template":[
"n1*x+n2*y=n3",
"x+y=n4",
15
],
"templateType":15
},
{
"iIndex":3542,
"lEquations":[
"8.0*library+15.0*construction=300.0",
"library+construction=25.0"
],
"sQuestion":"A student works 2 part-time jobs. He earns 8.00 dollars an hour working at the college library and 15.00 dollars and hour for construction work. To save time for study , be limits his work to 25 hours a week. If he enjoys the work at the library more , how many hours can he work at the library and still earn at 300 dollars a week? ",
"lSolutions":[
10
],
"template":[
"n1*x+n2*y=n3",
"x+y=n4",
15
],
"templateType":15
},
{
"iIndex":7135,
"lEquations":[
"2.0*two+5.0*five=125.0",
"two+five=40.0"
],
"sQuestion":"There are some 2-dollar coins and some 5-dollar coins. There are 40 coins , which give a total amount of 125 dollars. How many 2-dollar coins are there? How many 5-dollar coins are there? ",
"lSolutions":[
25,
15
],
"template":[
"n1*x+n2*y=n3",
"x+y=n4",
15
],
"templateType":15
},
{
"iIndex":5872,
"lEquations":[
"35.0*single+60.0*double=14000.0",
"single+double=260.0"
],
"sQuestion":"At a hotel one night , 260 rooms were booked. Some were single rooms and some were double rooms. The single rooms cost 35 dollars each and the double rooms cost 60 dollars. The hotel made 14000 dollars that night. How many single rooms and double rooms were booked? ",
"lSolutions":[
64,
196
],
"template":[
"n1*x+n2*y=n3",
"x+y=n4",
15
],
"templateType":15
},
{
"iIndex":7022,
"lEquations":[
"0.5*number=0.1667*number+10.0"
],
"sQuestion":"0.5 of a certain number is 10 more than 0.1667 of a number. Find the number.",
"lSolutions":[
30
],
"template":[
"n1*x=n2*x+n3",
2
],
"templateType":2
},
{
"iIndex":5765,
"lEquations":[
"0.75*left+0.50*drained=0.65*1.0",
"left+drained=1.0"
],
"sQuestion":"One gallon container is full of a 75 % alcohol solution. How much must be drained off and replaced by a 50 % alcohol solution to produce one gallon of 65 % alcohol solution?",
"lSolutions":[
0.4
],
"template":[
"n1*x+n2*y=n3*n4",
"x+y=n5",
18
],
"templateType":18
},
{
"iIndex":2199,
"lEquations":[
"0.03*low_interest+0.04*high_interest=550.0",
"low_interest+high_interest=15000.0"
],
"sQuestion":"An investor will invest a total of 15000 dollars in 2 accounts , one paying 4 % annual simple interest and the other 3 %. If he wants to earn 550 dollars annual interest , how much should he invest at 4 %? How much at 3 %? ",
"lSolutions":[
10000,
5000
],
"template":[
"n1*x+n2*y=n3",
"x+y=n4",
15
],
"templateType":15
},
{
"iIndex":1379,
"lEquations":[
"0.04*four+0.18*eighteen=1380.0",
"four+eighteen=17000.0"
],
"sQuestion":"Stan invested 17000 dollars , part at 18 % and part at 4 %. If the total interest at the end of the year is 1,380 dollars , how much did he invest at 18 %? How much at 4 %? ",
"lSolutions":[
5000,
12000
],
"template":[
"n1*x+n2*y=n3",
"x+y=n4",
15
],
"templateType":15
},
{
"iIndex":3246,
"lEquations":[
"5.0*blue+3.0*red=84.0",
"blue+red=20.0"
],
"sQuestion":"Red cards are worth 3 credits , while blue cards are worth 5 credits. You need any combination of 20 cards to play a game. With 84 credits to buy cards , how many blue cards will you have when you play? how many red cards will you have when you play? ",
"lSolutions":[
12,
8
],
"template":[
"n1*x+n2*y=n3",
"x+y=n4",
15
],
"templateType":15
},
{
"iIndex":6951,
"lEquations":[
"2.0*nooftickets_ron_sold+4.5*nooftickets_kathy_sold=60.0",
"nooftickets_ron_sold+nooftickets_kathy_sold=20.0"
],
"sQuestion":"Ron and Kathy are ticket-sellers , Ron handling student tickets that sell for 2.00 dollars each and Kathy selling adult tickets for 4.50 dollars each. If their total income for 20 tickets was 60.00 dollars , how many did Ron sell? ",
"lSolutions":[
12
],
"template":[
"n1*x+n2*y=n3",
"x+y=n4",
15
],
"templateType":15
},
{
"iIndex":2020,
"lEquations":[
"1.5*juan+1.5*peter=19.5",
"juan=3.0+peter"
],
"sQuestion":"Juan and Peter both leave a shopping center at the same time going in opposite directions. Juan is on his bike and travels 3 miles per hour faster than Peter who is on his skateboard. After 1.5 hours they are 19.5 miles apart. How fast does Peter travel?",
"lSolutions":[
5
],
"template":[
"n1*x+n2*y=n3",
"x=n4+y",
6
],
"templateType":6
},
{
"iIndex":6759,
"lEquations":[
"65.0/2.5=times_at_rink"
],
"sQuestion":"An ice skating rink charges 5 dollars for admission and 2.50 dollars to rent skates. Jill can purchase a new pair of skates for 65 dollars. How many times would she need to go the rink to justify buying the skates rather than renting a pair?",
"lSolutions":[
26
],
"template":[
"n1/n2=x",
7
],
"templateType":7
},
{
"iIndex":5761,
"lEquations":[