Datasets:
File size: 185,921 Bytes
ce6c1b6 |
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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 |
id,instruct_1,context,q_1,q_2,q_3,q_4,q_5,answer_1
023_247,Read through the given questions. Each question fall into one of the following categories. Choose a question of numbers category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) What is -964 take away 28?
(2) What is next in -3286, -3288, -3290, -3292, -3294, -3296?
(3) What is five quarters of a micrometer in nanometers?
(4) Let v(d) be the second derivative of d**5/20 - 3*d**4/4 - 5*d**3/3 + 15*d**2/2 + d. Suppose 2*z - 6 = 52. Calculate the remainder when z is divided by v(10).
(5) Two letters picked without replacement from hwhjoxhhhhgxjhh. What is prob of picking 1 x and 1 o?",(1) What is -964 take away 28?,"(2) What is next in -3286, -3288, -3290, -3292, -3294, -3296?",(3) What is five quarters of a micrometer in nanometers?,(4) Let v(d) be the second derivative of d**5/20 - 3*d**4/4 - 5*d**3/3 + 15*d**2/2 + d. Suppose 2*z - 6 = 52. Calculate the remainder when z is divided by v(10).,(5) Two letters picked without replacement from hwhjoxhhhhgxjhh. What is prob of picking 1 x and 1 o?,4
023_98,Read through the given questions. Each question fall into one of the following categories. Choose a question of measurement category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) What is prob of picking 3 o and 1 p when four letters picked without replacement from pooooopppppoo?
(2) 10/(-60) + 14/(-24)
(3) What comes next: 35, 146, 331, 590, 923, 1330?
(4) Calculate the least common multiple of 21 and (-3 - 7/(-2))*10.
(5) How many millilitres are there in 25/8 of a litre?",(1) What is prob of picking 3 o and 1 p when four letters picked without replacement from pooooopppppoo?,(2) 10/(-60) + 14/(-24),"(3) What comes next: 35, 146, 331, 590, 923, 1330?",(4) Calculate the least common multiple of 21 and (-3 - 7/(-2))*10.,(5) How many millilitres are there in 25/8 of a litre?,5
023_670,Read through the given questions. Each question fall into one of the following categories. Choose a question of arithmetic category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) What is prob of picking 3 k and 1 x when four letters picked without replacement from mxcmmmkffkkwkc?
(2) What is -116938 minus -0.2?
(3) How many weeks are there in 1679489.7 days?
(4) Suppose -4*c - 31 = 17. Let u = 17 + c. What is the remainder when 13 is divided by u?
(5) What is the next term in 393, 392, 391, 390, 389, 388?",(1) What is prob of picking 3 k and 1 x when four letters picked without replacement from mxcmmmkffkkwkc?,(2) What is -116938 minus -0.2?,(3) How many weeks are there in 1679489.7 days?,(4) Suppose -4*c - 31 = 17. Let u = 17 + c. What is the remainder when 13 is divided by u?,"(5) What is the next term in 393, 392, 391, 390, 389, 388?",2
023_322,Read through the given questions. Each question fall into one of the following categories. Choose a question of probability category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Calculate 0.4*142.5.
(2) What is the remainder when 51 is divided by 460/36 + (-4)/(-18)?
(3) Two letters picked without replacement from {r: 3, l: 6, j: 6, u: 3}. What is prob of picking 1 u and 1 r?
(4) How many minutes are there in 1/6 of a hour?
(5) Solve 29 = 5*c - 3*k, -9 = -4*c + 4*k + 19 for c.",(1) Calculate 0.4*142.5.,(2) What is the remainder when 51 is divided by 460/36 + (-4)/(-18)?,"(3) Two letters picked without replacement from {r: 3, l: 6, j: 6, u: 3}. What is prob of picking 1 u and 1 r?",(4) How many minutes are there in 1/6 of a hour?,"(5) Solve 29 = 5*c - 3*k, -9 = -4*c + 4*k + 19 for c.",3
023_304,Read through the given questions. Each question fall into one of the following categories. Choose a question of algebra category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) What is 32127.21mm in nanometers?
(2) What is the value of 31/(-4) + (-432)/(-54)?
(3) Let o(b) = 2*b. Let t be o(2). Let u(q) = -8 - q + 5 + t. Let n be u(-1). Solve n*m + w + 2 = 0, -3*m + 4*w - 7 = -6*m for m.
(4) What is prob of sequence uq when two letters picked without replacement from vlqvvwvquu?
(5) Let m(h) = h**2 + h - 4. Let c be m(-3). Let r(b) = -b**2 + 0 - b**c - b + 7*b**2 + 6. Let y be r(5). What is the highest common divisor of 14 and y?",(1) What is 32127.21mm in nanometers?,(2) What is the value of 31/(-4) + (-432)/(-54)?,"(3) Let o(b) = 2*b. Let t be o(2). Let u(q) = -8 - q + 5 + t. Let n be u(-1). Solve n*m + w + 2 = 0, -3*m + 4*w - 7 = -6*m for m.",(4) What is prob of sequence uq when two letters picked without replacement from vlqvvwvquu?,(5) Let m(h) = h**2 + h - 4. Let c be m(-3). Let r(b) = -b**2 + 0 - b**c - b + 7*b**2 + 6. Let y be r(5). What is the highest common divisor of 14 and y?,3
023_720,Read through the given questions. Each question fall into one of the following categories. Choose a question of measurement category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Let a = 15 - 8. Let d = a - -10. Suppose -5*m + d = 2. What is the units digit of m?
(2) What is 49/5 of a microgram in nanograms?
(3) Let t be 4 + -2 + 1/1. Let z = -1 + t. Solve z*q - q = 0 for q.
(4) Two letters picked without replacement from sskseukyesekeussuy. What is prob of sequence se?
(5) Put together 36.34 and 11.27.",(1) Let a = 15 - 8. Let d = a - -10. Suppose -5*m + d = 2. What is the units digit of m?,(2) What is 49/5 of a microgram in nanograms?,(3) Let t be 4 + -2 + 1/1. Let z = -1 + t. Solve z*q - q = 0 for q.,(4) Two letters picked without replacement from sskseukyesekeussuy. What is prob of sequence se?,(5) Put together 36.34 and 11.27.,2
023_710,Read through the given questions. Each question fall into one of the following categories. Choose a question of probability category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Suppose 5*k + 2*c - 3 = -14, -3*k + 2*c = 13. Let s(d) = -d**3 - 2*d**2 - d + 4. What is the tens digit of s(k)?
(2) Calculate prob of sequence rwp when three letters picked without replacement from ntrprtrprrtnrtwrptt.
(3) 18 * 0.4
(4) Let z be ((-6)/4)/(3/(-6)). Let j(g) = -g**3 + 3*g**2 + g - 3. Let x be j(3). Let m be (-5 + x)*3/(-5). Solve 6*c - c = 5, -3*c + m = z*r for r.
(5) How many micrometers are there in fifty-nine quarters of a millimeter?","(1) Suppose 5*k + 2*c - 3 = -14, -3*k + 2*c = 13. Let s(d) = -d**3 - 2*d**2 - d + 4. What is the tens digit of s(k)?",(2) Calculate prob of sequence rwp when three letters picked without replacement from ntrprtrprrtnrtwrptt.,(3) 18 * 0.4,"(4) Let z be ((-6)/4)/(3/(-6)). Let j(g) = -g**3 + 3*g**2 + g - 3. Let x be j(3). Let m be (-5 + x)*3/(-5). Solve 6*c - c = 5, -3*c + m = z*r for r.",(5) How many micrometers are there in fifty-nine quarters of a millimeter?,2
023_570,Read through the given questions. Each question fall into one of the following categories. Choose a question of arithmetic category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) 0.772226 + -0.5
(2) Suppose k = 21 - 15. Calculate the greatest common factor of k and 2.
(3) Two letters picked without replacement from vvdv. Give prob of sequence vv.
(4) How many milliseconds are there in 238219.4s?
(5) What is the next term in -9053, -9051, -9049?",(1) 0.772226 + -0.5,(2) Suppose k = 21 - 15. Calculate the greatest common factor of k and 2.,(3) Two letters picked without replacement from vvdv. Give prob of sequence vv.,(4) How many milliseconds are there in 238219.4s?,"(5) What is the next term in -9053, -9051, -9049?",1
023_592,Read through the given questions. Each question fall into one of the following categories. Choose a question of arithmetic category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) How many litres are there in 0.4557036 millilitres?
(2) What comes next: -46, -88, -130?
(3) Let i(m) = m**3 + 26*m**2 + 42*m - 25. Let j be i(-24). Calculate the highest common divisor of 17 and j.
(4) What is the value of (-1 + (-9)/6)*444/(-16095)?
(5) Two letters picked without replacement from {f: 3, t: 10, j: 1, d: 2, v: 1, x: 2}. What is prob of sequence vd?",(1) How many litres are there in 0.4557036 millilitres?,"(2) What comes next: -46, -88, -130?",(3) Let i(m) = m**3 + 26*m**2 + 42*m - 25. Let j be i(-24). Calculate the highest common divisor of 17 and j.,(4) What is the value of (-1 + (-9)/6)*444/(-16095)?,"(5) Two letters picked without replacement from {f: 3, t: 10, j: 1, d: 2, v: 1, x: 2}. What is prob of sequence vd?",4
023_171,Read through the given questions. Each question fall into one of the following categories. Choose a question of measurement category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Evaluate (-1 - -3) + (14 - 12) + 1.
(2) Calculate prob of sequence ll when two letters picked without replacement from {n: 3, l: 9}.
(3) Let f = 184 - 40. Suppose -5*x - 4*c = -f, 0 = 2*c + 2*c + 16. Suppose b = -3*b + x. What is the units digit of b?
(4) What is 7/4 of a year in months?
(5) Suppose 2*t - 8 = 24. Suppose -a + t = 3*a. Solve 5*o - 5*z = 15, -a*o - 5*z + 35 = o for o.",(1) Evaluate (-1 - -3) + (14 - 12) + 1.,"(2) Calculate prob of sequence ll when two letters picked without replacement from {n: 3, l: 9}.","(3) Let f = 184 - 40. Suppose -5*x - 4*c = -f, 0 = 2*c + 2*c + 16. Suppose b = -3*b + x. What is the units digit of b?",(4) What is 7/4 of a year in months?,"(5) Suppose 2*t - 8 = 24. Suppose -a + t = 3*a. Solve 5*o - 5*z = 15, -a*o - 5*z + 35 = o for o.",4
023_694,Read through the given questions. Each question fall into one of the following categories. Choose a question of probability category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Calculate (-66)/(-7) - ((-460)/70 + 7).
(2) How many kilograms are there in 1/20 of a tonne?
(3) What is next in -8004, -16010, -24016?
(4) Let u = 4 + -5. Let w(j) = 6*j**2 + j. Let b be w(u). Suppose 0 = 6*v - v, -b*o - 4*v + 65 = 0. What is the highest common divisor of 39 and o?
(5) Four letters picked without replacement from {u: 3, y: 3, q: 5}. What is prob of sequence qquq?",(1) Calculate (-66)/(-7) - ((-460)/70 + 7).,(2) How many kilograms are there in 1/20 of a tonne?,"(3) What is next in -8004, -16010, -24016?","(4) Let u = 4 + -5. Let w(j) = 6*j**2 + j. Let b be w(u). Suppose 0 = 6*v - v, -b*o - 4*v + 65 = 0. What is the highest common divisor of 39 and o?","(5) Four letters picked without replacement from {u: 3, y: 3, q: 5}. What is prob of sequence qquq?",5
023_323,Read through the given questions. Each question fall into one of the following categories. Choose a question of probability category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Convert 37.3712598 minutes to weeks.
(2) Suppose -2*z = 2*z - 12. Suppose 2*l - z = 1. Solve 4*n + l*b = -3*b + 12, 0 = -3*n + 3*b + 9 for n.
(3) What is the eighth root of 14079 to the nearest integer?
(4) Let p(x) = -5*x + 1. Let o be p(-2). Let b = 22 - o. Calculate the highest common factor of 44 and b.
(5) Two letters picked without replacement from hjqqqqmqmm. What is prob of picking 2 q?",(1) Convert 37.3712598 minutes to weeks.,"(2) Suppose -2*z = 2*z - 12. Suppose 2*l - z = 1. Solve 4*n + l*b = -3*b + 12, 0 = -3*n + 3*b + 9 for n.",(3) What is the eighth root of 14079 to the nearest integer?,(4) Let p(x) = -5*x + 1. Let o be p(-2). Let b = 22 - o. Calculate the highest common factor of 44 and b.,(5) Two letters picked without replacement from hjqqqqmqmm. What is prob of picking 2 q?,5
023_748,Read through the given questions. Each question fall into one of the following categories. Choose a question of arithmetic category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Calculate prob of picking 1 j and 1 a when two letters picked without replacement from {a: 10, j: 2, b: 2}.
(2) How many decades are there in 356318.7 months?
(3) (-3 - 2) + -1 + 0 + 1
(4) Solve -31*c + 50 = 236 for c.
(5) Suppose -27 = g - 70. What is the units digit of g?","(1) Calculate prob of picking 1 j and 1 a when two letters picked without replacement from {a: 10, j: 2, b: 2}.",(2) How many decades are there in 356318.7 months?,(3) (-3 - 2) + -1 + 0 + 1,(4) Solve -31*c + 50 = 236 for c.,(5) Suppose -27 = g - 70. What is the units digit of g?,3
023_558,Read through the given questions. Each question fall into one of the following categories. Choose a question of numbers category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Two letters picked without replacement from {j: 11, h: 2, r: 1, k: 1}. Give prob of picking 1 k and 1 h.
(2) How many grams are there in 7/2 of a kilogram?
(3) What is next in -154, -303, -450, -595?
(4) Suppose 2*k - 5 = 5. Suppose -4*a = -5*w + 30, 2*w - w - 15 = -a. Let v = w - 6. Calculate the remainder when k is divided by v.
(5) Work out 0 * 338.1.","(1) Two letters picked without replacement from {j: 11, h: 2, r: 1, k: 1}. Give prob of picking 1 k and 1 h.",(2) How many grams are there in 7/2 of a kilogram?,"(3) What is next in -154, -303, -450, -595?","(4) Suppose 2*k - 5 = 5. Suppose -4*a = -5*w + 30, 2*w - w - 15 = -a. Let v = w - 6. Calculate the remainder when k is divided by v.",(5) Work out 0 * 338.1.,4
023_145,Read through the given questions. Each question fall into one of the following categories. Choose a question of arithmetic category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Suppose 6*u - 226 = 92. Calculate the remainder when u is divided by 14.
(2) What is 0.3799377 weeks in minutes?
(3) Calculate prob of picking 1 v and 1 w when two letters picked without replacement from twtttvtqt.
(4) In base 6, what is 24 + 11021?
(5) Let f be 2 + (0 - -4) + -4. Solve -f*i - 3*m = -9, -5*m + 1 = -4 for i.",(1) Suppose 6*u - 226 = 92. Calculate the remainder when u is divided by 14.,(2) What is 0.3799377 weeks in minutes?,(3) Calculate prob of picking 1 v and 1 w when two letters picked without replacement from twtttvtqt.,"(4) In base 6, what is 24 + 11021?","(5) Let f be 2 + (0 - -4) + -4. Solve -f*i - 3*m = -9, -5*m + 1 = -4 for i.",4
023_620,Read through the given questions. Each question fall into one of the following categories. Choose a question of algebra category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Let g(m) = -m**2 - 2*m - 1. Let h be g(-3). Let t = h - -6. What is the units digit of t?
(2) Solve -4*o - 3*r - 3 = 14, 2*o - 2*r = 16 for o.
(3) How many centimeters are there in 198.0394 micrometers?
(4) Two letters picked without replacement from {x: 8, p: 5, a: 7}. Give prob of sequence xa.
(5) Evaluate (2/28)/(6/24).",(1) Let g(m) = -m**2 - 2*m - 1. Let h be g(-3). Let t = h - -6. What is the units digit of t?,"(2) Solve -4*o - 3*r - 3 = 14, 2*o - 2*r = 16 for o.",(3) How many centimeters are there in 198.0394 micrometers?,"(4) Two letters picked without replacement from {x: 8, p: 5, a: 7}. Give prob of sequence xa.",(5) Evaluate (2/28)/(6/24).,2
023_688,Read through the given questions. Each question fall into one of the following categories. Choose a question of algebra category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) How many millennia are there in 6.620795 decades?
(2) Three letters picked without replacement from {x: 6, l: 4, m: 9}. Give prob of picking 2 l and 1 m.
(3) Let i(c) = -c**3 + 5*c**2 + 5*c + 6. Let r be i(6). Suppose 5*p = 10 + 5. Solve 5*b + z = 13, r = 5*b - p*z - z - 23 for b.
(4) Let g(n) = 31*n + 1 + 2 - 30*n. Suppose -m - 4*m = -30. What is the units digit of g(m)?
(5) ((-36)/15)/((-176)/(-440))",(1) How many millennia are there in 6.620795 decades?,"(2) Three letters picked without replacement from {x: 6, l: 4, m: 9}. Give prob of picking 2 l and 1 m.","(3) Let i(c) = -c**3 + 5*c**2 + 5*c + 6. Let r be i(6). Suppose 5*p = 10 + 5. Solve 5*b + z = 13, r = 5*b - p*z - z - 23 for b.",(4) Let g(n) = 31*n + 1 + 2 - 30*n. Suppose -m - 4*m = -30. What is the units digit of g(m)?,(5) ((-36)/15)/((-176)/(-440)),3
023_295,Read through the given questions. Each question fall into one of the following categories. Choose a question of algebra category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) In base 3, what is 210202 - 10?
(2) Solve 5*a = -2*h + 15, 0 = -2*h + 6*a - 2*a - 12 for h.
(3) Three letters picked without replacement from {e: 3, z: 2}. Give prob of sequence eze.
(4) How many nanograms are there in 3/10 of a microgram?
(5) Let g = -109 - -229. What is the highest common factor of 80 and g?","(1) In base 3, what is 210202 - 10?","(2) Solve 5*a = -2*h + 15, 0 = -2*h + 6*a - 2*a - 12 for h.","(3) Three letters picked without replacement from {e: 3, z: 2}. Give prob of sequence eze.",(4) How many nanograms are there in 3/10 of a microgram?,(5) Let g = -109 - -229. What is the highest common factor of 80 and g?,2
023_105,Read through the given questions. Each question fall into one of the following categories. Choose a question of algebra category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Solve 9*a - 6*a + 9 = 0, 3*d + 3*a = -6 for d.
(2) Let v(j) = j**3 + 7*j**2 + 3*j - 2. What is the remainder when v(-5) is divided by 18?
(3) What is 30201.12 minutes in nanoseconds?
(4) What is the difference between -0.026764 and 0.1?
(5) Calculate prob of sequence ppy when three letters picked without replacement from {y: 2, p: 2}.","(1) Solve 9*a - 6*a + 9 = 0, 3*d + 3*a = -6 for d.",(2) Let v(j) = j**3 + 7*j**2 + 3*j - 2. What is the remainder when v(-5) is divided by 18?,(3) What is 30201.12 minutes in nanoseconds?,(4) What is the difference between -0.026764 and 0.1?,"(5) Calculate prob of sequence ppy when three letters picked without replacement from {y: 2, p: 2}.",1
023_334,Read through the given questions. Each question fall into one of the following categories. Choose a question of numbers category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Four letters picked without replacement from {e: 8, m: 2}. Give prob of sequence emme.
(2) Divide -4 by -4274.
(3) What is the next term in -85, -174, -263, -352, -441, -530?
(4) Suppose 0*x - 7*x = -42. What is the lowest common multiple of x and 3?
(5) How many decades are there in 8/25 of a millennium?","(1) Four letters picked without replacement from {e: 8, m: 2}. Give prob of sequence emme.",(2) Divide -4 by -4274.,"(3) What is the next term in -85, -174, -263, -352, -441, -530?",(4) Suppose 0*x - 7*x = -42. What is the lowest common multiple of x and 3?,(5) How many decades are there in 8/25 of a millennium?,4
023_339,Read through the given questions. Each question fall into one of the following categories. Choose a question of arithmetic category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Two letters picked without replacement from {z: 6, t: 2}. What is prob of picking 2 t?
(2) Let b(l) = -l**2 + 5*l. Let d be b(4). Suppose 2*c - k - 8 = 0, 5 = -c - k + 6. Let h(q) = 2*q**2 - 2*q + 2. Let w be h(c). Solve w - d = -5*v for v.
(3) How many years are there in eleven quarters of a millennium?
(4) -87 divided by 8
(5) Let g = -5193/5 - -1044. Let r = 135/49 - 3163/490. What is the common denominator of g and r?","(1) Two letters picked without replacement from {z: 6, t: 2}. What is prob of picking 2 t?","(2) Let b(l) = -l**2 + 5*l. Let d be b(4). Suppose 2*c - k - 8 = 0, 5 = -c - k + 6. Let h(q) = 2*q**2 - 2*q + 2. Let w be h(c). Solve w - d = -5*v for v.",(3) How many years are there in eleven quarters of a millennium?,(4) -87 divided by 8,(5) Let g = -5193/5 - -1044. Let r = 135/49 - 3163/490. What is the common denominator of g and r?,4
023_577,Read through the given questions. Each question fall into one of the following categories. Choose a question of measurement category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Let f be 2/(-5) + 44/10. Suppose -w + 2 - f = 0. Calculate the remainder when 19 is divided by 10 + (w - -2 - 0).
(2) How many tonnes are there in 7.535122 micrograms?
(3) What comes next: -7877, -7883, -7903, -7943, -8009, -8107, -8243, -8423?
(4) Calculate prob of sequence mmnn when four letters picked without replacement from nznnnznnzmmnzzn.
(5) What is 28847 to the power of 1/2, to the nearest integer?",(1) Let f be 2/(-5) + 44/10. Suppose -w + 2 - f = 0. Calculate the remainder when 19 is divided by 10 + (w - -2 - 0).,(2) How many tonnes are there in 7.535122 micrograms?,"(3) What comes next: -7877, -7883, -7903, -7943, -8009, -8107, -8243, -8423?",(4) Calculate prob of sequence mmnn when four letters picked without replacement from nznnnznnzmmnzzn.,"(5) What is 28847 to the power of 1/2, to the nearest integer?",2
023_397,Read through the given questions. Each question fall into one of the following categories. Choose a question of arithmetic category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Two letters picked without replacement from {m: 4, w: 2, a: 5}. Give prob of picking 1 a and 1 w.
(2) Evaluate ((-8)/(-12))/1*-3.
(3) Suppose g - 4*i + 3 = 31, -5 = i. What is the greatest common factor of 80 and g?
(4) Let q = 14 - 24. Let z = q + 21. Solve -z = 2*c - 1 for c.
(5) What is fifty-nine fifths of a microsecond in nanoseconds?","(1) Two letters picked without replacement from {m: 4, w: 2, a: 5}. Give prob of picking 1 a and 1 w.",(2) Evaluate ((-8)/(-12))/1*-3.,"(3) Suppose g - 4*i + 3 = 31, -5 = i. What is the greatest common factor of 80 and g?",(4) Let q = 14 - 24. Let z = q + 21. Solve -z = 2*c - 1 for c.,(5) What is fifty-nine fifths of a microsecond in nanoseconds?,2
023_673,Read through the given questions. Each question fall into one of the following categories. Choose a question of probability category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) What is the value of 2 + (-3 - (0 + -5)) - 2?
(2) Find the common denominator of 57/44 and ((-1695)/50)/(8/(-5) + -2).
(3) How many centuries are there in 1.133379 years?
(4) Let m = -2 + 9. Let u = -3 + 6. Solve -u = 2*n - m for n.
(5) Three letters picked without replacement from mmmpmmmmpmmpmmmmmpmm. Give prob of picking 3 p.",(1) What is the value of 2 + (-3 - (0 + -5)) - 2?,(2) Find the common denominator of 57/44 and ((-1695)/50)/(8/(-5) + -2).,(3) How many centuries are there in 1.133379 years?,(4) Let m = -2 + 9. Let u = -3 + 6. Solve -u = 2*n - m for n.,(5) Three letters picked without replacement from mmmpmmmmpmmpmmmmmpmm. Give prob of picking 3 p.,5
023_495,Read through the given questions. Each question fall into one of the following categories. Choose a question of probability category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Solve -30 = -14*r + 8*r for r.
(2) What is fourty-five eighths of a meter in millimeters?
(3) Suppose -9*j = -11*j + 78. What is the tens digit of j?
(4) 0.146*1
(5) What is prob of sequence dn when two letters picked without replacement from ndo?",(1) Solve -30 = -14*r + 8*r for r.,(2) What is fourty-five eighths of a meter in millimeters?,(3) Suppose -9*j = -11*j + 78. What is the tens digit of j?,(4) 0.146*1,(5) What is prob of sequence dn when two letters picked without replacement from ndo?,5
023_742,Read through the given questions. Each question fall into one of the following categories. Choose a question of algebra category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Let w be (1 + 1/(-1))/(-1). Suppose -2*n + 20 = 3*n - 5*b, w = 4*b. Solve -r = g, n*g + 0 = 3*r + 28 for r.
(2) Divide -651 by 3.
(3) Suppose 6*l - 22 = 56. Calculate the remainder when 100 is divided by l.
(4) What is prob of sequence heek when four letters picked without replacement from kehhkkhe?
(5) What is 710.4317 minutes in seconds?","(1) Let w be (1 + 1/(-1))/(-1). Suppose -2*n + 20 = 3*n - 5*b, w = 4*b. Solve -r = g, n*g + 0 = 3*r + 28 for r.",(2) Divide -651 by 3.,(3) Suppose 6*l - 22 = 56. Calculate the remainder when 100 is divided by l.,(4) What is prob of sequence heek when four letters picked without replacement from kehhkkhe?,(5) What is 710.4317 minutes in seconds?,1
023_392,Read through the given questions. Each question fall into one of the following categories. Choose a question of numbers category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Suppose 5*p + r + 65 = 472, 3*p - 5*r = 233. Let s(q) = -4*q - 3. Let g be s(-3). What is the greatest common factor of p and g?
(2) What is 7/4 of a millennium in decades?
(3) What is 51*(-5)/35 + 7?
(4) Four letters picked without replacement from {r: 4, u: 2}. What is prob of sequence urru?
(5) Let u(v) = -v + 5. Let t be u(2). Solve t*x + 21 = 3*r, -4*x + r = -0*r + 22 for x.","(1) Suppose 5*p + r + 65 = 472, 3*p - 5*r = 233. Let s(q) = -4*q - 3. Let g be s(-3). What is the greatest common factor of p and g?",(2) What is 7/4 of a millennium in decades?,(3) What is 51*(-5)/35 + 7?,"(4) Four letters picked without replacement from {r: 4, u: 2}. What is prob of sequence urru?","(5) Let u(v) = -v + 5. Let t be u(2). Solve t*x + 21 = 3*r, -4*x + r = -0*r + 22 for x.",1
023_611,Read through the given questions. Each question fall into one of the following categories. Choose a question of probability category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Let f = -4 + 15. What is the units digit of f - (-3 - (-3)/3)?
(2) What is prob of sequence fo when two letters picked without replacement from {o: 2, f: 1, n: 2, u: 4}?
(3) In base 13, what is -4b + 10?
(4) How many months are there in five eighths of a millennium?
(5) Suppose -4*t + 1 - 5 = 0, 3*t + 3 = 5*r. Suppose -3*a = a - 52. Solve -2*s + s - a = -4*c, -2*s + 5*c - 17 = r for s.",(1) Let f = -4 + 15. What is the units digit of f - (-3 - (-3)/3)?,"(2) What is prob of sequence fo when two letters picked without replacement from {o: 2, f: 1, n: 2, u: 4}?","(3) In base 13, what is -4b + 10?",(4) How many months are there in five eighths of a millennium?,"(5) Suppose -4*t + 1 - 5 = 0, 3*t + 3 = 5*r. Suppose -3*a = a - 52. Solve -2*s + s - a = -4*c, -2*s + 5*c - 17 = r for s.",2
023_744,Read through the given questions. Each question fall into one of the following categories. Choose a question of algebra category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Suppose 2*z + 3*c = 6, -52 = -4*z + c + 3*c. Solve 2*m + m + z = 0 for m.
(2) Let w(k) = 15*k**2 - k. Calculate the lowest common multiple of w(-1) and 6.
(3) Calculate prob of picking 1 v, 1 t, and 1 o when three letters picked without replacement from toofvvtfovrvvfooffv.
(4) What is 7/3 of a millennium in months?
(5) Calculate ((-4)/10)/(22/(-110)).","(1) Suppose 2*z + 3*c = 6, -52 = -4*z + c + 3*c. Solve 2*m + m + z = 0 for m.",(2) Let w(k) = 15*k**2 - k. Calculate the lowest common multiple of w(-1) and 6.,"(3) Calculate prob of picking 1 v, 1 t, and 1 o when three letters picked without replacement from toofvvtfovrvvfooffv.",(4) What is 7/3 of a millennium in months?,(5) Calculate ((-4)/10)/(22/(-110)).,1
023_578,Read through the given questions. Each question fall into one of the following categories. Choose a question of numbers category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Let m(x) = -10*x**3. Suppose 2*l - 4 = 2*y + 2, l - 2 = 0. What is the tens digit of m(y)?
(2) How many millimeters are there in fourty-nine quarters of a meter?
(3) What is prob of picking 3 e when three letters picked without replacement from {r: 3, e: 3}?
(4) What comes next: -18, -32, -60, -108, -182, -288, -432, -620?
(5) Calculate -14 - -5 - -8 - (3 + -1).","(1) Let m(x) = -10*x**3. Suppose 2*l - 4 = 2*y + 2, l - 2 = 0. What is the tens digit of m(y)?",(2) How many millimeters are there in fourty-nine quarters of a meter?,"(3) What is prob of picking 3 e when three letters picked without replacement from {r: 3, e: 3}?","(4) What comes next: -18, -32, -60, -108, -182, -288, -432, -620?",(5) Calculate -14 - -5 - -8 - (3 + -1).,1
023_525,Read through the given questions. Each question fall into one of the following categories. Choose a question of algebra category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Three letters picked without replacement from jgdjdjjgdudjj. Give prob of picking 3 j.
(2) What is sixty-four sevenths of a week in minutes?
(3) Let c = 5 + 0. Solve -c*u = -2*u + 3 for u.
(4) Let x(i) = i**3 + 5*i**2 - 6*i + 2. Let m be x(-6). Suppose 0 = -m*d + d + 13. What is the tens digit of d?
(5) Calculate (-8)/(51/34*28/(-3)).",(1) Three letters picked without replacement from jgdjdjjgdudjj. Give prob of picking 3 j.,(2) What is sixty-four sevenths of a week in minutes?,(3) Let c = 5 + 0. Solve -c*u = -2*u + 3 for u.,(4) Let x(i) = i**3 + 5*i**2 - 6*i + 2. Let m be x(-6). Suppose 0 = -m*d + d + 13. What is the tens digit of d?,(5) Calculate (-8)/(51/34*28/(-3)).,3
023_29,Read through the given questions. Each question fall into one of the following categories. Choose a question of measurement category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Four letters picked without replacement from {m: 12, w: 3}. Give prob of picking 1 m and 3 w.
(2) Calculate 4 + -2 + -1 + (2 - -1).
(3) Let b = 40 + -18. Calculate the least common multiple of 42 and b.
(4) Solve -2 + 48 = -23*w for w.
(5) Convert 7.612599 years to decades.","(1) Four letters picked without replacement from {m: 12, w: 3}. Give prob of picking 1 m and 3 w.",(2) Calculate 4 + -2 + -1 + (2 - -1).,(3) Let b = 40 + -18. Calculate the least common multiple of 42 and b.,(4) Solve -2 + 48 = -23*w for w.,(5) Convert 7.612599 years to decades.,5
023_367,Read through the given questions. Each question fall into one of the following categories. Choose a question of measurement category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) How many millilitres are there in 50619.63 litres?
(2) Solve -12*h + 14 = 2*h for h.
(3) Calculate 0.85*-2.
(4) Suppose -25 = -3*c + 29. What is the highest common factor of 18 and c?
(5) What is prob of sequence jijr when four letters picked without replacement from {r: 1, i: 1, j: 2}?",(1) How many millilitres are there in 50619.63 litres?,(2) Solve -12*h + 14 = 2*h for h.,(3) Calculate 0.85*-2.,(4) Suppose -25 = -3*c + 29. What is the highest common factor of 18 and c?,"(5) What is prob of sequence jijr when four letters picked without replacement from {r: 1, i: 1, j: 2}?",1
023_109,Read through the given questions. Each question fall into one of the following categories. Choose a question of measurement category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) What is the value of 738/82 + (-83)/9?
(2) What is 60343.12mm in meters?
(3) Let g = 3 - -12. What is the tens digit of g/9*18/1?
(4) Two letters picked without replacement from {a: 5, o: 1, x: 5}. What is prob of picking 1 x and 1 o?
(5) What comes next: 73, 97, 129, 163, 193, 213?",(1) What is the value of 738/82 + (-83)/9?,(2) What is 60343.12mm in meters?,(3) Let g = 3 - -12. What is the tens digit of g/9*18/1?,"(4) Two letters picked without replacement from {a: 5, o: 1, x: 5}. What is prob of picking 1 x and 1 o?","(5) What comes next: 73, 97, 129, 163, 193, 213?",2
023_172,Read through the given questions. Each question fall into one of the following categories. Choose a question of probability category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Convert 0.268776 millennia to centuries.
(2) Let y be ((-100)/15 + 4)*-3. What is the highest common factor of 20 and y?
(3) Solve -4*h + 9 = 41 for h.
(4) Calculate -4332 divided by 1444.
(5) What is prob of picking 2 v and 1 x when three letters picked without replacement from xmxvxmvvmmxmvx?",(1) Convert 0.268776 millennia to centuries.,(2) Let y be ((-100)/15 + 4)*-3. What is the highest common factor of 20 and y?,(3) Solve -4*h + 9 = 41 for h.,(4) Calculate -4332 divided by 1444.,(5) What is prob of picking 2 v and 1 x when three letters picked without replacement from xmxvxmvvmmxmvx?,5
023_414,Read through the given questions. Each question fall into one of the following categories. Choose a question of algebra category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Let p = 182843/22 + -8316. Calculate the common denominator of 70/32 - (1 + -1) and p.
(2) Let y(a) = -a + 5. Let m be y(3). Solve f + 16 = -0*f - 4*c, -3*c - 12 = -m*f for f.
(3) How many milliseconds are there in 38.5396 microseconds?
(4) Calculate (3/(-6))/(33/(-44)).
(5) What is prob of picking 1 h and 2 p when three letters picked without replacement from {h: 1, e: 3, p: 2, n: 6, q: 1}?",(1) Let p = 182843/22 + -8316. Calculate the common denominator of 70/32 - (1 + -1) and p.,"(2) Let y(a) = -a + 5. Let m be y(3). Solve f + 16 = -0*f - 4*c, -3*c - 12 = -m*f for f.",(3) How many milliseconds are there in 38.5396 microseconds?,(4) Calculate (3/(-6))/(33/(-44)).,"(5) What is prob of picking 1 h and 2 p when three letters picked without replacement from {h: 1, e: 3, p: 2, n: 6, q: 1}?",2
023_23,Read through the given questions. Each question fall into one of the following categories. Choose a question of numbers category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Let h be (-78)/(-24) + (-3)/12. Suppose h*z - 42 = -z + 2*f, z = f + 8. What is the remainder when 24 is divided by z?
(2) What is 62991 to the power of 1/2, to the nearest integer?
(3) Suppose 5 = -p, -4*z - 15 = 5*p + 6. Let l be 8 + 9/9*(-8 + 3). Solve -m = 2*j + z, -13 = l*j - 2*m + 6 for j.
(4) Calculate prob of picking 1 j, 1 n, and 2 g when four letters picked without replacement from innvgninjnngvnn.
(5) What is 82497.11cm in kilometers?","(1) Let h be (-78)/(-24) + (-3)/12. Suppose h*z - 42 = -z + 2*f, z = f + 8. What is the remainder when 24 is divided by z?","(2) What is 62991 to the power of 1/2, to the nearest integer?","(3) Suppose 5 = -p, -4*z - 15 = 5*p + 6. Let l be 8 + 9/9*(-8 + 3). Solve -m = 2*j + z, -13 = l*j - 2*m + 6 for j.","(4) Calculate prob of picking 1 j, 1 n, and 2 g when four letters picked without replacement from innvgninjnngvnn.",(5) What is 82497.11cm in kilometers?,1
023_362,Read through the given questions. Each question fall into one of the following categories. Choose a question of arithmetic category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Solve 2*o = 3*t + 3 - 14, -4*o = -3*t + 19 for t.
(2) Calculate prob of picking 1 i and 2 c when three letters picked without replacement from {i: 6, m: 7, c: 2}.
(3) How many months are there in five quarters of a year?
(4) What is the value of (-10)/10 - (-12)/6?
(5) Suppose -q = 4*q. Suppose 0 = 3*t - 0*p + 3*p - 39, t - 4*p - 8 = q. What is the tens digit of t?","(1) Solve 2*o = 3*t + 3 - 14, -4*o = -3*t + 19 for t.","(2) Calculate prob of picking 1 i and 2 c when three letters picked without replacement from {i: 6, m: 7, c: 2}.",(3) How many months are there in five quarters of a year?,(4) What is the value of (-10)/10 - (-12)/6?,"(5) Suppose -q = 4*q. Suppose 0 = 3*t - 0*p + 3*p - 39, t - 4*p - 8 = q. What is the tens digit of t?",4
023_709,Read through the given questions. Each question fall into one of the following categories. Choose a question of measurement category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) In base 14, what is -59c - 3?
(2) What is 5/8 of a litre in millilitres?
(3) Calculate prob of picking 2 w, 1 x, and 1 f when four letters picked without replacement from xzwwbzwgfzgwwwz.
(4) Let u = 79/5 + -87/5. Suppose -6*c - 128 = -2*c - 2*y, -12 = -3*y. What is the common denominator of u and 6/2 + (-252)/c?
(5) Suppose b + 2*b = 0. Suppose -4*v + 1 = -11. Solve b = -n + v - 2 for n.","(1) In base 14, what is -59c - 3?",(2) What is 5/8 of a litre in millilitres?,"(3) Calculate prob of picking 2 w, 1 x, and 1 f when four letters picked without replacement from xzwwbzwgfzgwwwz.","(4) Let u = 79/5 + -87/5. Suppose -6*c - 128 = -2*c - 2*y, -12 = -3*y. What is the common denominator of u and 6/2 + (-252)/c?",(5) Suppose b + 2*b = 0. Suppose -4*v + 1 = -11. Solve b = -n + v - 2 for n.,2
023_213,Read through the given questions. Each question fall into one of the following categories. Choose a question of numbers category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Calculate prob of sequence wx when two letters picked without replacement from {n: 2, w: 1, x: 1, l: 4, d: 2}.
(2) What is 56508 divided by 4?
(3) How many kilometers are there in 90.73232 micrometers?
(4) Let y = 6 - 7. Let o = -2 - y. What is the units digit of (o + -1)*(-6)/4?
(5) What is next in 35, 68, 101, 134, 167?","(1) Calculate prob of sequence wx when two letters picked without replacement from {n: 2, w: 1, x: 1, l: 4, d: 2}.",(2) What is 56508 divided by 4?,(3) How many kilometers are there in 90.73232 micrometers?,(4) Let y = 6 - 7. Let o = -2 - y. What is the units digit of (o + -1)*(-6)/4?,"(5) What is next in 35, 68, 101, 134, 167?",4
023_138,Read through the given questions. Each question fall into one of the following categories. Choose a question of probability category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) What is twenty-three sevenths of a week in hours?
(2) Work out 162 * 0.26.
(3) Let h(z) = 2*z + z + 0*z. Let g be h(1). Let n be (g/(-2) - -2)*34. What is the highest common factor of 17 and n?
(4) Three letters picked without replacement from gggppgfffwgppggfwd. What is prob of picking 1 f, 1 d, and 1 g?
(5) Let b(o) = -o**3 + 3*o**2 + 8*o + 15. Let q be b(5). Solve 0 = q*g - 13 + 3 for g.",(1) What is twenty-three sevenths of a week in hours?,(2) Work out 162 * 0.26.,(3) Let h(z) = 2*z + z + 0*z. Let g be h(1). Let n be (g/(-2) - -2)*34. What is the highest common factor of 17 and n?,"(4) Three letters picked without replacement from gggppgfffwgppggfwd. What is prob of picking 1 f, 1 d, and 1 g?",(5) Let b(o) = -o**3 + 3*o**2 + 8*o + 15. Let q be b(5). Solve 0 = q*g - 13 + 3 for g.,4
023_472,Read through the given questions. Each question fall into one of the following categories. Choose a question of numbers category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Calculate 210 divided by 5.
(2) How many minutes are there in eight fifteenths of a hour?
(3) Four letters picked without replacement from mhohmmmommhnohoomh. Give prob of picking 4 h.
(4) Suppose 6*x - 13 - 5 = 0. Solve z = 5*b + 3*z - 23, x*z + 3 = 5*b for b.
(5) Let c be ((-2)/(-3))/((-3)/(-9)). Let i(h) = 12*h**2 + 2*h. What is the remainder when i(c) is divided by 11?",(1) Calculate 210 divided by 5.,(2) How many minutes are there in eight fifteenths of a hour?,(3) Four letters picked without replacement from mhohmmmommhnohoomh. Give prob of picking 4 h.,"(4) Suppose 6*x - 13 - 5 = 0. Solve z = 5*b + 3*z - 23, x*z + 3 = 5*b for b.",(5) Let c be ((-2)/(-3))/((-3)/(-9)). Let i(h) = 12*h**2 + 2*h. What is the remainder when i(c) is divided by 11?,5
023_711,Read through the given questions. Each question fall into one of the following categories. Choose a question of probability category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) What is prob of sequence gw when two letters picked without replacement from rrrrwggrwprg?
(2) What is 85.89907t in micrograms?
(3) Suppose 3*p + 3*c - 24 = 0, -4*p - 10 + 42 = -3*c. Solve 4*a + o + p - 20 = 0, 3*o + 12 = 0 for a.
(4) Let p(s) be the first derivative of s**3/3 + s**2 + 3. Let v be p(-2). What is the units digit of 11/(-1)*(v + -1)?
(5) Calculate 2 + 2 - (-16 - -16).",(1) What is prob of sequence gw when two letters picked without replacement from rrrrwggrwprg?,(2) What is 85.89907t in micrograms?,"(3) Suppose 3*p + 3*c - 24 = 0, -4*p - 10 + 42 = -3*c. Solve 4*a + o + p - 20 = 0, 3*o + 12 = 0 for a.",(4) Let p(s) be the first derivative of s**3/3 + s**2 + 3. Let v be p(-2). What is the units digit of 11/(-1)*(v + -1)?,(5) Calculate 2 + 2 - (-16 - -16).,1
023_257,Read through the given questions. Each question fall into one of the following categories. Choose a question of arithmetic category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) What is the value of -14 - ((2 - 3) + -11 + 9)?
(2) Suppose 5*x - 7 = -22. Let p = 11 + x. Let b be p/2 - 1/1. Solve 0 = -m + b*m - 6 for m.
(3) Suppose i + 9 = -2*i. Let d = 7 + i. Let a be (3/(-1))/(3/(-10)). Calculate the highest common divisor of d and a.
(4) Calculate prob of sequence xk when two letters picked without replacement from {x: 4, k: 14}.
(5) What is 32.32246t in kilograms?",(1) What is the value of -14 - ((2 - 3) + -11 + 9)?,(2) Suppose 5*x - 7 = -22. Let p = 11 + x. Let b be p/2 - 1/1. Solve 0 = -m + b*m - 6 for m.,(3) Suppose i + 9 = -2*i. Let d = 7 + i. Let a be (3/(-1))/(3/(-10)). Calculate the highest common divisor of d and a.,"(4) Calculate prob of sequence xk when two letters picked without replacement from {x: 4, k: 14}.",(5) What is 32.32246t in kilograms?,1
023_541,Read through the given questions. Each question fall into one of the following categories. Choose a question of algebra category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Calculate -15690 divided by -5.
(2) Convert 155.2289 millennia to months.
(3) Let l be ((-7)/(-3) + 0)*6. Let h(g) = g**3 - 2*g**2 - 3*g + 1. Let s be h(4). Calculate the highest common factor of l and s.
(4) Three letters picked without replacement from {s: 5, f: 4, l: 1}. What is prob of picking 2 f and 1 l?
(5) Solve 15*a + 29 = 104 for a.",(1) Calculate -15690 divided by -5.,(2) Convert 155.2289 millennia to months.,(3) Let l be ((-7)/(-3) + 0)*6. Let h(g) = g**3 - 2*g**2 - 3*g + 1. Let s be h(4). Calculate the highest common factor of l and s.,"(4) Three letters picked without replacement from {s: 5, f: 4, l: 1}. What is prob of picking 2 f and 1 l?",(5) Solve 15*a + 29 = 104 for a.,5
023_37,Read through the given questions. Each question fall into one of the following categories. Choose a question of numbers category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) What is 32972 to the power of 1/3, to the nearest integer?
(2) How many micrograms are there in 0.315609 tonnes?
(3) Calculate prob of picking 2 k and 1 m when three letters picked without replacement from kkkmkkm.
(4) Suppose 0*x - x - 9 = 0. Let b = -2 - x. What is the units digit of b?
(5) Solve 14*c - 20 = 10*c for c.","(1) What is 32972 to the power of 1/3, to the nearest integer?",(2) How many micrograms are there in 0.315609 tonnes?,(3) Calculate prob of picking 2 k and 1 m when three letters picked without replacement from kkkmkkm.,(4) Suppose 0*x - x - 9 = 0. Let b = -2 - x. What is the units digit of b?,(5) Solve 14*c - 20 = 10*c for c.,4
023_291,Read through the given questions. Each question fall into one of the following categories. Choose a question of measurement category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Two letters picked without replacement from {f: 2, j: 2, b: 2}. What is prob of sequence fj?
(2) How many minutes are there in sixty-four fifths of a hour?
(3) Let i(v) = 4*v - 4. Let m be i(6). Solve 6*k - k = m for k.
(4) Calculate -44 + 38 + (0 - (-4 - 2)).
(5) Suppose -2*q - 2 = -34. Calculate the least common multiple of q and 10.","(1) Two letters picked without replacement from {f: 2, j: 2, b: 2}. What is prob of sequence fj?",(2) How many minutes are there in sixty-four fifths of a hour?,(3) Let i(v) = 4*v - 4. Let m be i(6). Solve 6*k - k = m for k.,(4) Calculate -44 + 38 + (0 - (-4 - 2)).,(5) Suppose -2*q - 2 = -34. Calculate the least common multiple of q and 10.,2
023_564,Read through the given questions. Each question fall into one of the following categories. Choose a question of probability category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Product of 0.5 and 0.00302.
(2) Let f(c) = 53*c + 6. Let p be f(3). What is the highest common divisor of p and 15?
(3) Calculate prob of picking 1 l and 1 w when two letters picked without replacement from kxxvwxwxxxlxxxxwk.
(4) What is 3.561788l in millilitres?
(5) Solve 3*l - 2*n + 4*n = 1, -n = -l + 2 for l.",(1) Product of 0.5 and 0.00302.,(2) Let f(c) = 53*c + 6. Let p be f(3). What is the highest common divisor of p and 15?,(3) Calculate prob of picking 1 l and 1 w when two letters picked without replacement from kxxvwxwxxxlxxxxwk.,(4) What is 3.561788l in millilitres?,"(5) Solve 3*l - 2*n + 4*n = 1, -n = -l + 2 for l.",3
023_268,Read through the given questions. Each question fall into one of the following categories. Choose a question of probability category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Let n = -74 + 82. Calculate the remainder when n is divided by 2 - (2/2 + -2).
(2) Solve 24*b + 162 = -3*b for b.
(3) What is 3/10 of a millennium in years?
(4) What is the cube root of 153647 to the nearest integer?
(5) Four letters picked without replacement from {c: 2, f: 3, z: 4, a: 9}. What is prob of picking 3 f and 1 z?",(1) Let n = -74 + 82. Calculate the remainder when n is divided by 2 - (2/2 + -2).,(2) Solve 24*b + 162 = -3*b for b.,(3) What is 3/10 of a millennium in years?,(4) What is the cube root of 153647 to the nearest integer?,"(5) Four letters picked without replacement from {c: 2, f: 3, z: 4, a: 9}. What is prob of picking 3 f and 1 z?",5
023_59,Read through the given questions. Each question fall into one of the following categories. Choose a question of probability category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) How many centimeters are there in 3/16 of a kilometer?
(2) What is the tenth root of 6568 to the nearest integer?
(3) What is the next term in 15, 53, 91, 129, 167?
(4) Let v(g) be the third derivative of g**5/60 - g**4/8 + 5*g**3/6 + 2*g**2. Suppose 2 = -3*f + 14. What is the units digit of v(f)?
(5) Four letters picked without replacement from brrbbb. What is prob of picking 2 b and 2 r?",(1) How many centimeters are there in 3/16 of a kilometer?,(2) What is the tenth root of 6568 to the nearest integer?,"(3) What is the next term in 15, 53, 91, 129, 167?",(4) Let v(g) be the third derivative of g**5/60 - g**4/8 + 5*g**3/6 + 2*g**2. Suppose 2 = -3*f + 14. What is the units digit of v(f)?,(5) Four letters picked without replacement from brrbbb. What is prob of picking 2 b and 2 r?,5
023_21,Read through the given questions. Each question fall into one of the following categories. Choose a question of arithmetic category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Suppose 6*o = 4*o. Suppose -4*k + 5*k - 2 = o. Suppose 0 = k*d + 3*d + 3*a - 73, -d = -3*a - 11. What is the least common multiple of d and 20?
(2) How many months are there in one twentieth of a decade?
(3) What is the value of ((-12)/(-3)*1)/8?
(4) Three letters picked without replacement from ccvvvvvbbvvvvvvbcv. What is prob of picking 2 b and 1 c?
(5) Let m be -2*1*(-5)/2. Let k be 0/3 + 6 + -2. Suppose 4*n = 2*n + k. Solve 0 = n*q + m + 1 for q.","(1) Suppose 6*o = 4*o. Suppose -4*k + 5*k - 2 = o. Suppose 0 = k*d + 3*d + 3*a - 73, -d = -3*a - 11. What is the least common multiple of d and 20?",(2) How many months are there in one twentieth of a decade?,(3) What is the value of ((-12)/(-3)*1)/8?,(4) Three letters picked without replacement from ccvvvvvbbvvvvvvbcv. What is prob of picking 2 b and 1 c?,(5) Let m be -2*1*(-5)/2. Let k be 0/3 + 6 + -2. Suppose 4*n = 2*n + k. Solve 0 = n*q + m + 1 for q.,3
023_222,Read through the given questions. Each question fall into one of the following categories. Choose a question of probability category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Convert 4.029552 years to decades.
(2) What is prob of picking 1 l and 1 w when two letters picked without replacement from {h: 6, l: 3, g: 3, d: 2, w: 1}?
(3) What comes next: 53, 43, 37, 35, 37, 43?
(4) Let h(i) = 29*i + 2. Calculate the remainder when 122 is divided by h(1).
(5) In base 3, what is 12 - -11020?",(1) Convert 4.029552 years to decades.,"(2) What is prob of picking 1 l and 1 w when two letters picked without replacement from {h: 6, l: 3, g: 3, d: 2, w: 1}?","(3) What comes next: 53, 43, 37, 35, 37, 43?",(4) Let h(i) = 29*i + 2. Calculate the remainder when 122 is divided by h(1).,"(5) In base 3, what is 12 - -11020?",2
023_199,Read through the given questions. Each question fall into one of the following categories. Choose a question of numbers category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Suppose -b - 3*g = 2*b - 231, -310 = -4*b - 2*g. Suppose -5*k = -10, 5*k + b = 2*u - 0*u. What is the units digit of u?
(2) What is the value of 40/180*45/(-20)?
(3) What is prob of picking 3 u when three letters picked without replacement from xuuxxuc?
(4) What is next in 112, 226, 346, 472, 604, 742?
(5) What is 0.572882mm in nanometers?","(1) Suppose -b - 3*g = 2*b - 231, -310 = -4*b - 2*g. Suppose -5*k = -10, 5*k + b = 2*u - 0*u. What is the units digit of u?",(2) What is the value of 40/180*45/(-20)?,(3) What is prob of picking 3 u when three letters picked without replacement from xuuxxuc?,"(4) What is next in 112, 226, 346, 472, 604, 742?",(5) What is 0.572882mm in nanometers?,1
023_108,Read through the given questions. Each question fall into one of the following categories. Choose a question of probability category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) What is the value of (-2*4/(-72))/(1/(-2))?
(2) What is prob of picking 3 g when three letters picked without replacement from {g: 12, j: 1}?
(3) Solve 5*w + 3 = -2 for w.
(4) Suppose 5*d + 2*m - 50 = 0, d + 4*m - 8 - 2 = 0. Let w(x) = -x**2 + 11*x - 9. Let r be w(d). Calculate the remainder when 17 is divided by (-33)/(-3) - 2/r.
(5) How many millilitres are there in three eighths of a litre?",(1) What is the value of (-2*4/(-72))/(1/(-2))?,"(2) What is prob of picking 3 g when three letters picked without replacement from {g: 12, j: 1}?",(3) Solve 5*w + 3 = -2 for w.,"(4) Suppose 5*d + 2*m - 50 = 0, d + 4*m - 8 - 2 = 0. Let w(x) = -x**2 + 11*x - 9. Let r be w(d). Calculate the remainder when 17 is divided by (-33)/(-3) - 2/r.",(5) How many millilitres are there in three eighths of a litre?,2
023_418,Read through the given questions. Each question fall into one of the following categories. Choose a question of probability category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) What is the next term in -1189, -2370, -3551, -4732?
(2) What is one twentieth of a kilogram in grams?
(3) Calculate -2*2/8*-6.
(4) Four letters picked without replacement from zaaaaaaaaaz. Give prob of picking 4 a.
(5) Let y(x) = 15*x**2 - 9*x + 7. Let z(m) = -8*m**2 + 4*m - 3. Let h(c) = -4*y(c) - 9*z(c). What is the smallest common multiple of 3 and h(1)?","(1) What is the next term in -1189, -2370, -3551, -4732?",(2) What is one twentieth of a kilogram in grams?,(3) Calculate -2*2/8*-6.,(4) Four letters picked without replacement from zaaaaaaaaaz. Give prob of picking 4 a.,(5) Let y(x) = 15*x**2 - 9*x + 7. Let z(m) = -8*m**2 + 4*m - 3. Let h(c) = -4*y(c) - 9*z(c). What is the smallest common multiple of 3 and h(1)?,4
023_641,Read through the given questions. Each question fall into one of the following categories. Choose a question of algebra category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Calculate prob of picking 3 a and 1 o when four letters picked without replacement from {a: 1, t: 6, o: 2, m: 4, c: 3}.
(2) What is 37.19993 centimeters in meters?
(3) What is -279 divided by -3?
(4) Solve -2*m + 1 + 14 = 5*j, 5*j = 2*m + 35 for m.
(5) Calculate the remainder when -4*2/4*(2 - 43) is divided by 206/10 + (-4)/(-10).","(1) Calculate prob of picking 3 a and 1 o when four letters picked without replacement from {a: 1, t: 6, o: 2, m: 4, c: 3}.",(2) What is 37.19993 centimeters in meters?,(3) What is -279 divided by -3?,"(4) Solve -2*m + 1 + 14 = 5*j, 5*j = 2*m + 35 for m.",(5) Calculate the remainder when -4*2/4*(2 - 43) is divided by 206/10 + (-4)/(-10).,4
023_454,Read through the given questions. Each question fall into one of the following categories. Choose a question of measurement category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Calculate -0.3*-1.58.
(2) Let i be 1 - -1 - 0 - -2. Suppose -i*q - 9 = -7*q. Solve -4*l + 3*w = l - 1, q*w = -6 for l.
(3) Let o(c) = 2*c**2 - 5*c. Let k be o(4). Let z = k + 12. What is the remainder when 47 is divided by z?
(4) Three letters picked without replacement from mwwswwmswmuummwwmwww. What is prob of sequence usm?
(5) What is 3/5 of a millennium in decades?",(1) Calculate -0.3*-1.58.,"(2) Let i be 1 - -1 - 0 - -2. Suppose -i*q - 9 = -7*q. Solve -4*l + 3*w = l - 1, q*w = -6 for l.",(3) Let o(c) = 2*c**2 - 5*c. Let k be o(4). Let z = k + 12. What is the remainder when 47 is divided by z?,(4) Three letters picked without replacement from mwwswwmswmuummwwmwww. What is prob of sequence usm?,(5) What is 3/5 of a millennium in decades?,5
023_715,Read through the given questions. Each question fall into one of the following categories. Choose a question of numbers category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Let z = 82 + -35. What is the remainder when 186 is divided by z?
(2) What is the third root of 27434 to the nearest integer?
(3) Convert 3.891685 days to milliseconds.
(4) Four letters picked without replacement from ccdccccdc. What is prob of sequence cdcc?
(5) Solve 0 = 5*f - 24 + 14 for f.",(1) Let z = 82 + -35. What is the remainder when 186 is divided by z?,(2) What is the third root of 27434 to the nearest integer?,(3) Convert 3.891685 days to milliseconds.,(4) Four letters picked without replacement from ccdccccdc. What is prob of sequence cdcc?,(5) Solve 0 = 5*f - 24 + 14 for f.,1
023_725,Read through the given questions. Each question fall into one of the following categories. Choose a question of algebra category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) What is prob of picking 2 f when two letters picked without replacement from {w: 2, x: 4, f: 1}?
(2) Solve -i + z + 1 = 0, 17 = 2*i - 7*z + 2*z for i.
(3) Evaluate 0/(((-2)/(-3))/(64/96)).
(4) What is 3.03667 weeks in hours?
(5) Let d(m) = 0*m - 5*m - 2 + 2*m + m. Let x be d(-6). What is the units digit of (-6)/x - 215/(-25)?","(1) What is prob of picking 2 f when two letters picked without replacement from {w: 2, x: 4, f: 1}?","(2) Solve -i + z + 1 = 0, 17 = 2*i - 7*z + 2*z for i.",(3) Evaluate 0/(((-2)/(-3))/(64/96)).,(4) What is 3.03667 weeks in hours?,(5) Let d(m) = 0*m - 5*m - 2 + 2*m + m. Let x be d(-6). What is the units digit of (-6)/x - 215/(-25)?,2
023_241,Read through the given questions. Each question fall into one of the following categories. Choose a question of probability category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Let g be (-3)/15 - (-1)/5. Suppose g*c - 10 = -2*c. Suppose 0 = 3*b - 17 + 5. Solve z = c*z, 0 = -b*w - 4*z for w.
(2) Convert 95.72964cm to kilometers.
(3) Calculate prob of picking 4 b when four letters picked without replacement from bddbbdbdbddbbbdbbddb.
(4) Let s = -22 + 57. Let l = s + -22. Calculate the greatest common divisor of l and 65.
(5) Calculate (((-558)/72)/(-31))/((-2)/(-4)).","(1) Let g be (-3)/15 - (-1)/5. Suppose g*c - 10 = -2*c. Suppose 0 = 3*b - 17 + 5. Solve z = c*z, 0 = -b*w - 4*z for w.",(2) Convert 95.72964cm to kilometers.,(3) Calculate prob of picking 4 b when four letters picked without replacement from bddbbdbdbddbbbdbbddb.,(4) Let s = -22 + 57. Let l = s + -22. Calculate the greatest common divisor of l and 65.,(5) Calculate (((-558)/72)/(-31))/((-2)/(-4)).,3
023_779,Read through the given questions. Each question fall into one of the following categories. Choose a question of probability category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) What is prob of picking 1 g and 1 k when two letters picked without replacement from {k: 1, l: 1, g: 1, b: 1, p: 1}?
(2) What comes next: -86, -759, -2586, -6143, -12006, -20751, -32954, -49191?
(3) Let m be 6*(1 - 70/4). Let v = m - -145. Suppose -2*x + 24 = -8. Calculate the remainder when v is divided by x.
(4) What is 43.59957 kilograms in tonnes?
(5) Calculate 5544 divided by -462.","(1) What is prob of picking 1 g and 1 k when two letters picked without replacement from {k: 1, l: 1, g: 1, b: 1, p: 1}?","(2) What comes next: -86, -759, -2586, -6143, -12006, -20751, -32954, -49191?",(3) Let m be 6*(1 - 70/4). Let v = m - -145. Suppose -2*x + 24 = -8. Calculate the remainder when v is divided by x.,(4) What is 43.59957 kilograms in tonnes?,(5) Calculate 5544 divided by -462.,1
023_700,Read through the given questions. Each question fall into one of the following categories. Choose a question of arithmetic category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Convert 8.525023ml to litres.
(2) Three letters picked without replacement from {s: 9, k: 5}. What is prob of picking 3 k?
(3) What is the square root of 1682 to the nearest integer?
(4) What is next in -15, -21, -25, -27, -27?
(5) Let g = 6 - 6. Let b = 3 + g. Suppose -w - b = -21. What is the tens digit of w?",(1) Convert 8.525023ml to litres.,"(2) Three letters picked without replacement from {s: 9, k: 5}. What is prob of picking 3 k?",(3) What is the square root of 1682 to the nearest integer?,"(4) What is next in -15, -21, -25, -27, -27?",(5) Let g = 6 - 6. Let b = 3 + g. Suppose -w - b = -21. What is the tens digit of w?,3
023_612,Read through the given questions. Each question fall into one of the following categories. Choose a question of measurement category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) 2 + -7 + (0 - (-1 + 0))
(2) Convert 9.95383km to centimeters.
(3) Three letters picked without replacement from {i: 2, a: 1, x: 2, w: 1}. Give prob of picking 2 x and 1 i.
(4) Solve 0 = 2*m - 3 + 5 for m.
(5) Suppose 3 = -t + 4*t. Let g(h) = h**2 + 7*h + 1. Let x be g(-7). Calculate the remainder when 3 + x/(2 + -3) is divided by t.",(1) 2 + -7 + (0 - (-1 + 0)),(2) Convert 9.95383km to centimeters.,"(3) Three letters picked without replacement from {i: 2, a: 1, x: 2, w: 1}. Give prob of picking 2 x and 1 i.",(4) Solve 0 = 2*m - 3 + 5 for m.,(5) Suppose 3 = -t + 4*t. Let g(h) = h**2 + 7*h + 1. Let x be g(-7). Calculate the remainder when 3 + x/(2 + -3) is divided by t.,2
023_542,Read through the given questions. Each question fall into one of the following categories. Choose a question of measurement category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Suppose 4*t = 39 - 27. Solve t - 4 = -a for a.
(2) Calculate (492/(-287))/((-30)/(-21)).
(3) What is prob of picking 2 d when two letters picked without replacement from {z: 6, d: 6}?
(4) What is eight thirds of a millennium in months?
(5) Let c = 55 + -29. What is the tens digit of c?",(1) Suppose 4*t = 39 - 27. Solve t - 4 = -a for a.,(2) Calculate (492/(-287))/((-30)/(-21)).,"(3) What is prob of picking 2 d when two letters picked without replacement from {z: 6, d: 6}?",(4) What is eight thirds of a millennium in months?,(5) Let c = 55 + -29. What is the tens digit of c?,4
023_174,Read through the given questions. Each question fall into one of the following categories. Choose a question of algebra category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Suppose 0*l = -l + 56. Let y = l - 6. What is the highest common divisor of 10 and y?
(2) Solve 0 = -4*j - 906 + 894 for j.
(3) In base 13, what is 226 - -3?
(4) How many nanoseconds are there in five quarters of a microsecond?
(5) Calculate prob of picking 3 q when three letters picked without replacement from {q: 4, g: 6}.",(1) Suppose 0*l = -l + 56. Let y = l - 6. What is the highest common divisor of 10 and y?,(2) Solve 0 = -4*j - 906 + 894 for j.,"(3) In base 13, what is 226 - -3?",(4) How many nanoseconds are there in five quarters of a microsecond?,"(5) Calculate prob of picking 3 q when three letters picked without replacement from {q: 4, g: 6}.",2
023_766,Read through the given questions. Each question fall into one of the following categories. Choose a question of algebra category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Let x = 17 - 12. Suppose 0 = -f - 2*f - l + 61, 105 = x*f + 5*l. What is the highest common divisor of 30 and f?
(2) How many hours are there in 379.1952 minutes?
(3) What is prob of picking 3 m when three letters picked without replacement from ymyymtmyyymvymmvyymm?
(4) Let w be 94/18 + 4/(-18). Let i(j) = j**3 + j**2 - 4*j + 6. Let y be i(4). Let q be (1 + 1/(-2))*y. Solve -x - 10 = -0*x - 5*r, -4*x - w*r = -q for x.
(5) What is 6*(16/20)/(6/5)?","(1) Let x = 17 - 12. Suppose 0 = -f - 2*f - l + 61, 105 = x*f + 5*l. What is the highest common divisor of 30 and f?",(2) How many hours are there in 379.1952 minutes?,(3) What is prob of picking 3 m when three letters picked without replacement from ymyymtmyyymvymmvyymm?,"(4) Let w be 94/18 + 4/(-18). Let i(j) = j**3 + j**2 - 4*j + 6. Let y be i(4). Let q be (1 + 1/(-2))*y. Solve -x - 10 = -0*x - 5*r, -4*x - w*r = -q for x.",(5) What is 6*(16/20)/(6/5)?,4
023_154,Read through the given questions. Each question fall into one of the following categories. Choose a question of measurement category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Let c = -2 - -7. Suppose c*z + 14 = 64. Let i = 14 - z. Solve -j = -i*j for j.
(2) How many milligrams are there in 11/8 of a gram?
(3) In base 7, what is -1 + 1?
(4) Suppose -9*w = -107 - 415. Suppose -2*r - 35 = -155. Suppose -5*j = -2*j - r. Calculate the remainder when w is divided by j.
(5) What is prob of picking 4 y when four letters picked without replacement from yyyyyyyymmmymm?",(1) Let c = -2 - -7. Suppose c*z + 14 = 64. Let i = 14 - z. Solve -j = -i*j for j.,(2) How many milligrams are there in 11/8 of a gram?,"(3) In base 7, what is -1 + 1?",(4) Suppose -9*w = -107 - 415. Suppose -2*r - 35 = -155. Suppose -5*j = -2*j - r. Calculate the remainder when w is divided by j.,(5) What is prob of picking 4 y when four letters picked without replacement from yyyyyyyymmmymm?,2
023_569,Read through the given questions. Each question fall into one of the following categories. Choose a question of numbers category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Suppose 6*i + 2 = -10. Let h(m) be the second derivative of -2*m**3/3 + m**2 - m. Let u be h(i). What is the greatest common divisor of u and 4?
(2) What is 5/4 of a litre in millilitres?
(3) Let u be ((-4)/10)/((-2)/10). Let g = 8 - u. Solve -3*o - n + 11 = 0, -g = -3*o - o + 3*n for o.
(4) Calculate ((-16)/20)/(((-4)/(-5))/2).
(5) Calculate prob of picking 2 k when two letters picked without replacement from {c: 2, f: 1, r: 1, k: 2, u: 1}.",(1) Suppose 6*i + 2 = -10. Let h(m) be the second derivative of -2*m**3/3 + m**2 - m. Let u be h(i). What is the greatest common divisor of u and 4?,(2) What is 5/4 of a litre in millilitres?,"(3) Let u be ((-4)/10)/((-2)/10). Let g = 8 - u. Solve -3*o - n + 11 = 0, -g = -3*o - o + 3*n for o.",(4) Calculate ((-16)/20)/(((-4)/(-5))/2).,"(5) Calculate prob of picking 2 k when two letters picked without replacement from {c: 2, f: 1, r: 1, k: 2, u: 1}.",1
023_342,Read through the given questions. Each question fall into one of the following categories. Choose a question of numbers category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Let c = -4 - -7. Let q(r) = r**2 + 4. What is the tens digit of q(c)?
(2) How many micrometers are there in 36.01521 nanometers?
(3) Multiply -18 and 0.13.
(4) What is prob of sequence wu when two letters picked without replacement from {i: 3, w: 2, q: 7, u: 3}?
(5) What comes next: -81, -90, -111, -150, -213, -306?",(1) Let c = -4 - -7. Let q(r) = r**2 + 4. What is the tens digit of q(c)?,(2) How many micrometers are there in 36.01521 nanometers?,(3) Multiply -18 and 0.13.,"(4) What is prob of sequence wu when two letters picked without replacement from {i: 3, w: 2, q: 7, u: 3}?","(5) What comes next: -81, -90, -111, -150, -213, -306?",1
023_375,Read through the given questions. Each question fall into one of the following categories. Choose a question of numbers category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) How many months are there in 7/6 of a year?
(2) Two letters picked without replacement from {m: 3, i: 1, k: 2, f: 1, s: 3, u: 1}. Give prob of picking 1 s and 1 k.
(3) Suppose 0 = -3*z + n + 13, 4*n = -2*z - 2 - 8. Solve -h + z*h = 0 for h.
(4) -913+3
(5) Let x = 470375/24 + -19593. Calculate the common denominator of x and -10/3.",(1) How many months are there in 7/6 of a year?,"(2) Two letters picked without replacement from {m: 3, i: 1, k: 2, f: 1, s: 3, u: 1}. Give prob of picking 1 s and 1 k.","(3) Suppose 0 = -3*z + n + 13, 4*n = -2*z - 2 - 8. Solve -h + z*h = 0 for h.",(4) -913+3,(5) Let x = 470375/24 + -19593. Calculate the common denominator of x and -10/3.,5
023_228,Read through the given questions. Each question fall into one of the following categories. Choose a question of arithmetic category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Let u = -773/2 + 358. Let h be (-526)/66 + (-4)/(-12). Let w = h - -773/22. Find the common denominator of u and w.
(2) Calculate prob of sequence aaaa when four letters picked without replacement from baaaabba.
(3) What is 69/2 of a litre in millilitres?
(4) Suppose 4*z = 4*w - 4, -2*w - w = 3*z - 9. Let c(u) = 59*u**3 + 2*u**2 - u. Let p be c(1). Suppose 5*l - l - p = 0. Solve l = m + w*m for m.
(5) What is (-1)/((2/(-5))/((-20)/(-25)))?",(1) Let u = -773/2 + 358. Let h be (-526)/66 + (-4)/(-12). Let w = h - -773/22. Find the common denominator of u and w.,(2) Calculate prob of sequence aaaa when four letters picked without replacement from baaaabba.,(3) What is 69/2 of a litre in millilitres?,"(4) Suppose 4*z = 4*w - 4, -2*w - w = 3*z - 9. Let c(u) = 59*u**3 + 2*u**2 - u. Let p be c(1). Suppose 5*l - l - p = 0. Solve l = m + w*m for m.",(5) What is (-1)/((2/(-5))/((-20)/(-25)))?,5
023_115,Read through the given questions. Each question fall into one of the following categories. Choose a question of arithmetic category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Solve y = 8*y - y for y.
(2) Three letters picked without replacement from {g: 2, y: 4, w: 1}. Give prob of sequence ygy.
(3) In base 3, what is -10 + -2002122?
(4) How many tonnes are there in 2430.25 milligrams?
(5) Suppose -2*a = -0*a - 10. What is the remainder when 12 is divided by a?",(1) Solve y = 8*y - y for y.,"(2) Three letters picked without replacement from {g: 2, y: 4, w: 1}. Give prob of sequence ygy.","(3) In base 3, what is -10 + -2002122?",(4) How many tonnes are there in 2430.25 milligrams?,(5) Suppose -2*a = -0*a - 10. What is the remainder when 12 is divided by a?,3
023_610,Read through the given questions. Each question fall into one of the following categories. Choose a question of probability category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) What is 1 + -9 - -5 - -1?
(2) Solve -37 + 23 = 7*t for t.
(3) Three letters picked without replacement from dxaxxaaxxxaax. What is prob of sequence aad?
(4) Suppose a - 6*a + 3*j + 321 = 0, -342 = -5*a - 4*j. What is the greatest common divisor of 165 and a?
(5) Convert 4.473208um to kilometers.",(1) What is 1 + -9 - -5 - -1?,(2) Solve -37 + 23 = 7*t for t.,(3) Three letters picked without replacement from dxaxxaaxxxaax. What is prob of sequence aad?,"(4) Suppose a - 6*a + 3*j + 321 = 0, -342 = -5*a - 4*j. What is the greatest common divisor of 165 and a?",(5) Convert 4.473208um to kilometers.,3
023_467,Read through the given questions. Each question fall into one of the following categories. Choose a question of numbers category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Let z(m) = -3*m**3 + m**2 + 4*m + 3. Let v be z(-1). Calculate the highest common factor of 21 and v.
(2) Convert 692.2908 days to seconds.
(3) What comes next: 223, 452, 681, 910, 1139?
(4) Calculate prob of sequence lrl when three letters picked without replacement from lrrllllrllllll.
(5) Divide -352 by -4.",(1) Let z(m) = -3*m**3 + m**2 + 4*m + 3. Let v be z(-1). Calculate the highest common factor of 21 and v.,(2) Convert 692.2908 days to seconds.,"(3) What comes next: 223, 452, 681, 910, 1139?",(4) Calculate prob of sequence lrl when three letters picked without replacement from lrrllllrllllll.,(5) Divide -352 by -4.,1
023_316,Read through the given questions. Each question fall into one of the following categories. Choose a question of algebra category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) What is 976.2226ml in litres?
(2) Solve 5*m - z + 11 = 34, 3*z = 4*m - 25 for m.
(3) Let j(g) = -g**2 + 15*g - 26. Let s be j(9). Let b be 1/((-1)/(-70)) + 0. Calculate the highest common factor of b and s.
(4) Three letters picked without replacement from {l: 3, m: 1, k: 5, u: 3}. What is prob of sequence mkk?
(5) Calculate 9 - (0 + 7 + -2).",(1) What is 976.2226ml in litres?,"(2) Solve 5*m - z + 11 = 34, 3*z = 4*m - 25 for m.",(3) Let j(g) = -g**2 + 15*g - 26. Let s be j(9). Let b be 1/((-1)/(-70)) + 0. Calculate the highest common factor of b and s.,"(4) Three letters picked without replacement from {l: 3, m: 1, k: 5, u: 3}. What is prob of sequence mkk?",(5) Calculate 9 - (0 + 7 + -2).,2
023_170,Read through the given questions. Each question fall into one of the following categories. Choose a question of numbers category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) What is 1/5 of a millennium in centuries?
(2) Let c(r) = 10*r - 25. What is the remainder when 8 is divided by c(3)?
(3) Calculate prob of picking 1 d, 2 n, and 1 w when four letters picked without replacement from xcwdxdllwnnxwdnn.
(4) Let d = 1 - -2. Let w be ((-10)/8)/(d/(-36)). Solve -w = 3*z + 2*z for z.
(5) 8 * -0.65",(1) What is 1/5 of a millennium in centuries?,(2) Let c(r) = 10*r - 25. What is the remainder when 8 is divided by c(3)?,"(3) Calculate prob of picking 1 d, 2 n, and 1 w when four letters picked without replacement from xcwdxdllwnnxwdnn.",(4) Let d = 1 - -2. Let w be ((-10)/8)/(d/(-36)). Solve -w = 3*z + 2*z for z.,(5) 8 * -0.65,2
023_445,Read through the given questions. Each question fall into one of the following categories. Choose a question of arithmetic category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Convert 82.82052um to millimeters.
(2) Suppose -u = 3*w - 10, -3*w = -4*w - 2*u. Suppose -w*d + 15 = 3. Solve o = -d*o + 16 for o.
(3) Let v = 19 + -34. Let z = -2 - v. Suppose -l - 2 + z = 0. What is the units digit of l?
(4) Two letters picked without replacement from amstsasssaaustmmm. Give prob of sequence ut.
(5) -12*-0.13",(1) Convert 82.82052um to millimeters.,"(2) Suppose -u = 3*w - 10, -3*w = -4*w - 2*u. Suppose -w*d + 15 = 3. Solve o = -d*o + 16 for o.",(3) Let v = 19 + -34. Let z = -2 - v. Suppose -l - 2 + z = 0. What is the units digit of l?,(4) Two letters picked without replacement from amstsasssaaustmmm. Give prob of sequence ut.,(5) -12*-0.13,5
023_643,Read through the given questions. Each question fall into one of the following categories. Choose a question of measurement category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) How many months are there in 6/5 of a century?
(2) What is next in -3496, -3491, -3482, -3469?
(3) In base 14, what is -4ac2 - -3?
(4) Suppose 3*b + 7 = 19. Suppose 2*a - b*a = -6. Calculate the remainder when 5 is divided by a.
(5) Two letters picked without replacement from {a: 4, e: 1, t: 3, s: 1, h: 4}. What is prob of picking 1 t and 1 e?",(1) How many months are there in 6/5 of a century?,"(2) What is next in -3496, -3491, -3482, -3469?","(3) In base 14, what is -4ac2 - -3?",(4) Suppose 3*b + 7 = 19. Suppose 2*a - b*a = -6. Calculate the remainder when 5 is divided by a.,"(5) Two letters picked without replacement from {a: 4, e: 1, t: 3, s: 1, h: 4}. What is prob of picking 1 t and 1 e?",1
023_546,Read through the given questions. Each question fall into one of the following categories. Choose a question of algebra category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) In base 16, what is 4 + e?
(2) What is the common denominator of -1 + 1 + (-1016)/(-384)*4 and 33/8?
(3) Solve 2*n + 15 = 3*j, 0 = -39*j + 41*j - 4*n - 10 for j.
(4) Three letters picked without replacement from {f: 10, s: 4}. Give prob of picking 3 f.
(5) What is 1/4 of a kilogram in grams?","(1) In base 16, what is 4 + e?",(2) What is the common denominator of -1 + 1 + (-1016)/(-384)*4 and 33/8?,"(3) Solve 2*n + 15 = 3*j, 0 = -39*j + 41*j - 4*n - 10 for j.","(4) Three letters picked without replacement from {f: 10, s: 4}. Give prob of picking 3 f.",(5) What is 1/4 of a kilogram in grams?,3
023_750,Read through the given questions. Each question fall into one of the following categories. Choose a question of algebra category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) What is twenty-five eighths of a kilometer in meters?
(2) Calculate prob of picking 3 f when three letters picked without replacement from {f: 4, n: 3}.
(3) Suppose -3 = -2*g + 7. Let j = g - -8. Calculate the greatest common divisor of 143 and j.
(4) Suppose 0 = -2*v - r + 3, 2 - 11 = -5*v - r. Solve s - v = 3*g, s = -2 + 1 for g.
(5) Calculate 3805*0.5.",(1) What is twenty-five eighths of a kilometer in meters?,"(2) Calculate prob of picking 3 f when three letters picked without replacement from {f: 4, n: 3}.",(3) Suppose -3 = -2*g + 7. Let j = g - -8. Calculate the greatest common divisor of 143 and j.,"(4) Suppose 0 = -2*v - r + 3, 2 - 11 = -5*v - r. Solve s - v = 3*g, s = -2 + 1 for g.",(5) Calculate 3805*0.5.,4
023_465,Read through the given questions. Each question fall into one of the following categories. Choose a question of numbers category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Two letters picked without replacement from {d: 2, i: 1}. What is prob of picking 2 d?
(2) Solve -11 = -2*j + 3*i, 4*i = 4*j + i - 7 for j.
(3) In base 3, what is 10010 + -201?
(4) How many millilitres are there in 49.51404l?
(5) Let r(n) = n**3 + 23*n**2 - 3*n - 49. What is the units digit of r(-23)?","(1) Two letters picked without replacement from {d: 2, i: 1}. What is prob of picking 2 d?","(2) Solve -11 = -2*j + 3*i, 4*i = 4*j + i - 7 for j.","(3) In base 3, what is 10010 + -201?",(4) How many millilitres are there in 49.51404l?,(5) Let r(n) = n**3 + 23*n**2 - 3*n - 49. What is the units digit of r(-23)?,5
023_39,Read through the given questions. Each question fall into one of the following categories. Choose a question of measurement category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Let a = 28 + -25. Solve 2*f + 14 = 4*s, 4*f + 3 = -a*s - 14 for f.
(2) What is prob of picking 1 q, 1 p, and 1 s when three letters picked without replacement from cqqqqscqpc?
(3) Suppose 3*h = -d - 598, 0 = 7*h - 2*h + d + 998. Let t = 299 + h. Suppose 15 = 2*q - 7. Calculate the greatest common factor of t and q.
(4) Evaluate 3 + (0 - 4 - (-3 - 2)).
(5) What is 72/5 of a litre in millilitres?","(1) Let a = 28 + -25. Solve 2*f + 14 = 4*s, 4*f + 3 = -a*s - 14 for f.","(2) What is prob of picking 1 q, 1 p, and 1 s when three letters picked without replacement from cqqqqscqpc?","(3) Suppose 3*h = -d - 598, 0 = 7*h - 2*h + d + 998. Let t = 299 + h. Suppose 15 = 2*q - 7. Calculate the greatest common factor of t and q.",(4) Evaluate 3 + (0 - 4 - (-3 - 2)).,(5) What is 72/5 of a litre in millilitres?,5
023_44,Read through the given questions. Each question fall into one of the following categories. Choose a question of measurement category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Let u be (-12)/(-36) + (-16)/(-6). Solve -i + u*i = 0 for i.
(2) What is one twentieth of a kilogram in milligrams?
(3) Three letters picked without replacement from {j: 2, y: 2, k: 1, u: 4}. Give prob of picking 2 j and 1 u.
(4) Let r = -220/7 + 823/42. Let c = 3896267/14784 - 2899/11. Let g = c - 5881/1344. Calculate the common denominator of r and g.
(5) What is the value of -59 - -62 - (0 - 2)?",(1) Let u be (-12)/(-36) + (-16)/(-6). Solve -i + u*i = 0 for i.,(2) What is one twentieth of a kilogram in milligrams?,"(3) Three letters picked without replacement from {j: 2, y: 2, k: 1, u: 4}. Give prob of picking 2 j and 1 u.",(4) Let r = -220/7 + 823/42. Let c = 3896267/14784 - 2899/11. Let g = c - 5881/1344. Calculate the common denominator of r and g.,(5) What is the value of -59 - -62 - (0 - 2)?,2
023_441,Read through the given questions. Each question fall into one of the following categories. Choose a question of measurement category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) What is seven quarters of a gram in milligrams?
(2) Find the common denominator of (-9)/(-24) + (-30)/(-24) and 5/4.
(3) What is prob of picking 1 p, 2 m, and 1 n when four letters picked without replacement from cpmimccpcnm?
(4) What is 0 + 5 - 15 - -5?
(5) Let i(l) = l**2 - 2*l + 4. Let n be i(4). Let p be ((-2)/(-3))/((-4)/(-18)). Suppose 2*o = -p*y + 24, 4 = y + 5*o - 4. Solve n = 4*d - y for d.",(1) What is seven quarters of a gram in milligrams?,(2) Find the common denominator of (-9)/(-24) + (-30)/(-24) and 5/4.,"(3) What is prob of picking 1 p, 2 m, and 1 n when four letters picked without replacement from cpmimccpcnm?",(4) What is 0 + 5 - 15 - -5?,"(5) Let i(l) = l**2 - 2*l + 4. Let n be i(4). Let p be ((-2)/(-3))/((-4)/(-18)). Suppose 2*o = -p*y + 24, 4 = y + 5*o - 4. Solve n = 4*d - y for d.",1
023_120,Read through the given questions. Each question fall into one of the following categories. Choose a question of measurement category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Suppose 2*h - 2*n - 4 = -6, -3*n = -2*h - 5. Solve -5*b - 8 = -h*i, 3*b - 6*i + i = -20 for b.
(2) Suppose 0 = -o - 4*o - 4*z + 85, -4*o + 5*z = -27. Let b = o + 15. Calculate the remainder when b is divided by 2 - 3 - 33/(-3).
(3) What is 1/5 of a kilogram in grams?
(4) Three letters picked without replacement from {h: 1, m: 12}. What is prob of picking 3 m?
(5) What is -5 + -3 + -2 + 7 + 4?","(1) Suppose 2*h - 2*n - 4 = -6, -3*n = -2*h - 5. Solve -5*b - 8 = -h*i, 3*b - 6*i + i = -20 for b.","(2) Suppose 0 = -o - 4*o - 4*z + 85, -4*o + 5*z = -27. Let b = o + 15. Calculate the remainder when b is divided by 2 - 3 - 33/(-3).",(3) What is 1/5 of a kilogram in grams?,"(4) Three letters picked without replacement from {h: 1, m: 12}. What is prob of picking 3 m?",(5) What is -5 + -3 + -2 + 7 + 4?,3
023_164,Read through the given questions. Each question fall into one of the following categories. Choose a question of probability category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) In base 14, what is -214a + -3?
(2) Let z = 24 - -9. What is the remainder when z is divided by 9*(8/(-12) + 2)?
(3) Let y be 0*((-9)/2 + 5). Solve -2*s - 4*h + 3 - 13 = y, 5*s - 2*h = 23 for s.
(4) What is 173.7341 kilometers in micrometers?
(5) Three letters picked without replacement from pbpebbeppppppebdpb. What is prob of sequence bdp?","(1) In base 14, what is -214a + -3?",(2) Let z = 24 - -9. What is the remainder when z is divided by 9*(8/(-12) + 2)?,"(3) Let y be 0*((-9)/2 + 5). Solve -2*s - 4*h + 3 - 13 = y, 5*s - 2*h = 23 for s.",(4) What is 173.7341 kilometers in micrometers?,(5) Three letters picked without replacement from pbpebbeppppppebdpb. What is prob of sequence bdp?,5
023_661,Read through the given questions. Each question fall into one of the following categories. Choose a question of measurement category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) How many litres are there in 6.763399 millilitres?
(2) Suppose -5*b = -4*l - 14, 3*b + 4 = 6*b + 2*l. Let c(a) be the second derivative of a**3/6 - 2*a**2 + a. What is the remainder when c(7) is divided by b?
(3) What is prob of sequence yp when two letters picked without replacement from ppypppnppnyyny?
(4) Solve 64*j + 70 = 50*j for j.
(5) Calculate 4714 divided by 6.",(1) How many litres are there in 6.763399 millilitres?,"(2) Suppose -5*b = -4*l - 14, 3*b + 4 = 6*b + 2*l. Let c(a) be the second derivative of a**3/6 - 2*a**2 + a. What is the remainder when c(7) is divided by b?",(3) What is prob of sequence yp when two letters picked without replacement from ppypppnppnyyny?,(4) Solve 64*j + 70 = 50*j for j.,(5) Calculate 4714 divided by 6.,1
023_165,Read through the given questions. Each question fall into one of the following categories. Choose a question of algebra category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) How many months are there in nineteen quarters of a decade?
(2) What is prob of picking 1 b, 1 v, and 1 u when three letters picked without replacement from {r: 5, c: 5, v: 2, m: 2, b: 1, u: 1}?
(3) Solve 2514*m = 2508*m - 24 for m.
(4) Suppose -2*t - 51 = -5*t + 3*l, 37 = 3*t + 4*l. Calculate the common denominator of 1*(308/32 + 3) and t.
(5) Calculate (-3*2/3)/2.",(1) How many months are there in nineteen quarters of a decade?,"(2) What is prob of picking 1 b, 1 v, and 1 u when three letters picked without replacement from {r: 5, c: 5, v: 2, m: 2, b: 1, u: 1}?",(3) Solve 2514*m = 2508*m - 24 for m.,"(4) Suppose -2*t - 51 = -5*t + 3*l, 37 = 3*t + 4*l. Calculate the common denominator of 1*(308/32 + 3) and t.",(5) Calculate (-3*2/3)/2.,3
023_141,Read through the given questions. Each question fall into one of the following categories. Choose a question of numbers category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) What is 384 divided by -3?
(2) Let v = -2/1793 + 19749/23309. Calculate the common denominator of v and 21/8.
(3) What is 68/3 of a century in months?
(4) What is prob of sequence dd when two letters picked without replacement from uddudd?
(5) What is next in 168, 167, 164, 159, 152, 143?",(1) What is 384 divided by -3?,(2) Let v = -2/1793 + 19749/23309. Calculate the common denominator of v and 21/8.,(3) What is 68/3 of a century in months?,(4) What is prob of sequence dd when two letters picked without replacement from uddudd?,"(5) What is next in 168, 167, 164, 159, 152, 143?",2
023_669,Read through the given questions. Each question fall into one of the following categories. Choose a question of probability category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Suppose 22 = 2*b + 4*f, 6*b - 2*b = -3*f + 29. Solve -d - 5 = -3*z, 3*z + 4*d + 0*d = -b for z.
(2) Suppose 9 - 1 = 4*c. Let q be 147 + c + 5 + -2. Calculate the greatest common divisor of 19 and q.
(3) Evaluate -4*12/(-2016)*-4.
(4) How many millimeters are there in 3/50 of a meter?
(5) Two letters picked without replacement from ppmipmgmqmgpzmm. What is prob of sequence qi?","(1) Suppose 22 = 2*b + 4*f, 6*b - 2*b = -3*f + 29. Solve -d - 5 = -3*z, 3*z + 4*d + 0*d = -b for z.",(2) Suppose 9 - 1 = 4*c. Let q be 147 + c + 5 + -2. Calculate the greatest common divisor of 19 and q.,(3) Evaluate -4*12/(-2016)*-4.,(4) How many millimeters are there in 3/50 of a meter?,(5) Two letters picked without replacement from ppmipmgmqmgpzmm. What is prob of sequence qi?,5
023_499,Read through the given questions. Each question fall into one of the following categories. Choose a question of numbers category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) How many grams are there in 15.5017 tonnes?
(2) Suppose 91*v - 74 = 90*v. What is the remainder when v is divided by 15?
(3) Calculate -2 divided by -692.
(4) Let z be (2/4)/(5/(-70)). Let a(s) = s**3 + 7*s**2 - 2*s - 6. Let k be a(z). Solve -5*i = -10, 3*i = 4*v - i + k for v.
(5) Calculate prob of picking 2 t and 1 h when three letters picked without replacement from khktkhtk.",(1) How many grams are there in 15.5017 tonnes?,(2) Suppose 91*v - 74 = 90*v. What is the remainder when v is divided by 15?,(3) Calculate -2 divided by -692.,"(4) Let z be (2/4)/(5/(-70)). Let a(s) = s**3 + 7*s**2 - 2*s - 6. Let k be a(z). Solve -5*i = -10, 3*i = 4*v - i + k for v.",(5) Calculate prob of picking 2 t and 1 h when three letters picked without replacement from khktkhtk.,2
023_514,Read through the given questions. Each question fall into one of the following categories. Choose a question of numbers category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Let l = -20 - -38. Suppose 0 = w - 9. Calculate the highest common factor of l and w.
(2) What is next in -63, -100, -163, -264, -415, -628?
(3) What is 1435 to the power of 1/2, to the nearest integer?
(4) How many tonnes are there in 59.40927ug?
(5) Four letters picked without replacement from zmzmzdmdzzzmmzdmmmzd. What is prob of picking 3 m and 1 z?",(1) Let l = -20 - -38. Suppose 0 = w - 9. Calculate the highest common factor of l and w.,"(2) What is next in -63, -100, -163, -264, -415, -628?","(3) What is 1435 to the power of 1/2, to the nearest integer?",(4) How many tonnes are there in 59.40927ug?,(5) Four letters picked without replacement from zmzmzdmdzzzmmzdmmmzd. What is prob of picking 3 m and 1 z?,1
023_274,Read through the given questions. Each question fall into one of the following categories. Choose a question of numbers category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Solve 225*g + 18 = 222*g for g.
(2) Add together -0.1 and 637.
(3) What is 3.603696 tonnes in grams?
(4) Three letters picked without replacement from {i: 3, b: 3, a: 1, o: 2, y: 1, g: 1}. Give prob of sequence bbi.
(5) Suppose 61 = -6*l + 223. What is the smallest common multiple of l and 15?",(1) Solve 225*g + 18 = 222*g for g.,(2) Add together -0.1 and 637.,(3) What is 3.603696 tonnes in grams?,"(4) Three letters picked without replacement from {i: 3, b: 3, a: 1, o: 2, y: 1, g: 1}. Give prob of sequence bbi.",(5) Suppose 61 = -6*l + 223. What is the smallest common multiple of l and 15?,5
023_389,Read through the given questions. Each question fall into one of the following categories. Choose a question of probability category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) 1067*0.5
(2) Three letters picked without replacement from aarahhhhhhnsarh. Give prob of sequence hhn.
(3) Let v be (0 - 0 - -2) + -7. Let s(b) = -b**3 - 6*b**2 - 6*b + 7. What is the remainder when 35 is divided by s(v)?
(4) Solve 0 = 79*g - 72*g - 63 for g.
(5) Convert 515.6901 decades to millennia.",(1) 1067*0.5,(2) Three letters picked without replacement from aarahhhhhhnsarh. Give prob of sequence hhn.,(3) Let v be (0 - 0 - -2) + -7. Let s(b) = -b**3 - 6*b**2 - 6*b + 7. What is the remainder when 35 is divided by s(v)?,(4) Solve 0 = 79*g - 72*g - 63 for g.,(5) Convert 515.6901 decades to millennia.,2
023_403,Read through the given questions. Each question fall into one of the following categories. Choose a question of numbers category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Three letters picked without replacement from {p: 9, k: 2, j: 5}. Give prob of picking 1 p and 2 k.
(2) How many millilitres are there in 1/10 of a litre?
(3) Suppose -4*p - 699 - 413 = 0. Let s = p - -113. Let l = s + 117. Calculate the common denominator of l and 37.
(4) Divide -137 by 1.
(5) Solve 34*v - 29*v = -5*f + 20, -2*v = -3*f + 12 for v.","(1) Three letters picked without replacement from {p: 9, k: 2, j: 5}. Give prob of picking 1 p and 2 k.",(2) How many millilitres are there in 1/10 of a litre?,(3) Suppose -4*p - 699 - 413 = 0. Let s = p - -113. Let l = s + 117. Calculate the common denominator of l and 37.,(4) Divide -137 by 1.,"(5) Solve 34*v - 29*v = -5*f + 20, -2*v = -3*f + 12 for v.",3
023_697,Read through the given questions. Each question fall into one of the following categories. Choose a question of numbers category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Let x be 49/21 + (-2)/(-3). Suppose 31 = d - 2*u, -x*d + u = -u - 89. What is the units digit of d?
(2) Calculate prob of sequence fffm when four letters picked without replacement from fffffmmmmmmmm.
(3) How many millilitres are there in eleven eighths of a litre?
(4) Solve 4*f + 4*z = 0, 0 = -28*f + 29*f - 2*z + 15 for f.
(5) What is -0.4 plus -49.921?","(1) Let x be 49/21 + (-2)/(-3). Suppose 31 = d - 2*u, -x*d + u = -u - 89. What is the units digit of d?",(2) Calculate prob of sequence fffm when four letters picked without replacement from fffffmmmmmmmm.,(3) How many millilitres are there in eleven eighths of a litre?,"(4) Solve 4*f + 4*z = 0, 0 = -28*f + 29*f - 2*z + 15 for f.",(5) What is -0.4 plus -49.921?,1
023_420,Read through the given questions. Each question fall into one of the following categories. Choose a question of probability category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Convert 54.15662 centimeters to kilometers.
(2) Four letters picked without replacement from {y: 3, t: 4, x: 2, r: 4, k: 1, o: 1}. What is prob of picking 2 y, 1 o, and 1 r?
(3) Suppose -5*z + 25 = -4*z. What is the remainder when z is divided by 14 - (-2 + (5 - 2))?
(4) What is the value of (-19 - -12) + (-6 - -5) - -15?
(5) Let u(z) = -3*z - z**2 + 4 - 3 - 5*z + 5. Let i be u(-8). Solve -5*h - i - 4 = 0 for h.",(1) Convert 54.15662 centimeters to kilometers.,"(2) Four letters picked without replacement from {y: 3, t: 4, x: 2, r: 4, k: 1, o: 1}. What is prob of picking 2 y, 1 o, and 1 r?",(3) Suppose -5*z + 25 = -4*z. What is the remainder when z is divided by 14 - (-2 + (5 - 2))?,(4) What is the value of (-19 - -12) + (-6 - -5) - -15?,(5) Let u(z) = -3*z - z**2 + 4 - 3 - 5*z + 5. Let i be u(-8). Solve -5*h - i - 4 = 0 for h.,2
023_282,Read through the given questions. Each question fall into one of the following categories. Choose a question of probability category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Two letters picked without replacement from lllppplllllpllllllll. What is prob of picking 2 l?
(2) 58/(-30) + 15/25
(3) Suppose 0 = -4*t + g + 51, t + 2*t - 51 = 5*g. What is the smallest common multiple of t and 14?
(4) How many millennia are there in 5137.518 decades?
(5) Suppose 0 = -j - 2. Let k = 0 - j. Suppose 0 = k*g + w + 2, 5*g = 3*g - 4*w - 8. Solve q - 2*v + 4 = 0, -4*q + 0*v - 3*v + 28 = g for q.",(1) Two letters picked without replacement from lllppplllllpllllllll. What is prob of picking 2 l?,(2) 58/(-30) + 15/25,"(3) Suppose 0 = -4*t + g + 51, t + 2*t - 51 = 5*g. What is the smallest common multiple of t and 14?",(4) How many millennia are there in 5137.518 decades?,"(5) Suppose 0 = -j - 2. Let k = 0 - j. Suppose 0 = k*g + w + 2, 5*g = 3*g - 4*w - 8. Solve q - 2*v + 4 = 0, -4*q + 0*v - 3*v + 28 = g for q.",1
023_324,Read through the given questions. Each question fall into one of the following categories. Choose a question of numbers category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) What comes next: 50, 19, -24, -85, -170, -285, -436, -629?
(2) Three letters picked without replacement from zzizvfzzzvzizf. Give prob of sequence ffz.
(3) Suppose -2*b - 9 = 21. Let f be (-1)/5 - 63/b. Suppose 3*t - 2*p - 11 = 0, 8*p - 4*p + 8 = f*t. What is the units digit of t?
(4) 329/(-210) - 75/(-45)
(5) What is four sevenths of a week in days?","(1) What comes next: 50, 19, -24, -85, -170, -285, -436, -629?",(2) Three letters picked without replacement from zzizvfzzzvzizf. Give prob of sequence ffz.,"(3) Suppose -2*b - 9 = 21. Let f be (-1)/5 - 63/b. Suppose 3*t - 2*p - 11 = 0, 8*p - 4*p + 8 = f*t. What is the units digit of t?",(4) 329/(-210) - 75/(-45),(5) What is four sevenths of a week in days?,3
023_1,Read through the given questions. Each question fall into one of the following categories. Choose a question of probability category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Suppose -2*l + b = -4*b - 36, -104 = -4*l + 2*b. What is the tens digit of l?
(2) Suppose 4*n - 8 = 4*u, -3*u - 2*n = 2*u - 4. Solve 9 = 3*v - u*v + r, v = 2*r + 3 for v.
(3) Calculate -87 divided by 29.
(4) What is 25/2 of a litre in millilitres?
(5) Calculate prob of sequence igml when four letters picked without replacement from {g: 2, n: 1, l: 2, m: 1, i: 2}.","(1) Suppose -2*l + b = -4*b - 36, -104 = -4*l + 2*b. What is the tens digit of l?","(2) Suppose 4*n - 8 = 4*u, -3*u - 2*n = 2*u - 4. Solve 9 = 3*v - u*v + r, v = 2*r + 3 for v.",(3) Calculate -87 divided by 29.,(4) What is 25/2 of a litre in millilitres?,"(5) Calculate prob of sequence igml when four letters picked without replacement from {g: 2, n: 1, l: 2, m: 1, i: 2}.",5
023_568,Read through the given questions. Each question fall into one of the following categories. Choose a question of measurement category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Solve 119 - 14 = -15*r for r.
(2) Convert 68.53801ms to seconds.
(3) Let k(y) = 31*y - 35. What is the tens digit of k(4)?
(4) Calculate prob of picking 1 y and 2 v when three letters picked without replacement from {v: 11, y: 3}.
(5) In base 10, what is -1 - -239?",(1) Solve 119 - 14 = -15*r for r.,(2) Convert 68.53801ms to seconds.,(3) Let k(y) = 31*y - 35. What is the tens digit of k(4)?,"(4) Calculate prob of picking 1 y and 2 v when three letters picked without replacement from {v: 11, y: 3}.","(5) In base 10, what is -1 - -239?",2
023_421,Read through the given questions. Each question fall into one of the following categories. Choose a question of numbers category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Let x be ((-70)/(-8))/((-1)/(-8)). Suppose 2*n - 5*c - x = 0, 4*n + c = 2 + 94. Solve -2*d + 5*u = -3*d - 5, 5*u + n = 3*d for d.
(2) Four letters picked without replacement from {x: 8, y: 1, f: 6}. What is prob of sequence xyxx?
(3) What is thirteen quarters of a decade in months?
(4) Suppose 4*i - 38 = -b, -3*b + 19 = 2*i - 65. Calculate the remainder when b is divided by 7.
(5) Product of -0.4 and -0.558.","(1) Let x be ((-70)/(-8))/((-1)/(-8)). Suppose 2*n - 5*c - x = 0, 4*n + c = 2 + 94. Solve -2*d + 5*u = -3*d - 5, 5*u + n = 3*d for d.","(2) Four letters picked without replacement from {x: 8, y: 1, f: 6}. What is prob of sequence xyxx?",(3) What is thirteen quarters of a decade in months?,"(4) Suppose 4*i - 38 = -b, -3*b + 19 = 2*i - 65. Calculate the remainder when b is divided by 7.",(5) Product of -0.4 and -0.558.,4
023_233,Read through the given questions. Each question fall into one of the following categories. Choose a question of measurement category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Calculate -2 divided by 59.
(2) What is 25/2 of a milligram in micrograms?
(3) Four letters picked without replacement from mekmmkekonmnmmnmmm. Give prob of picking 1 n, 2 m, and 1 k.
(4) Let c = 10 - 8. Solve p + c*p = 0 for p.
(5) Let z be 4/(-14) - (-492)/7. What is the highest common divisor of z and 14?",(1) Calculate -2 divided by 59.,(2) What is 25/2 of a milligram in micrograms?,"(3) Four letters picked without replacement from mekmmkekonmnmmnmmm. Give prob of picking 1 n, 2 m, and 1 k.",(4) Let c = 10 - 8. Solve p + c*p = 0 for p.,(5) Let z be 4/(-14) - (-492)/7. What is the highest common divisor of z and 14?,2
023_728,Read through the given questions. Each question fall into one of the following categories. Choose a question of probability category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) What is the remainder when 4 is divided by -4*(9/(-4))/3?
(2) Solve 30 - 9 = 7*t for t.
(3) Four letters picked without replacement from {a: 5, i: 1, v: 2, t: 5, n: 4, w: 3}. Give prob of picking 1 t, 2 w, and 1 a.
(4) What is 5.346329 nanograms in grams?
(5) Evaluate 7 + (-1 - -6) + 13 + -21.",(1) What is the remainder when 4 is divided by -4*(9/(-4))/3?,(2) Solve 30 - 9 = 7*t for t.,"(3) Four letters picked without replacement from {a: 5, i: 1, v: 2, t: 5, n: 4, w: 3}. Give prob of picking 1 t, 2 w, and 1 a.",(4) What is 5.346329 nanograms in grams?,(5) Evaluate 7 + (-1 - -6) + 13 + -21.,3
023_36,Read through the given questions. Each question fall into one of the following categories. Choose a question of probability category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Suppose 5 = -3*r - 4. Let b(f) = 3*f**2 + 2*f - 3. Let c be b(r). Calculate the highest common divisor of c and 6.
(2) Suppose -6*v + 36 = -3*v. Suppose 0 = z - 5*z + v. Solve 0*g = g + z for g.
(3) How many years are there in 263741.25 months?
(4) 0.0249 * -0.03
(5) Four letters picked without replacement from {c: 1, k: 3, l: 3, e: 2, m: 2, z: 3}. Give prob of sequence clkk.",(1) Suppose 5 = -3*r - 4. Let b(f) = 3*f**2 + 2*f - 3. Let c be b(r). Calculate the highest common divisor of c and 6.,(2) Suppose -6*v + 36 = -3*v. Suppose 0 = z - 5*z + v. Solve 0*g = g + z for g.,(3) How many years are there in 263741.25 months?,(4) 0.0249 * -0.03,"(5) Four letters picked without replacement from {c: 1, k: 3, l: 3, e: 2, m: 2, z: 3}. Give prob of sequence clkk.",5
023_262,Read through the given questions. Each question fall into one of the following categories. Choose a question of probability category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Let k(s) = s**3 - 4*s**2 - 6*s + 7. Let m be (-3)/2 - (-104)/16. What is the units digit of k(m)?
(2) Solve 5*u + 3*w = 4*u + 4, 20 = 5*u + 4*w for u.
(3) Two letters picked without replacement from {f: 2, z: 4, y: 8, b: 1}. What is prob of sequence yf?
(4) Total of 0.4 and 297491.
(5) Convert 0.056769 decades to millennia.",(1) Let k(s) = s**3 - 4*s**2 - 6*s + 7. Let m be (-3)/2 - (-104)/16. What is the units digit of k(m)?,"(2) Solve 5*u + 3*w = 4*u + 4, 20 = 5*u + 4*w for u.","(3) Two letters picked without replacement from {f: 2, z: 4, y: 8, b: 1}. What is prob of sequence yf?",(4) Total of 0.4 and 297491.,(5) Convert 0.056769 decades to millennia.,3
023_478,Read through the given questions. Each question fall into one of the following categories. Choose a question of algebra category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Two letters picked without replacement from {b: 4, q: 1, p: 1, i: 2, j: 7}. What is prob of picking 2 j?
(2) How many milligrams are there in 3/32 of a kilogram?
(3) Let v = 13 + 12. What is the remainder when 97 is divided by v?
(4) Solve -53*d + 54*d - 2 = 0 for d.
(5) (3325/(-57))/(-25) + 2/(-2)","(1) Two letters picked without replacement from {b: 4, q: 1, p: 1, i: 2, j: 7}. What is prob of picking 2 j?",(2) How many milligrams are there in 3/32 of a kilogram?,(3) Let v = 13 + 12. What is the remainder when 97 is divided by v?,(4) Solve -53*d + 54*d - 2 = 0 for d.,(5) (3325/(-57))/(-25) + 2/(-2),4
023_128,Read through the given questions. Each question fall into one of the following categories. Choose a question of arithmetic category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) What is prob of picking 2 u when two letters picked without replacement from uttuitu?
(2) Suppose -10*i = -11*i - 22. Let p = i - -74. Let g(x) = x**3 - 2*x**2 - 5*x + 1. Let k be g(4). What is the greatest common divisor of k and p?
(3) What comes next: -950, -952, -954, -956, -958?
(4) How many milligrams are there in 0.438524t?
(5) Evaluate (-72)/27*36/48.",(1) What is prob of picking 2 u when two letters picked without replacement from uttuitu?,(2) Suppose -10*i = -11*i - 22. Let p = i - -74. Let g(x) = x**3 - 2*x**2 - 5*x + 1. Let k be g(4). What is the greatest common divisor of k and p?,"(3) What comes next: -950, -952, -954, -956, -958?",(4) How many milligrams are there in 0.438524t?,(5) Evaluate (-72)/27*36/48.,5
023_390,Read through the given questions. Each question fall into one of the following categories. Choose a question of algebra category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Three letters picked without replacement from {a: 1, s: 2, r: 2, q: 9}. Give prob of sequence arr.
(2) Let b be ((-4)/(-6))/(4/(-6)). Let l be ((b - -1) + 0)*-1. Solve -3*d = 4*x + 2*d + 45, 5*x - 3*d + 10 = l for x.
(3) Suppose -3*x - 2*x = 0. Suppose 0 = -2*j + 3*v - 8, 2*j - 2*v + 4 = -x*v. What is the units digit of j?
(4) What is twenty-one eighths of a centimeter in micrometers?
(5) Calculate -5 divided by -29.","(1) Three letters picked without replacement from {a: 1, s: 2, r: 2, q: 9}. Give prob of sequence arr.","(2) Let b be ((-4)/(-6))/(4/(-6)). Let l be ((b - -1) + 0)*-1. Solve -3*d = 4*x + 2*d + 45, 5*x - 3*d + 10 = l for x.","(3) Suppose -3*x - 2*x = 0. Suppose 0 = -2*j + 3*v - 8, 2*j - 2*v + 4 = -x*v. What is the units digit of j?",(4) What is twenty-one eighths of a centimeter in micrometers?,(5) Calculate -5 divided by -29.,2
023_580,Read through the given questions. Each question fall into one of the following categories. Choose a question of algebra category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) In base 16, what is 2 - -15?
(2) Let r = 1/6632 - -401227/59688. Find the common denominator of r and 77/8.
(3) Four letters picked without replacement from gttggt. What is prob of sequence gtgt?
(4) How many meters are there in 67/5 of a kilometer?
(5) Let y = -2 - -2. Let a be (-1 - 0)*y/1. Solve -4 = -2*t - a*t for t.","(1) In base 16, what is 2 - -15?",(2) Let r = 1/6632 - -401227/59688. Find the common denominator of r and 77/8.,(3) Four letters picked without replacement from gttggt. What is prob of sequence gtgt?,(4) How many meters are there in 67/5 of a kilometer?,(5) Let y = -2 - -2. Let a be (-1 - 0)*y/1. Solve -4 = -2*t - a*t for t.,5
023_210,Read through the given questions. Each question fall into one of the following categories. Choose a question of numbers category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) 504 divided by 42
(2) Calculate prob of picking 1 a, 1 x, and 1 j when three letters picked without replacement from {x: 3, a: 7, j: 8}.
(3) Solve -2*o - 3*w = 13, 0*o - 4*o - 5*w = 21 for o.
(4) Let w be (-92)/(-22) - 4/22. Suppose -w*j + 116 = -0*j. What is the remainder when j is divided by ((-6)/(-8))/(3/60)?
(5) Convert 152.23146 months to years.",(1) 504 divided by 42,"(2) Calculate prob of picking 1 a, 1 x, and 1 j when three letters picked without replacement from {x: 3, a: 7, j: 8}.","(3) Solve -2*o - 3*w = 13, 0*o - 4*o - 5*w = 21 for o.",(4) Let w be (-92)/(-22) - 4/22. Suppose -w*j + 116 = -0*j. What is the remainder when j is divided by ((-6)/(-8))/(3/60)?,(5) Convert 152.23146 months to years.,4
023_119,Read through the given questions. Each question fall into one of the following categories. Choose a question of numbers category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) How many centuries are there in 42.20265 months?
(2) Evaluate (3 - 2) + -3 + -2.
(3) Solve 2*z + 2*x + 12 = 0, -x + 6 = -3*z + 2*x for z.
(4) What is prob of sequence zung when four letters picked without replacement from guuunuzzuguungugn?
(5) Suppose 0 = t - 3*j + j - 8, -4 = t - 5*j. What is the highest common divisor of t and 16?",(1) How many centuries are there in 42.20265 months?,(2) Evaluate (3 - 2) + -3 + -2.,"(3) Solve 2*z + 2*x + 12 = 0, -x + 6 = -3*z + 2*x for z.",(4) What is prob of sequence zung when four letters picked without replacement from guuunuzzuguungugn?,"(5) Suppose 0 = t - 3*j + j - 8, -4 = t - 5*j. What is the highest common divisor of t and 16?",5
023_225,Read through the given questions. Each question fall into one of the following categories. Choose a question of probability category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) What is 40320.53t in kilograms?
(2) Let n(a) be the third derivative of -a**4/24 + a**3/2 + 2*a**2. What is the least common multiple of 1 and n(-5)?
(3) What is the square root of 3318 to the nearest integer?
(4) Solve -5*i - 5*r - 50 = 0, -r + 5 = -4*i - 10 for i.
(5) Four letters picked without replacement from {m: 5, z: 1, b: 8, h: 4}. Give prob of picking 1 b, 1 z, 1 h, and 1 m.",(1) What is 40320.53t in kilograms?,(2) Let n(a) be the third derivative of -a**4/24 + a**3/2 + 2*a**2. What is the least common multiple of 1 and n(-5)?,(3) What is the square root of 3318 to the nearest integer?,"(4) Solve -5*i - 5*r - 50 = 0, -r + 5 = -4*i - 10 for i.","(5) Four letters picked without replacement from {m: 5, z: 1, b: 8, h: 4}. Give prob of picking 1 b, 1 z, 1 h, and 1 m.",5
023_64,Read through the given questions. Each question fall into one of the following categories. Choose a question of measurement category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Let q = 3 - -9. What is the highest common divisor of 6 and q?
(2) Let j = 16 + 1. Solve -5*r + 8 = -j for r.
(3) How many years are there in 5437.948 millennia?
(4) Four letters picked without replacement from {y: 4, k: 6, l: 1, s: 2, v: 2}. What is prob of picking 1 y, 1 l, 1 v, and 1 k?
(5) What is 434 to the power of 1/2, to the nearest integer?",(1) Let q = 3 - -9. What is the highest common divisor of 6 and q?,(2) Let j = 16 + 1. Solve -5*r + 8 = -j for r.,(3) How many years are there in 5437.948 millennia?,"(4) Four letters picked without replacement from {y: 4, k: 6, l: 1, s: 2, v: 2}. What is prob of picking 1 y, 1 l, 1 v, and 1 k?","(5) What is 434 to the power of 1/2, to the nearest integer?",3
023_212,Read through the given questions. Each question fall into one of the following categories. Choose a question of probability category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Solve -12*b = -35*b + 92 for b.
(2) Suppose 2*i + 126 = 20*i. What is the highest common divisor of i and 49?
(3) How many millimeters are there in 47.72367 kilometers?
(4) What is prob of sequence fe when two letters picked without replacement from {q: 1, p: 2, e: 1, z: 1, u: 1, f: 1}?
(5) In base 7, what is -22 - 32?",(1) Solve -12*b = -35*b + 92 for b.,(2) Suppose 2*i + 126 = 20*i. What is the highest common divisor of i and 49?,(3) How many millimeters are there in 47.72367 kilometers?,"(4) What is prob of sequence fe when two letters picked without replacement from {q: 1, p: 2, e: 1, z: 1, u: 1, f: 1}?","(5) In base 7, what is -22 - 32?",4
023_372,Read through the given questions. Each question fall into one of the following categories. Choose a question of probability category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) What comes next: 19, 16, 25, 58, 127?
(2) What is thirty-one halves of a litre in millilitres?
(3) What is prob of sequence szuz when four letters picked without replacement from {u: 2, s: 1, z: 2}?
(4) Suppose -5*k + i + 4 - 25 = 0, -16 = 5*k + 4*i. Let r = 14 - k. Suppose 0 = h - 4*j + 4 - r, 0 = 4*h - 2*j - 70. What is the units digit of h?
(5) Evaluate -1 + 5/3 + 565/(-1017).","(1) What comes next: 19, 16, 25, 58, 127?",(2) What is thirty-one halves of a litre in millilitres?,"(3) What is prob of sequence szuz when four letters picked without replacement from {u: 2, s: 1, z: 2}?","(4) Suppose -5*k + i + 4 - 25 = 0, -16 = 5*k + 4*i. Let r = 14 - k. Suppose 0 = h - 4*j + 4 - r, 0 = 4*h - 2*j - 70. What is the units digit of h?",(5) Evaluate -1 + 5/3 + 565/(-1017).,3
023_601,Read through the given questions. Each question fall into one of the following categories. Choose a question of measurement category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) What is 43423.55 kilograms in milligrams?
(2) Let f be 2 + 0 - ((-16)/(-4))/4. Let a = -3 + 10. Let h = a - f. Solve 2*z + z + h = 0 for z.
(3) Calculate prob of sequence uut when three letters picked without replacement from {c: 8, t: 2, u: 8}.
(4) Let n = 2 - -4. Let f be n*2*(-15)/(-9). Calculate the highest common factor of 50 and f.
(5) 0.03 times 8.58",(1) What is 43423.55 kilograms in milligrams?,(2) Let f be 2 + 0 - ((-16)/(-4))/4. Let a = -3 + 10. Let h = a - f. Solve 2*z + z + h = 0 for z.,"(3) Calculate prob of sequence uut when three letters picked without replacement from {c: 8, t: 2, u: 8}.",(4) Let n = 2 - -4. Let f be n*2*(-15)/(-9). Calculate the highest common factor of 50 and f.,(5) 0.03 times 8.58,1
023_504,Read through the given questions. Each question fall into one of the following categories. Choose a question of measurement category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Calculate 41*-0.23.
(2) Calculate prob of picking 2 x when two letters picked without replacement from {x: 4, d: 9, g: 1, w: 1, u: 2}.
(3) What is next in -229, -247, -265?
(4) What is 1/20 of a week in minutes?
(5) Let g(z) be the third derivative of -z**6/120 - z**5/10 + z**4/8 + 7*z**3/6 - 8*z**2. What is the tens digit of g(-7)?",(1) Calculate 41*-0.23.,"(2) Calculate prob of picking 2 x when two letters picked without replacement from {x: 4, d: 9, g: 1, w: 1, u: 2}.","(3) What is next in -229, -247, -265?",(4) What is 1/20 of a week in minutes?,(5) Let g(z) be the third derivative of -z**6/120 - z**5/10 + z**4/8 + 7*z**3/6 - 8*z**2. What is the tens digit of g(-7)?,4
023_266,Read through the given questions. Each question fall into one of the following categories. Choose a question of probability category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) What comes next: 13, 9, 1, -11?
(2) -4.589*-2
(3) What is 18195.999 months in centuries?
(4) What is prob of picking 1 o and 3 f when four letters picked without replacement from offeonffeooffeoop?
(5) Suppose -5*q + 110 = -0*q. What is the remainder when 63 is divided by q?","(1) What comes next: 13, 9, 1, -11?",(2) -4.589*-2,(3) What is 18195.999 months in centuries?,(4) What is prob of picking 1 o and 3 f when four letters picked without replacement from offeonffeooffeoop?,(5) Suppose -5*q + 110 = -0*q. What is the remainder when 63 is divided by q?,4
023_193,Read through the given questions. Each question fall into one of the following categories. Choose a question of measurement category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Two letters picked without replacement from {l: 4, r: 1, d: 5}. Give prob of sequence dd.
(2) What is 39570 to the power of 1/10, to the nearest integer?
(3) Solve -4*p - 3*c = -8, -46 + 50 = 2*p - c for p.
(4) Let k(h) = -h**2 + 5*h + 2. What is the least common multiple of k(4) and 3?
(5) How many litres are there in 13006.92ml?","(1) Two letters picked without replacement from {l: 4, r: 1, d: 5}. Give prob of sequence dd.","(2) What is 39570 to the power of 1/10, to the nearest integer?","(3) Solve -4*p - 3*c = -8, -46 + 50 = 2*p - c for p.",(4) Let k(h) = -h**2 + 5*h + 2. What is the least common multiple of k(4) and 3?,(5) How many litres are there in 13006.92ml?,5
023_651,Read through the given questions. Each question fall into one of the following categories. Choose a question of algebra category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Three letters picked without replacement from {g: 2, s: 8, l: 2, r: 4}. Give prob of sequence glr.
(2) What is 920.9407nm in millimeters?
(3) 13/(-5) - (-1 + 3)/(-1)
(4) Suppose b + 3*k + k = 7, 5*k - 20 = -5*b. Suppose 2*l + 4 = 0, -l - 16 - 1 = -5*d. Solve -b*q - 14 = d*o - 2, 4*q = 5*o + 20 for q.
(5) Let u(q) = -q**2 - 6*q - 3. Let s be u(-2). Suppose -p + 3 + 0 = 0, 315 = s*h + 5*p. Calculate the highest common divisor of 40 and h.","(1) Three letters picked without replacement from {g: 2, s: 8, l: 2, r: 4}. Give prob of sequence glr.",(2) What is 920.9407nm in millimeters?,(3) 13/(-5) - (-1 + 3)/(-1),"(4) Suppose b + 3*k + k = 7, 5*k - 20 = -5*b. Suppose 2*l + 4 = 0, -l - 16 - 1 = -5*d. Solve -b*q - 14 = d*o - 2, 4*q = 5*o + 20 for q.","(5) Let u(q) = -q**2 - 6*q - 3. Let s be u(-2). Suppose -p + 3 + 0 = 0, 315 = s*h + 5*p. Calculate the highest common divisor of 40 and h.",4
023_343,Read through the given questions. Each question fall into one of the following categories. Choose a question of probability category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Three letters picked without replacement from idiaiid. Give prob of sequence ddi.
(2) Let o = 2112797/11 - 191538. Let i = 532 - o. What is the common denominator of 2/(-8)*(-970)/25 and i?
(3) Let o(v) = -v**3 - 3*v**2 - 4*v - 6. Let u be o(-4). Suppose 3*q + 11 - u = 0. Solve -5*p = f - 4*p - 6, -3*f + 26 = q*p for f.
(4) What is 10720 to the power of 1/5, to the nearest integer?
(5) How many centimeters are there in three tenths of a meter?",(1) Three letters picked without replacement from idiaiid. Give prob of sequence ddi.,(2) Let o = 2112797/11 - 191538. Let i = 532 - o. What is the common denominator of 2/(-8)*(-970)/25 and i?,"(3) Let o(v) = -v**3 - 3*v**2 - 4*v - 6. Let u be o(-4). Suppose 3*q + 11 - u = 0. Solve -5*p = f - 4*p - 6, -3*f + 26 = q*p for f.","(4) What is 10720 to the power of 1/5, to the nearest integer?",(5) How many centimeters are there in three tenths of a meter?,1
023_512,Read through the given questions. Each question fall into one of the following categories. Choose a question of measurement category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) What is next in -154, -156, -160, -166?
(2) Let v be (-22)/(-4) - (-2)/(-4). Suppose -3*q - 30 = -v*q. What is the highest common factor of 60 and q?
(3) Two letters picked without replacement from {q: 1, g: 3, d: 1}. What is prob of picking 1 g and 1 d?
(4) In base 5, what is 23000 - 1?
(5) How many centimeters are there in eighteen fifths of a meter?","(1) What is next in -154, -156, -160, -166?",(2) Let v be (-22)/(-4) - (-2)/(-4). Suppose -3*q - 30 = -v*q. What is the highest common factor of 60 and q?,"(3) Two letters picked without replacement from {q: 1, g: 3, d: 1}. What is prob of picking 1 g and 1 d?","(4) In base 5, what is 23000 - 1?",(5) How many centimeters are there in eighteen fifths of a meter?,5
023_294,Read through the given questions. Each question fall into one of the following categories. Choose a question of numbers category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Let y(s) = -2*s. Let c be y(-2). Solve c*q + 6 = -10 for q.
(2) Suppose -4*n + 10 = -162. Suppose 2*v - n = -3*u, 4*v - 105 = -2*u - 15. What is the remainder when v is divided by (-6)/(-2) - -8 - -1?
(3) What is prob of sequence gv when two letters picked without replacement from {g: 4, w: 6, k: 2, y: 4, v: 2, q: 1}?
(4) Evaluate (4*(-3)/(-96))/(-1).
(5) What is 32991.37l in millilitres?",(1) Let y(s) = -2*s. Let c be y(-2). Solve c*q + 6 = -10 for q.,"(2) Suppose -4*n + 10 = -162. Suppose 2*v - n = -3*u, 4*v - 105 = -2*u - 15. What is the remainder when v is divided by (-6)/(-2) - -8 - -1?","(3) What is prob of sequence gv when two letters picked without replacement from {g: 4, w: 6, k: 2, y: 4, v: 2, q: 1}?",(4) Evaluate (4*(-3)/(-96))/(-1).,(5) What is 32991.37l in millilitres?,2
023_117,Read through the given questions. Each question fall into one of the following categories. Choose a question of probability category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Calculate prob of picking 1 a and 1 g when two letters picked without replacement from aaag.
(2) What is (-2)/3*69/253?
(3) How many decades are there in 148722.75 months?
(4) What is the units digit of (-33)/(-7) - 2/(-7)?
(5) Let a(z) = -2*z - 14. Let t be a(-7). Solve t*r + 2*r - 4*h + 10 = 0, 5*r - 3*h + 18 = 0 for r.",(1) Calculate prob of picking 1 a and 1 g when two letters picked without replacement from aaag.,(2) What is (-2)/3*69/253?,(3) How many decades are there in 148722.75 months?,(4) What is the units digit of (-33)/(-7) - 2/(-7)?,"(5) Let a(z) = -2*z - 14. Let t be a(-7). Solve t*r + 2*r - 4*h + 10 = 0, 5*r - 3*h + 18 = 0 for r.",1
023_265,Read through the given questions. Each question fall into one of the following categories. Choose a question of algebra category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Let r(s) = s + 6. Let i be r(4). Suppose x = -8 + i. What is the highest common divisor of x and 4?
(2) What is prob of picking 2 f when two letters picked without replacement from iiiiffll?
(3) Evaluate (0 - -4) + 0 + -4.
(4) What is the next term in 17, 48, 79, 110?
(5) How many months are there in seven eighths of a millennium?",(1) Let r(s) = s + 6. Let i be r(4). Suppose x = -8 + i. What is the highest common divisor of x and 4?,(2) What is prob of picking 2 f when two letters picked without replacement from iiiiffll?,(3) Evaluate (0 - -4) + 0 + -4.,"(4) What is the next term in 17, 48, 79, 110?",(5) How many months are there in seven eighths of a millennium?,4
023_363,Read through the given questions. Each question fall into one of the following categories. Choose a question of numbers category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Suppose -4*d + d = d. Solve z - 4*g - 15 = d, -2*g = 3*z - 0*g + 11 for z.
(2) Let v be (1/(-3))/((-4)/48). Suppose -v*x + l = -290 - 25, l = 3*x - 236. Calculate the remainder when x is divided by 27.
(3) What is 5888.181s in nanoseconds?
(4) Four letters picked without replacement from zqiiyiiizyzqyyissnsy. What is prob of sequence nszs?
(5) What is the product of -0.4 and -6.6?","(1) Suppose -4*d + d = d. Solve z - 4*g - 15 = d, -2*g = 3*z - 0*g + 11 for z.","(2) Let v be (1/(-3))/((-4)/48). Suppose -v*x + l = -290 - 25, l = 3*x - 236. Calculate the remainder when x is divided by 27.",(3) What is 5888.181s in nanoseconds?,(4) Four letters picked without replacement from zqiiyiiizyzqyyissnsy. What is prob of sequence nszs?,(5) What is the product of -0.4 and -6.6?,2
023_606,Read through the given questions. Each question fall into one of the following categories. Choose a question of algebra category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Let r be 0/(0 + 2 + -1). Let t(q) = -q**2 + 4*q - 1. Let f be t(3). Suppose m - 8 = -f*i, r*i + i = 0. What is the units digit of m?
(2) Calculate -8 + 3 + 5 - (3 + -1).
(3) What is the next term in -4369, -4366, -4361, -4354?
(4) Two letters picked without replacement from fffffffffffnf. Give prob of sequence nn.
(5) What is 3/25 of a century in years?","(1) Let r be 0/(0 + 2 + -1). Let t(q) = -q**2 + 4*q - 1. Let f be t(3). Suppose m - 8 = -f*i, r*i + i = 0. What is the units digit of m?",(2) Calculate -8 + 3 + 5 - (3 + -1).,"(3) What is the next term in -4369, -4366, -4361, -4354?",(4) Two letters picked without replacement from fffffffffffnf. Give prob of sequence nn.,(5) What is 3/25 of a century in years?,3
023_653,Read through the given questions. Each question fall into one of the following categories. Choose a question of numbers category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Let o(s) = 4 + s**3 + s + 0*s + 10*s**2 + 6 + 1. Let n be o(-10). Calculate the highest common factor of n and 5.
(2) Convert 39934.71m to micrometers.
(3) Evaluate (2 + -8 - -2) + -120 + 129.
(4) What is next in 6, 12, 18?
(5) Calculate prob of sequence zs when two letters picked without replacement from {z: 1, q: 5, s: 5}.",(1) Let o(s) = 4 + s**3 + s + 0*s + 10*s**2 + 6 + 1. Let n be o(-10). Calculate the highest common factor of n and 5.,(2) Convert 39934.71m to micrometers.,(3) Evaluate (2 + -8 - -2) + -120 + 129.,"(4) What is next in 6, 12, 18?","(5) Calculate prob of sequence zs when two letters picked without replacement from {z: 1, q: 5, s: 5}.",1
023_590,Read through the given questions. Each question fall into one of the following categories. Choose a question of probability category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Suppose r - 60 = -r. Let o = -66 - -30. Let x = -20 - o. What is the remainder when r is divided by x?
(2) Convert 8038.306 millennia to months.
(3) In base 9, what is 57046 + -3?
(4) What is prob of picking 3 l and 1 p when four letters picked without replacement from {w: 2, p: 1, k: 1, l: 4, g: 3}?
(5) Let z = -4 - -6. Suppose 2*k = 16 + z. Solve 0 = -5*d + 2*d + k for d.",(1) Suppose r - 60 = -r. Let o = -66 - -30. Let x = -20 - o. What is the remainder when r is divided by x?,(2) Convert 8038.306 millennia to months.,"(3) In base 9, what is 57046 + -3?","(4) What is prob of picking 3 l and 1 p when four letters picked without replacement from {w: 2, p: 1, k: 1, l: 4, g: 3}?",(5) Let z = -4 - -6. Suppose 2*k = 16 + z. Solve 0 = -5*d + 2*d + k for d.,4
023_526,Read through the given questions. Each question fall into one of the following categories. Choose a question of arithmetic category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) What is next in -73, -66, -55, -40, -21?
(2) Calculate 270 divided by -45.
(3) Let d be 354/(-10) + (-12)/(-30). Let o = 1105 - 2151/2. Calculate the common denominator of 3 - 3/(6/d) and o.
(4) Convert 2604871.2 microseconds to minutes.
(5) What is prob of picking 3 w when three letters picked without replacement from wsssssswswssswwssw?","(1) What is next in -73, -66, -55, -40, -21?",(2) Calculate 270 divided by -45.,(3) Let d be 354/(-10) + (-12)/(-30). Let o = 1105 - 2151/2. Calculate the common denominator of 3 - 3/(6/d) and o.,(4) Convert 2604871.2 microseconds to minutes.,(5) What is prob of picking 3 w when three letters picked without replacement from wsssssswswssswwssw?,2
023_162,Read through the given questions. Each question fall into one of the following categories. Choose a question of algebra category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Suppose 39 = -2*d + 5*d. What is the greatest common factor of d and 52?
(2) Evaluate ((-8)/10)/(6/30).
(3) What is seventeen halves of a litre in millilitres?
(4) Calculate prob of sequence zc when two letters picked without replacement from {c: 3, z: 7}.
(5) Solve -2*p + 0 = 2*m - 8, -3*p - 28 = -5*m for m.",(1) Suppose 39 = -2*d + 5*d. What is the greatest common factor of d and 52?,(2) Evaluate ((-8)/10)/(6/30).,(3) What is seventeen halves of a litre in millilitres?,"(4) Calculate prob of sequence zc when two letters picked without replacement from {c: 3, z: 7}.","(5) Solve -2*p + 0 = 2*m - 8, -3*p - 28 = -5*m for m.",5
023_81,Read through the given questions. Each question fall into one of the following categories. Choose a question of measurement category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) How many millilitres are there in twenty-six fifths of a litre?
(2) Suppose 0 = 4*f - 4*w + 260, -2*f - 259 = 2*f - 5*w. Let v be f/(-14) - 12/(-42). Suppose 0*j - v*j = -45. What is the units digit of j?
(3) What is the value of 0 - 5 - ((0 - -6) + -11)?
(4) Three letters picked without replacement from lqqrlqqlqrqpqpppq. What is prob of sequence lrp?
(5) Suppose a - f + 0*f + 5 = 0, 5*f = -4*a + 25. Solve a*r + 2*r = 0 for r.",(1) How many millilitres are there in twenty-six fifths of a litre?,"(2) Suppose 0 = 4*f - 4*w + 260, -2*f - 259 = 2*f - 5*w. Let v be f/(-14) - 12/(-42). Suppose 0*j - v*j = -45. What is the units digit of j?",(3) What is the value of 0 - 5 - ((0 - -6) + -11)?,(4) Three letters picked without replacement from lqqrlqqlqrqpqpppq. What is prob of sequence lrp?,"(5) Suppose a - f + 0*f + 5 = 0, 5*f = -4*a + 25. Solve a*r + 2*r = 0 for r.",1
023_3,Read through the given questions. Each question fall into one of the following categories. Choose a question of numbers category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) What is prob of picking 2 s when two letters picked without replacement from {d: 2, n: 2, w: 1, c: 5, f: 2, s: 2}?
(2) Let k be (3 + 3 + (2 - 23))*-2. Calculate the highest common divisor of 330 and k.
(3) How many millilitres are there in 12.83532l?
(4) Divide -1 by 1037.
(5) Solve -38*s = -53*s - 90 for s.","(1) What is prob of picking 2 s when two letters picked without replacement from {d: 2, n: 2, w: 1, c: 5, f: 2, s: 2}?",(2) Let k be (3 + 3 + (2 - 23))*-2. Calculate the highest common divisor of 330 and k.,(3) How many millilitres are there in 12.83532l?,(4) Divide -1 by 1037.,(5) Solve -38*s = -53*s - 90 for s.,2
023_14,Read through the given questions. Each question fall into one of the following categories. Choose a question of probability category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Two letters picked without replacement from {u: 3, x: 8}. Give prob of sequence uu.
(2) What is next in -39, -25, 23, 123, 293, 551, 915?
(3) What is one fifth of a litre in millilitres?
(4) Let a be 2/(3 + (-26)/10). Let x be ((-6)/a)/(6/(-320)). What is the units digit of x/6 - 3/(-9)?
(5) What is -2 - (-2 + -1 - -2)?","(1) Two letters picked without replacement from {u: 3, x: 8}. Give prob of sequence uu.","(2) What is next in -39, -25, 23, 123, 293, 551, 915?",(3) What is one fifth of a litre in millilitres?,(4) Let a be 2/(3 + (-26)/10). Let x be ((-6)/a)/(6/(-320)). What is the units digit of x/6 - 3/(-9)?,(5) What is -2 - (-2 + -1 - -2)?,1
023_163,Read through the given questions. Each question fall into one of the following categories. Choose a question of measurement category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) What is the value of (-1)/((-2)/(-5))*4/(-5)?
(2) Suppose 0 = -3*a + 3*r + 201, -4*a + 4*r + 196 = -a. Calculate the highest common factor of 8 and a.
(3) Let t be (-12)/54 + 536/(-18). Let c be 4/t - (-274)/30. Solve 3*h + 6 = -c for h.
(4) Two letters picked without replacement from {o: 3, e: 1, n: 3, r: 1, a: 2, d: 3}. Give prob of sequence de.
(5) How many litres are there in 0.861241 millilitres?",(1) What is the value of (-1)/((-2)/(-5))*4/(-5)?,"(2) Suppose 0 = -3*a + 3*r + 201, -4*a + 4*r + 196 = -a. Calculate the highest common factor of 8 and a.",(3) Let t be (-12)/54 + 536/(-18). Let c be 4/t - (-274)/30. Solve 3*h + 6 = -c for h.,"(4) Two letters picked without replacement from {o: 3, e: 1, n: 3, r: 1, a: 2, d: 3}. Give prob of sequence de.",(5) How many litres are there in 0.861241 millilitres?,5
023_178,Read through the given questions. Each question fall into one of the following categories. Choose a question of measurement category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) What is the square root of 33263 to the nearest integer?
(2) Two letters picked without replacement from zzfxzjxjzxzj. What is prob of picking 1 j and 1 x?
(3) Convert 0.0050227 centuries to months.
(4) Let v = 0 - -4. Suppose -u = -5*k - 5, -4*u + 9*k = v*k - 20. Let j = u + -1. What is the units digit of j?
(5) Let t = -8 + 5. Let h = t + 7. Let r be (-8)/24*(-27 - 0). Solve r*q - h*q = 0 for q.",(1) What is the square root of 33263 to the nearest integer?,(2) Two letters picked without replacement from zzfxzjxjzxzj. What is prob of picking 1 j and 1 x?,(3) Convert 0.0050227 centuries to months.,"(4) Let v = 0 - -4. Suppose -u = -5*k - 5, -4*u + 9*k = v*k - 20. Let j = u + -1. What is the units digit of j?",(5) Let t = -8 + 5. Let h = t + 7. Let r be (-8)/24*(-27 - 0). Solve r*q - h*q = 0 for q.,3
023_736,Read through the given questions. Each question fall into one of the following categories. Choose a question of algebra category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Calculate prob of sequence ddyy when four letters picked without replacement from ydyddydd.
(2) What is next in 240, 198, 156, 114, 72, 30?
(3) What is the value of 0 + -1 + (-3 - (-5 - -3))?
(4) Suppose -s = 4*r - 45, -s - r + 4*r = -38. Calculate the remainder when 121 is divided by s.
(5) How many centuries are there in 90116.68 millennia?",(1) Calculate prob of sequence ddyy when four letters picked without replacement from ydyddydd.,"(2) What is next in 240, 198, 156, 114, 72, 30?",(3) What is the value of 0 + -1 + (-3 - (-5 - -3))?,"(4) Suppose -s = 4*r - 45, -s - r + 4*r = -38. Calculate the remainder when 121 is divided by s.",(5) How many centuries are there in 90116.68 millennia?,2
023_757,Read through the given questions. Each question fall into one of the following categories. Choose a question of algebra category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) What is the square root of 21382 to the nearest integer?
(2) Solve -14*h = -4*h - 10 for h.
(3) Two letters picked without replacement from hmpmmmmxmmmxmxamxxt. What is prob of picking 1 t and 1 p?
(4) What is twenty-nine fifths of a litre in millilitres?
(5) Let n(c) = -16*c - 62. Suppose 5*g - 4*s = 336, 5*g + 133 = 5*s + 468. Calculate the remainder when g is divided by n(-5).",(1) What is the square root of 21382 to the nearest integer?,(2) Solve -14*h = -4*h - 10 for h.,(3) Two letters picked without replacement from hmpmmmmxmmmxmxamxxt. What is prob of picking 1 t and 1 p?,(4) What is twenty-nine fifths of a litre in millilitres?,"(5) Let n(c) = -16*c - 62. Suppose 5*g - 4*s = 336, 5*g + 133 = 5*s + 468. Calculate the remainder when g is divided by n(-5).",2
023_487,Read through the given questions. Each question fall into one of the following categories. Choose a question of measurement category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Suppose -k - 3 + 26 = 0. Suppose k = 2*o - 17. Solve v = 6*v - o for v.
(2) Let l = -162 - -234. Calculate the remainder when l is divided by 15.
(3) Work out -101915.2 + -0.01.
(4) What is three eighths of a tonne in kilograms?
(5) Two letters picked without replacement from shrhshhvc. What is prob of sequence vs?",(1) Suppose -k - 3 + 26 = 0. Suppose k = 2*o - 17. Solve v = 6*v - o for v.,(2) Let l = -162 - -234. Calculate the remainder when l is divided by 15.,(3) Work out -101915.2 + -0.01.,(4) What is three eighths of a tonne in kilograms?,(5) Two letters picked without replacement from shrhshhvc. What is prob of sequence vs?,4
023_250,Read through the given questions. Each question fall into one of the following categories. Choose a question of numbers category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Calculate prob of picking 1 j and 1 i when two letters picked without replacement from joojioooojjoioj.
(2) What is -100.1 less than -5?
(3) Let i be (-28)/(-10)*(0 - -25). Let z be (-1 + 0)*1 + i. Let n = z + -41. Solve -3*y + n = 5*m - 2*y, -3*m + 2*y = -9 for m.
(4) How many milligrams are there in eleven quarters of a gram?
(5) Let f = 309/5 - 2441/45. Calculate the common denominator of f and 4/9.",(1) Calculate prob of picking 1 j and 1 i when two letters picked without replacement from joojioooojjoioj.,(2) What is -100.1 less than -5?,"(3) Let i be (-28)/(-10)*(0 - -25). Let z be (-1 + 0)*1 + i. Let n = z + -41. Solve -3*y + n = 5*m - 2*y, -3*m + 2*y = -9 for m.",(4) How many milligrams are there in eleven quarters of a gram?,(5) Let f = 309/5 - 2441/45. Calculate the common denominator of f and 4/9.,5
023_566,Read through the given questions. Each question fall into one of the following categories. Choose a question of algebra category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) What is -26.95 + 28?
(2) Two letters picked without replacement from {m: 2, n: 2, j: 1, i: 1, l: 2}. Give prob of sequence im.
(3) Suppose -5*w - 8 = -3*w, 5*q - 4*w = 41. Let o be (-9)/(-15)*(-7 + 2). Calculate the remainder when q is divided by (3 - (o + 3)) + 0.
(4) How many kilometers are there in 2.673148 centimeters?
(5) Solve 2*d = -4*x - 16, -4 = 7*d - 3*d - 6*x for d.",(1) What is -26.95 + 28?,"(2) Two letters picked without replacement from {m: 2, n: 2, j: 1, i: 1, l: 2}. Give prob of sequence im.","(3) Suppose -5*w - 8 = -3*w, 5*q - 4*w = 41. Let o be (-9)/(-15)*(-7 + 2). Calculate the remainder when q is divided by (3 - (o + 3)) + 0.",(4) How many kilometers are there in 2.673148 centimeters?,"(5) Solve 2*d = -4*x - 16, -4 = 7*d - 3*d - 6*x for d.",5
023_113,Read through the given questions. Each question fall into one of the following categories. Choose a question of measurement category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) What comes next: -444, -449, -464, -495, -548?
(2) In base 11, what is -5 + 745?
(3) What is 7218.802 days in seconds?
(4) Suppose 22 = 2*a + 4*o, 7*a + o = 2*a + 10. What is the least common multiple of a and 10/35 - 122/(-14)?
(5) What is prob of picking 1 b and 2 o when three letters picked without replacement from gobgvbvggbbfogfobv?","(1) What comes next: -444, -449, -464, -495, -548?","(2) In base 11, what is -5 + 745?",(3) What is 7218.802 days in seconds?,"(4) Suppose 22 = 2*a + 4*o, 7*a + o = 2*a + 10. What is the least common multiple of a and 10/35 - 122/(-14)?",(5) What is prob of picking 1 b and 2 o when three letters picked without replacement from gobgvbvggbbfogfobv?,3
023_667,Read through the given questions. Each question fall into one of the following categories. Choose a question of algebra category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Suppose -4*g + 296 = -2*b, 4*b = -5*g + 3*b + 377. What is the greatest common factor of g and 25?
(2) How many grams are there in 85.74213t?
(3) Two letters picked without replacement from {p: 10, c: 4}. Give prob of sequence pp.
(4) What is -2 divided by -525?
(5) What is next in 152, 165, 182, 203?","(1) Suppose -4*g + 296 = -2*b, 4*b = -5*g + 3*b + 377. What is the greatest common factor of g and 25?",(2) How many grams are there in 85.74213t?,"(3) Two letters picked without replacement from {p: 10, c: 4}. Give prob of sequence pp.",(4) What is -2 divided by -525?,"(5) What is next in 152, 165, 182, 203?",5
023_483,Read through the given questions. Each question fall into one of the following categories. Choose a question of numbers category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Calculate the remainder when 219 is divided by (-398)/(-9) - (-40)/(-180).
(2) Convert 9072.433cm to kilometers.
(3) What is next in 140, 146, 156, 170, 188, 210, 236?
(4) Evaluate 6/21*3*(-3)/9.
(5) Calculate prob of sequence ki when two letters picked without replacement from {x: 2, i: 1, k: 11, q: 1}.",(1) Calculate the remainder when 219 is divided by (-398)/(-9) - (-40)/(-180).,(2) Convert 9072.433cm to kilometers.,"(3) What is next in 140, 146, 156, 170, 188, 210, 236?",(4) Evaluate 6/21*3*(-3)/9.,"(5) Calculate prob of sequence ki when two letters picked without replacement from {x: 2, i: 1, k: 11, q: 1}.",1
023_509,Read through the given questions. Each question fall into one of the following categories. Choose a question of numbers category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Solve -j - 4*v = 0, 0 = 11*j - 15*j - 4*v + 12 for j.
(2) What is prob of picking 1 c and 1 b when two letters picked without replacement from bbbbbbbbbbbbbbccbb?
(3) What is -5 - 110911?
(4) How many hours are there in 17/2 of a week?
(5) Let l be 0 - (0 - (215 - -2)). Let h = 1363/6 - l. What is the common denominator of h and 3/2 - 518/280?","(1) Solve -j - 4*v = 0, 0 = 11*j - 15*j - 4*v + 12 for j.",(2) What is prob of picking 1 c and 1 b when two letters picked without replacement from bbbbbbbbbbbbbbccbb?,(3) What is -5 - 110911?,(4) How many hours are there in 17/2 of a week?,(5) Let l be 0 - (0 - (215 - -2)). Let h = 1363/6 - l. What is the common denominator of h and 3/2 - 518/280?,5
023_491,Read through the given questions. Each question fall into one of the following categories. Choose a question of algebra category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Let z be (0 - 6)/(-2) - -123. What is the highest common factor of z and 14?
(2) What is 0 to the power of 1/3, to the nearest integer?
(3) Suppose 2*w = 7*w - 30. Solve 2*y - 4 = w for y.
(4) Calculate prob of sequence cbfw when four letters picked without replacement from rfbcrww.
(5) How many nanograms are there in 6726.04kg?",(1) Let z be (0 - 6)/(-2) - -123. What is the highest common factor of z and 14?,"(2) What is 0 to the power of 1/3, to the nearest integer?",(3) Suppose 2*w = 7*w - 30. Solve 2*y - 4 = w for y.,(4) Calculate prob of sequence cbfw when four letters picked without replacement from rfbcrww.,(5) How many nanograms are there in 6726.04kg?,3
023_737,Read through the given questions. Each question fall into one of the following categories. Choose a question of algebra category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Let f(q) = -q**3 - 2*q**2 + 2*q + 5. Let r be f(-3). Suppose 505 = 5*d + 5*o, 0*o = 4*o - r. Calculate the greatest common factor of d and 9.
(2) Solve 23*o = 21*o - 4*u + 18, 4*o - 2*u + 14 = 0 for o.
(3) Calculate 51 divided by -17.
(4) Two letters picked without replacement from {w: 4, v: 2, o: 1, q: 2, k: 2, x: 4}. What is prob of picking 1 o and 1 v?
(5) Convert 38795.29 seconds to nanoseconds.","(1) Let f(q) = -q**3 - 2*q**2 + 2*q + 5. Let r be f(-3). Suppose 505 = 5*d + 5*o, 0*o = 4*o - r. Calculate the greatest common factor of d and 9.","(2) Solve 23*o = 21*o - 4*u + 18, 4*o - 2*u + 14 = 0 for o.",(3) Calculate 51 divided by -17.,"(4) Two letters picked without replacement from {w: 4, v: 2, o: 1, q: 2, k: 2, x: 4}. What is prob of picking 1 o and 1 v?",(5) Convert 38795.29 seconds to nanoseconds.,2
023_696,Read through the given questions. Each question fall into one of the following categories. Choose a question of arithmetic category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) What is -5 - -2 - ((2 - 3) + 1)?
(2) Let z = -121 - -143. What is the lowest common multiple of z and 12?
(3) What is prob of sequence uuuz when four letters picked without replacement from zubuububqqq?
(4) Let t be (10/25)/((-8)/(-20)). Solve -i + t = -0 for i.
(5) Convert 5396.8g to nanograms.",(1) What is -5 - -2 - ((2 - 3) + 1)?,(2) Let z = -121 - -143. What is the lowest common multiple of z and 12?,(3) What is prob of sequence uuuz when four letters picked without replacement from zubuububqqq?,(4) Let t be (10/25)/((-8)/(-20)). Solve -i + t = -0 for i.,(5) Convert 5396.8g to nanograms.,1
023_603,Read through the given questions. Each question fall into one of the following categories. Choose a question of arithmetic category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Calculate 72 divided by 3.
(2) Let j be (-141)/(-21)*1 + (-4)/(-14). What is the highest common divisor of j and 14?
(3) How many grams are there in 3764.978 micrograms?
(4) Suppose -6*m = -m. Let c(d) = 2*d + 5. Let w be c(m). Solve -4*a - 20 = 5*r, -3*r - w*a = -a + 12 for r.
(5) Three letters picked without replacement from bbvyybbvybvyy. Give prob of picking 1 v and 2 b.",(1) Calculate 72 divided by 3.,(2) Let j be (-141)/(-21)*1 + (-4)/(-14). What is the highest common divisor of j and 14?,(3) How many grams are there in 3764.978 micrograms?,"(4) Suppose -6*m = -m. Let c(d) = 2*d + 5. Let w be c(m). Solve -4*a - 20 = 5*r, -3*r - w*a = -a + 12 for r.",(5) Three letters picked without replacement from bbvyybbvybvyy. Give prob of picking 1 v and 2 b.,1
023_585,Read through the given questions. Each question fall into one of the following categories. Choose a question of arithmetic category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Suppose 24 = -4*j + 6*j. Let b(g) = 11*g**2 - 2*g + 3. Let z be b(1). Calculate the highest common divisor of z and j.
(2) How many minutes are there in 4/15 of a hour?
(3) Solve 30*i + 0 = -60 for i.
(4) Evaluate -6 - (-14 + 6) - (0 - 3).
(5) Three letters picked without replacement from afwawfawwwwa. What is prob of picking 2 f and 1 w?",(1) Suppose 24 = -4*j + 6*j. Let b(g) = 11*g**2 - 2*g + 3. Let z be b(1). Calculate the highest common divisor of z and j.,(2) How many minutes are there in 4/15 of a hour?,(3) Solve 30*i + 0 = -60 for i.,(4) Evaluate -6 - (-14 + 6) - (0 - 3).,(5) Three letters picked without replacement from afwawfawwwwa. What is prob of picking 2 f and 1 w?,4
023_355,Read through the given questions. Each question fall into one of the following categories. Choose a question of algebra category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) How many millilitres are there in 18/5 of a litre?
(2) What is the value of (-1)/(-3)*9/6?
(3) Calculate prob of sequence oqv when three letters picked without replacement from {o: 1, v: 2, q: 1}.
(4) What is the next term in 477, 954, 1431, 1908?
(5) Let p be 1 + 0 - 0 - -1. Suppose -36 = 3*o - 5*o - 4*c, -5*o = p*c - 82. Suppose v - 188 = -4*v + 3*g, -o = -4*g. What is the remainder when v is divided by 21?",(1) How many millilitres are there in 18/5 of a litre?,(2) What is the value of (-1)/(-3)*9/6?,"(3) Calculate prob of sequence oqv when three letters picked without replacement from {o: 1, v: 2, q: 1}.","(4) What is the next term in 477, 954, 1431, 1908?","(5) Let p be 1 + 0 - 0 - -1. Suppose -36 = 3*o - 5*o - 4*c, -5*o = p*c - 82. Suppose v - 188 = -4*v + 3*g, -o = -4*g. What is the remainder when v is divided by 21?",4
023_168,Read through the given questions. Each question fall into one of the following categories. Choose a question of probability category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Solve f + g = -2 + 8, 4*g = 4*f for f.
(2) Let s(j) = j**2 - j - 3. Let y(r) = 4*r - 8. Let n(v) = -3*v + 9. Let g(x) = 5*n(x) + 4*y(x). What is the lowest common multiple of g(-6) and s(4)?
(3) What is 8721.276 weeks in minutes?
(4) Calculate prob of sequence sass when four letters picked without replacement from {s: 7, a: 4}.
(5) 0.897 * 0.1","(1) Solve f + g = -2 + 8, 4*g = 4*f for f.",(2) Let s(j) = j**2 - j - 3. Let y(r) = 4*r - 8. Let n(v) = -3*v + 9. Let g(x) = 5*n(x) + 4*y(x). What is the lowest common multiple of g(-6) and s(4)?,(3) What is 8721.276 weeks in minutes?,"(4) Calculate prob of sequence sass when four letters picked without replacement from {s: 7, a: 4}.",(5) 0.897 * 0.1,4
023_765,Read through the given questions. Each question fall into one of the following categories. Choose a question of algebra category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) What is 4*(-2)/2*1/18?
(2) Convert 30.40365 millennia to decades.
(3) Let h = -3 - -5. Suppose -3*t + 3*p + 3 = -p, -p = -2*t + h. Let i be 1*(2 - 0) - t. Solve -2*l - i = -l for l.
(4) Two letters picked without replacement from {f: 2, z: 5}. What is prob of sequence zf?
(5) Suppose -10*f + 12*f = 124. Calculate the remainder when f is divided by 22.",(1) What is 4*(-2)/2*1/18?,(2) Convert 30.40365 millennia to decades.,"(3) Let h = -3 - -5. Suppose -3*t + 3*p + 3 = -p, -p = -2*t + h. Let i be 1*(2 - 0) - t. Solve -2*l - i = -l for l.","(4) Two letters picked without replacement from {f: 2, z: 5}. What is prob of sequence zf?",(5) Suppose -10*f + 12*f = 124. Calculate the remainder when f is divided by 22.,3
023_476,Read through the given questions. Each question fall into one of the following categories. Choose a question of arithmetic category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Calculate -378 divided by 4.
(2) How many hours are there in 15/4 of a week?
(3) Let u = -968/171 + -1/171. What is the common denominator of u and -32/39?
(4) Solve 56 - 20 = -3*i - 4*w, 5*i + 4*w = -44 for i.
(5) Four letters picked without replacement from {k: 1, y: 1, p: 3, r: 7}. What is prob of sequence ppkp?",(1) Calculate -378 divided by 4.,(2) How many hours are there in 15/4 of a week?,(3) Let u = -968/171 + -1/171. What is the common denominator of u and -32/39?,"(4) Solve 56 - 20 = -3*i - 4*w, 5*i + 4*w = -44 for i.","(5) Four letters picked without replacement from {k: 1, y: 1, p: 3, r: 7}. What is prob of sequence ppkp?",1
023_537,Read through the given questions. Each question fall into one of the following categories. Choose a question of arithmetic category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Suppose -a - 4*i + i - 13 = 0, 2*i + 10 = 0. Suppose a = -5*g + l, 4*l - 10 = -2. Suppose 2 = 5*j - 2*q, -j - 2*q + 13 - 3 = g. Solve -j*k = 3*k + 5 for k.
(2) Convert 7241.819 nanometers to meters.
(3) Let r be 31 + 5 + (-3 - 0). Let h(c) = -c**2 - 3*c + 3. Let n be h(-3). Suppose -4*k - 14 = -s, n*s - k - 62 = k. What is the highest common factor of r and s?
(4) Calculate prob of picking 2 x and 1 f when three letters picked without replacement from {f: 11, h: 2, x: 6}.
(5) Evaluate (((-4)/(-10))/(3/(-15)))/(-2).","(1) Suppose -a - 4*i + i - 13 = 0, 2*i + 10 = 0. Suppose a = -5*g + l, 4*l - 10 = -2. Suppose 2 = 5*j - 2*q, -j - 2*q + 13 - 3 = g. Solve -j*k = 3*k + 5 for k.",(2) Convert 7241.819 nanometers to meters.,"(3) Let r be 31 + 5 + (-3 - 0). Let h(c) = -c**2 - 3*c + 3. Let n be h(-3). Suppose -4*k - 14 = -s, n*s - k - 62 = k. What is the highest common factor of r and s?","(4) Calculate prob of picking 2 x and 1 f when three letters picked without replacement from {f: 11, h: 2, x: 6}.",(5) Evaluate (((-4)/(-10))/(3/(-15)))/(-2).,5
023_738,Read through the given questions. Each question fall into one of the following categories. Choose a question of measurement category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) How many decades are there in six fifths of a millennium?
(2) Calculate prob of sequence lc when two letters picked without replacement from rrrclrhm.
(3) Suppose 0 = 2*b - 16 + 6. Suppose -2*p - p = -39. Suppose 98 = b*n + p. What is the remainder when 33 is divided by n?
(4) What is the value of (9/((-495)/(-4)))/(2/5)?
(5) What is next in -171, -327, -483?",(1) How many decades are there in six fifths of a millennium?,(2) Calculate prob of sequence lc when two letters picked without replacement from rrrclrhm.,(3) Suppose 0 = 2*b - 16 + 6. Suppose -2*p - p = -39. Suppose 98 = b*n + p. What is the remainder when 33 is divided by n?,(4) What is the value of (9/((-495)/(-4)))/(2/5)?,"(5) What is next in -171, -327, -483?",1
023_53,Read through the given questions. Each question fall into one of the following categories. Choose a question of numbers category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Calculate the lowest common multiple of (21*-1 + -1)/(-2) and 6.
(2) What is prob of sequence kisi when four letters picked without replacement from fsfkifefs?
(3) What is (-5)/2*(-136)/170?
(4) Suppose 36 = f + 3*f. Let s = -5 + f. Solve -3*p - 4*r = 0, -4 = -0*p - 2*p - s*r for p.
(5) How many seconds are there in seven thirds of a minute?",(1) Calculate the lowest common multiple of (21*-1 + -1)/(-2) and 6.,(2) What is prob of sequence kisi when four letters picked without replacement from fsfkifefs?,(3) What is (-5)/2*(-136)/170?,"(4) Suppose 36 = f + 3*f. Let s = -5 + f. Solve -3*p - 4*r = 0, -4 = -0*p - 2*p - s*r for p.",(5) How many seconds are there in seven thirds of a minute?,1
023_203,Read through the given questions. Each question fall into one of the following categories. Choose a question of numbers category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) How many nanometers are there in 0.0329471m?
(2) What is the next term in 2506, 5011, 7516, 10021, 12526, 15031?
(3) Two letters picked without replacement from dfd. Give prob of sequence fd.
(4) Put together -22456 and 5.
(5) Let n = 17 - 12. Suppose -4*t + h = 48, -h + 24 = -n*t - 37. Let b = t + 21. What is the units digit of b?",(1) How many nanometers are there in 0.0329471m?,"(2) What is the next term in 2506, 5011, 7516, 10021, 12526, 15031?",(3) Two letters picked without replacement from dfd. Give prob of sequence fd.,(4) Put together -22456 and 5.,"(5) Let n = 17 - 12. Suppose -4*t + h = 48, -h + 24 = -n*t - 37. Let b = t + 21. What is the units digit of b?",5
023_562,Read through the given questions. Each question fall into one of the following categories. Choose a question of measurement category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Let u be (285/38)/(1/4). Suppose d = 5*x - 3, 0*d = -4*d - 5*x + 13. Solve 0 = 4*n - 3*f - 13 - 18, -5*n + d*f + u = 0 for n.
(2) Suppose 0 = -6*g + 26 + 136. What is the units digit of g?
(3) Divide -6 by 2.
(4) What is eleven halves of a gram in milligrams?
(5) Calculate prob of picking 2 u and 1 w when three letters picked without replacement from wuwuwspxw.","(1) Let u be (285/38)/(1/4). Suppose d = 5*x - 3, 0*d = -4*d - 5*x + 13. Solve 0 = 4*n - 3*f - 13 - 18, -5*n + d*f + u = 0 for n.",(2) Suppose 0 = -6*g + 26 + 136. What is the units digit of g?,(3) Divide -6 by 2.,(4) What is eleven halves of a gram in milligrams?,(5) Calculate prob of picking 2 u and 1 w when three letters picked without replacement from wuwuwspxw.,4
023_352,Read through the given questions. Each question fall into one of the following categories. Choose a question of measurement category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Suppose -2*v + 3*l - 12 = 0, -3*l = -0*v + 2*v - 12. Suppose v = i + i - 42. Calculate the remainder when i is divided by 6.
(2) How many millilitres are there in 42/5 of a litre?
(3) What is the next term in 22, 63, 136, 247, 402, 607, 868, 1191?
(4) Divide -123 by -13.
(5) Calculate prob of picking 1 n and 2 a when three letters picked without replacement from {v: 3, a: 4, n: 7}.","(1) Suppose -2*v + 3*l - 12 = 0, -3*l = -0*v + 2*v - 12. Suppose v = i + i - 42. Calculate the remainder when i is divided by 6.",(2) How many millilitres are there in 42/5 of a litre?,"(3) What is the next term in 22, 63, 136, 247, 402, 607, 868, 1191?",(4) Divide -123 by -13.,"(5) Calculate prob of picking 1 n and 2 a when three letters picked without replacement from {v: 3, a: 4, n: 7}.",2
023_134,Read through the given questions. Each question fall into one of the following categories. Choose a question of measurement category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) What is 7/2 of a litre in millilitres?
(2) Let f(k) = -k**3 - 8*k**2 - 4*k. Let p be f(-9). Let d = p + 15. Suppose -z - 2 = -14. Calculate the greatest common divisor of d and z.
(3) Solve -b - 2*q = 2*q + 21, 2*q - 17 = 5*b for b.
(4) Evaluate -1 - (0 + 0 - -1).
(5) Two letters picked without replacement from apxpppaadx. Give prob of sequence aa.",(1) What is 7/2 of a litre in millilitres?,(2) Let f(k) = -k**3 - 8*k**2 - 4*k. Let p be f(-9). Let d = p + 15. Suppose -z - 2 = -14. Calculate the greatest common divisor of d and z.,"(3) Solve -b - 2*q = 2*q + 21, 2*q - 17 = 5*b for b.",(4) Evaluate -1 - (0 + 0 - -1).,(5) Two letters picked without replacement from apxpppaadx. Give prob of sequence aa.,1
023_623,Read through the given questions. Each question fall into one of the following categories. Choose a question of arithmetic category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) What is -104752 - 0.19?
(2) What is seven halves of a kilometer in meters?
(3) Let s(g) = g**2 - 12*g + 3. Let i be s(12). Solve 1 = 2*p - 4*q + i, 0 = 4*q - 12 for p.
(4) Suppose -u = -7 + 1. What is the remainder when 17 is divided by u?
(5) Four letters picked without replacement from aaaa. Give prob of sequence aaaa.",(1) What is -104752 - 0.19?,(2) What is seven halves of a kilometer in meters?,"(3) Let s(g) = g**2 - 12*g + 3. Let i be s(12). Solve 1 = 2*p - 4*q + i, 0 = 4*q - 12 for p.",(4) Suppose -u = -7 + 1. What is the remainder when 17 is divided by u?,(5) Four letters picked without replacement from aaaa. Give prob of sequence aaaa.,1
023_426,Read through the given questions. Each question fall into one of the following categories. Choose a question of arithmetic category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Three letters picked without replacement from ieuiueiieeee. What is prob of sequence eii?
(2) Suppose -3*r - 2*b = -10, -2*r - 2*b + 7 = -b. What is the units digit of r?
(3) What is twenty-one fifths of a millennium in years?
(4) Solve 0 = -4*v + 2*z + 18, 4 = 3*v + z - 7 for v.
(5) Evaluate (1/2)/(17/170).",(1) Three letters picked without replacement from ieuiueiieeee. What is prob of sequence eii?,"(2) Suppose -3*r - 2*b = -10, -2*r - 2*b + 7 = -b. What is the units digit of r?",(3) What is twenty-one fifths of a millennium in years?,"(4) Solve 0 = -4*v + 2*z + 18, 4 = 3*v + z - 7 for v.",(5) Evaluate (1/2)/(17/170).,5
023_588,Read through the given questions. Each question fall into one of the following categories. Choose a question of measurement category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Evaluate -2 - 118/(-40) - 24/32.
(2) Calculate prob of picking 2 g and 2 f when four letters picked without replacement from fgggfggggf.
(3) Let x be 11 + -3 + 1/1. Suppose 3*m + 0*m - x = 0. Suppose -5*d + 4*d = -m. What is the units digit of d?
(4) How many grams are there in nine tenths of a kilogram?
(5) Solve -3*v = -58 + 79 for v.",(1) Evaluate -2 - 118/(-40) - 24/32.,(2) Calculate prob of picking 2 g and 2 f when four letters picked without replacement from fgggfggggf.,(3) Let x be 11 + -3 + 1/1. Suppose 3*m + 0*m - x = 0. Suppose -5*d + 4*d = -m. What is the units digit of d?,(4) How many grams are there in nine tenths of a kilogram?,(5) Solve -3*v = -58 + 79 for v.,4
023_146,Read through the given questions. Each question fall into one of the following categories. Choose a question of algebra category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) What comes next: -269, -539, -809, -1079, -1349, -1619?
(2) What is 6234.21 hours in milliseconds?
(3) What is -1 divided by 82?
(4) Three letters picked without replacement from {a: 8, u: 11, g: 1}. What is prob of picking 1 a and 2 u?
(5) Let t(n) = n**2 + 8*n + 3. Let h(j) = -j**3 + 3*j**2 - 4*j + 2. Let a be h(4). Let z = -8 - a. Calculate the remainder when z is divided by t(-9).","(1) What comes next: -269, -539, -809, -1079, -1349, -1619?",(2) What is 6234.21 hours in milliseconds?,(3) What is -1 divided by 82?,"(4) Three letters picked without replacement from {a: 8, u: 11, g: 1}. What is prob of picking 1 a and 2 u?",(5) Let t(n) = n**2 + 8*n + 3. Let h(j) = -j**3 + 3*j**2 - 4*j + 2. Let a be h(4). Let z = -8 - a. Calculate the remainder when z is divided by t(-9).,1
023_634,Read through the given questions. Each question fall into one of the following categories. Choose a question of probability category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) What is eleven tenths of a centimeter in micrometers?
(2) Four letters picked without replacement from qrqqsrsqskrqqkrqks. Give prob of picking 4 q.
(3) (3*(-3)/(-6))/((-3)/(-10))
(4) Let w = 6 + -11. Let r = 60 - w. Calculate the highest common factor of 13 and r.
(5) Solve 3*b + 7 = 4*k + 3, 2*k = 5*b + 16 for b.",(1) What is eleven tenths of a centimeter in micrometers?,(2) Four letters picked without replacement from qrqqsrsqskrqqkrqks. Give prob of picking 4 q.,(3) (3*(-3)/(-6))/((-3)/(-10)),(4) Let w = 6 + -11. Let r = 60 - w. Calculate the highest common factor of 13 and r.,"(5) Solve 3*b + 7 = 4*k + 3, 2*k = 5*b + 16 for b.",2
023_754,Read through the given questions. Each question fall into one of the following categories. Choose a question of measurement category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Calculate prob of picking 1 v and 1 i when two letters picked without replacement from ipvpviipvpvp.
(2) Solve 4*o - 26 + 38 = 0 for o.
(3) How many meters are there in 889020.7km?
(4) Let z = -62 - -110. Let l = z - 9. What is the units digit of l?
(5) -774 divided by -3",(1) Calculate prob of picking 1 v and 1 i when two letters picked without replacement from ipvpviipvpvp.,(2) Solve 4*o - 26 + 38 = 0 for o.,(3) How many meters are there in 889020.7km?,(4) Let z = -62 - -110. Let l = z - 9. What is the units digit of l?,(5) -774 divided by -3,3
023_388,Read through the given questions. Each question fall into one of the following categories. Choose a question of arithmetic category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) 7/((-1008)/(-102)) - 18/48
(2) Solve 5*c = 3*z - 31, 0*c + c + 7 = z for c.
(3) What is 13/4 of a century in months?
(4) Three letters picked without replacement from {f: 11, i: 2, p: 1}. What is prob of sequence pff?
(5) Let n = -34 + 77. Calculate the remainder when n is divided by 9.",(1) 7/((-1008)/(-102)) - 18/48,"(2) Solve 5*c = 3*z - 31, 0*c + c + 7 = z for c.",(3) What is 13/4 of a century in months?,"(4) Three letters picked without replacement from {f: 11, i: 2, p: 1}. What is prob of sequence pff?",(5) Let n = -34 + 77. Calculate the remainder when n is divided by 9.,1
023_30,Read through the given questions. Each question fall into one of the following categories. Choose a question of probability category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Suppose 20 = 5*f - 10. Let g = f - 15. Let y = 15 + g. Solve -4*i - y = -7*i for i.
(2) 0.5 times 0.43
(3) Three letters picked without replacement from bbrtbrububtbjutbu. Give prob of sequence tbr.
(4) Convert 483.935ms to seconds.
(5) Let d(l) = l**2 - 3*l. Let x = 2 + 0. Suppose -x*b + 13 = 1. Calculate the remainder when d(5) is divided by b.",(1) Suppose 20 = 5*f - 10. Let g = f - 15. Let y = 15 + g. Solve -4*i - y = -7*i for i.,(2) 0.5 times 0.43,(3) Three letters picked without replacement from bbrtbrububtbjutbu. Give prob of sequence tbr.,(4) Convert 483.935ms to seconds.,(5) Let d(l) = l**2 - 3*l. Let x = 2 + 0. Suppose -x*b + 13 = 1. Calculate the remainder when d(5) is divided by b.,3
023_431,Read through the given questions. Each question fall into one of the following categories. Choose a question of probability category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) How many decades are there in one fifth of a century?
(2) Suppose -16 = 4*q - 0*q. Let z be (-50)/q + (-1)/(-2). Suppose -2*a + 37 = -67. Calculate the greatest common factor of z and a.
(3) Solve -8*y = -7*y + 5*y for y.
(4) What is 6 + (-2 - 2) - -5?
(5) What is prob of picking 1 k and 1 t when two letters picked without replacement from ttktktttktttkw?",(1) How many decades are there in one fifth of a century?,(2) Suppose -16 = 4*q - 0*q. Let z be (-50)/q + (-1)/(-2). Suppose -2*a + 37 = -67. Calculate the greatest common factor of z and a.,(3) Solve -8*y = -7*y + 5*y for y.,(4) What is 6 + (-2 - 2) - -5?,(5) What is prob of picking 1 k and 1 t when two letters picked without replacement from ttktktttktttkw?,5
023_407,Read through the given questions. Each question fall into one of the following categories. Choose a question of arithmetic category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) What is 1/10 of a litre in millilitres?
(2) What comes next: 13, 14, 11, 4, -7?
(3) Let x(k) = 11*k - 7. Let s = 8 - 5. What is the tens digit of x(s)?
(4) What is prob of sequence uy when two letters picked without replacement from uukgguvuyukyvkyuyc?
(5) What is the eighth root of 73195 to the nearest integer?",(1) What is 1/10 of a litre in millilitres?,"(2) What comes next: 13, 14, 11, 4, -7?",(3) Let x(k) = 11*k - 7. Let s = 8 - 5. What is the tens digit of x(s)?,(4) What is prob of sequence uy when two letters picked without replacement from uukgguvuyukyvkyuyc?,(5) What is the eighth root of 73195 to the nearest integer?,5
023_496,Read through the given questions. Each question fall into one of the following categories. Choose a question of arithmetic category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Two letters picked without replacement from xaxaaanxxaxnxzvxa. Give prob of picking 1 a and 1 v.
(2) Suppose -4*i + 12 = 3*x, -3*x = -5*i - x + 38. Suppose 5 = 5*a, l - i*l = a - 16. Solve 5*z + 18 = y - 4*y, -11 = l*z + 2*y for z.
(3) What is 4/75 of a week in seconds?
(4) What is -4784 divided by 104?
(5) Let m = 6 + -2. Let n(z) = m - 2 - z**2 - 9*z + 1. What is the remainder when n(-7) is divided by 9?",(1) Two letters picked without replacement from xaxaaanxxaxnxzvxa. Give prob of picking 1 a and 1 v.,"(2) Suppose -4*i + 12 = 3*x, -3*x = -5*i - x + 38. Suppose 5 = 5*a, l - i*l = a - 16. Solve 5*z + 18 = y - 4*y, -11 = l*z + 2*y for z.",(3) What is 4/75 of a week in seconds?,(4) What is -4784 divided by 104?,(5) Let m = 6 + -2. Let n(z) = m - 2 - z**2 - 9*z + 1. What is the remainder when n(-7) is divided by 9?,4
023_424,Read through the given questions. Each question fall into one of the following categories. Choose a question of algebra category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Calculate prob of sequence rkk when three letters picked without replacement from {r: 12, k: 3}.
(2) What is next in -262, -266, -270, -274, -278, -282?
(3) Let w(d) be the first derivative of d**4/4 + d**3/3 - 9. Let o be (1 + 1)*3/6. What is the units digit of w(o)?
(4) What is twenty-six fifths of a millennium in months?
(5) Evaluate (1130/226)/(5/(-4)).","(1) Calculate prob of sequence rkk when three letters picked without replacement from {r: 12, k: 3}.","(2) What is next in -262, -266, -270, -274, -278, -282?",(3) Let w(d) be the first derivative of d**4/4 + d**3/3 - 9. Let o be (1 + 1)*3/6. What is the units digit of w(o)?,(4) What is twenty-six fifths of a millennium in months?,(5) Evaluate (1130/226)/(5/(-4)).,2
023_551,Read through the given questions. Each question fall into one of the following categories. Choose a question of measurement category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Convert 7.3754496 minutes to days.
(2) Calculate 36/(-675)*5*3/2.
(3) Calculate prob of sequence ssze when four letters picked without replacement from {h: 2, s: 4, r: 1, e: 1, z: 2}.
(4) Suppose -4*m - 5*z - 6 = -2*z, -m + z = -2. Suppose -26 = -4*d + 2. Solve 3*p + 2*a = 11, 4*p + m*a = 5*a + d for p.
(5) Let u(j) = -j**3 + j**2 - 4*j - 6. Calculate the lowest common multiple of 20 and u(-3).",(1) Convert 7.3754496 minutes to days.,(2) Calculate 36/(-675)*5*3/2.,"(3) Calculate prob of sequence ssze when four letters picked without replacement from {h: 2, s: 4, r: 1, e: 1, z: 2}.","(4) Suppose -4*m - 5*z - 6 = -2*z, -m + z = -2. Suppose -26 = -4*d + 2. Solve 3*p + 2*a = 11, 4*p + m*a = 5*a + d for p.",(5) Let u(j) = -j**3 + j**2 - 4*j - 6. Calculate the lowest common multiple of 20 and u(-3).,1
023_9,Read through the given questions. Each question fall into one of the following categories. Choose a question of probability category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Let m be (0/(-3))/(-3) - 37. Let f = -25 - m. What is the units digit of f?
(2) Calculate -0.2865*-2.
(3) Solve -27*c + 116 = -46 for c.
(4) How many nanograms are there in 944.3821 grams?
(5) Three letters picked without replacement from {x: 14, y: 5, n: 1}. What is prob of sequence xxx?",(1) Let m be (0/(-3))/(-3) - 37. Let f = -25 - m. What is the units digit of f?,(2) Calculate -0.2865*-2.,(3) Solve -27*c + 116 = -46 for c.,(4) How many nanograms are there in 944.3821 grams?,"(5) Three letters picked without replacement from {x: 14, y: 5, n: 1}. What is prob of sequence xxx?",5
023_249,Read through the given questions. Each question fall into one of the following categories. Choose a question of measurement category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Solve -90 = -2*s + r - 100, -3*r - 25 = 5*s for s.
(2) How many days are there in 122.088 hours?
(3) Calculate prob of picking 2 s when two letters picked without replacement from sssssszssssss.
(4) Let r be (0 + -1)*-1*1. Suppose 10 + 0 = 5*l. Suppose -4 = -l*u - 2. Calculate the greatest common divisor of u and r.
(5) What is the product of -0.02 and 20.2?","(1) Solve -90 = -2*s + r - 100, -3*r - 25 = 5*s for s.",(2) How many days are there in 122.088 hours?,(3) Calculate prob of picking 2 s when two letters picked without replacement from sssssszssssss.,(4) Let r be (0 + -1)*-1*1. Suppose 10 + 0 = 5*l. Suppose -4 = -l*u - 2. Calculate the greatest common divisor of u and r.,(5) What is the product of -0.02 and 20.2?,2
023_204,Read through the given questions. Each question fall into one of the following categories. Choose a question of arithmetic category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) How many years are there in 43/4 of a century?
(2) Let s be 3/(-3) - (-513296)/26. Let a = s + -19753. Let n = 3955/234 + a. Calculate the common denominator of -13/18 and n.
(3) Calculate 8 - (0 + 7 + -4).
(4) Solve 0 = 4*y + 5*t - 15, 17 = 4*y - t + 4*t for y.
(5) Two letters picked without replacement from {v: 5}. What is prob of sequence vv?",(1) How many years are there in 43/4 of a century?,(2) Let s be 3/(-3) - (-513296)/26. Let a = s + -19753. Let n = 3955/234 + a. Calculate the common denominator of -13/18 and n.,(3) Calculate 8 - (0 + 7 + -4).,"(4) Solve 0 = 4*y + 5*t - 15, 17 = 4*y - t + 4*t for y.",(5) Two letters picked without replacement from {v: 5}. What is prob of sequence vv?,3
023_422,Read through the given questions. Each question fall into one of the following categories. Choose a question of measurement category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) What is thirty-one fifths of a gram in milligrams?
(2) What is (-14)/(-10) - 1 - (-135)/225?
(3) Two letters picked without replacement from {u: 2, x: 8}. Give prob of picking 1 x and 1 u.
(4) Let i(h) = h**2 + 2*h - 4. Let k be (2/(-3))/(3/(-9)). Calculate the remainder when i(-5) is divided by 6/(0 + 3/k).
(5) Solve 3*t - 4*g - 5 - 11 = 0, -11 = -3*t - g for t.",(1) What is thirty-one fifths of a gram in milligrams?,(2) What is (-14)/(-10) - 1 - (-135)/225?,"(3) Two letters picked without replacement from {u: 2, x: 8}. Give prob of picking 1 x and 1 u.",(4) Let i(h) = h**2 + 2*h - 4. Let k be (2/(-3))/(3/(-9)). Calculate the remainder when i(-5) is divided by 6/(0 + 3/k).,"(5) Solve 3*t - 4*g - 5 - 11 = 0, -11 = -3*t - g for t.",1
023_19,Read through the given questions. Each question fall into one of the following categories. Choose a question of measurement category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) What is the common denominator of -107/22 and 1377/(-126)*(-3)/18?
(2) Calculate -0.064 + 734.
(3) Four letters picked without replacement from {l: 6, o: 3, f: 1, t: 1, c: 3, z: 1}. What is prob of sequence fccc?
(4) Suppose 5*r - c = 16, 3*r - 2*c = 3 + 8. Solve 3*i - 8 - 1 = 0, -4*f - r*i = 3 for f.
(5) How many microseconds are there in 82.71096s?",(1) What is the common denominator of -107/22 and 1377/(-126)*(-3)/18?,(2) Calculate -0.064 + 734.,"(3) Four letters picked without replacement from {l: 6, o: 3, f: 1, t: 1, c: 3, z: 1}. What is prob of sequence fccc?","(4) Suppose 5*r - c = 16, 3*r - 2*c = 3 + 8. Solve 3*i - 8 - 1 = 0, -4*f - r*i = 3 for f.",(5) How many microseconds are there in 82.71096s?,5
023_311,Read through the given questions. Each question fall into one of the following categories. Choose a question of numbers category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Calculate prob of sequence nesl when four letters picked without replacement from {a: 1, v: 2, e: 2, n: 1, l: 1, s: 1}.
(2) What is the next term in -14, 84, 250, 484?
(3) Let u = -10 + 18. Let c = 4 - 3. Calculate the smallest common multiple of c and u.
(4) How many millennia are there in 126528.03 months?
(5) What is 1699 to the power of 1/6, to the nearest integer?","(1) Calculate prob of sequence nesl when four letters picked without replacement from {a: 1, v: 2, e: 2, n: 1, l: 1, s: 1}.","(2) What is the next term in -14, 84, 250, 484?",(3) Let u = -10 + 18. Let c = 4 - 3. Calculate the smallest common multiple of c and u.,(4) How many millennia are there in 126528.03 months?,"(5) What is 1699 to the power of 1/6, to the nearest integer?",3
023_589,Read through the given questions. Each question fall into one of the following categories. Choose a question of numbers category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Evaluate -8 + (-5 - (-10 - (0 + -4))).
(2) Solve -4*z + 4*f - 8 = f, 0 = z - 4*f + 2 for z.
(3) Calculate prob of picking 1 p and 1 a when two letters picked without replacement from {j: 7, d: 4, p: 3, l: 4, a: 1}.
(4) What is 9227.699 litres in millilitres?
(5) Let z be -3 + 6 + 4/2. Suppose -28 = -4*g - 0*u - z*u, 5*u - 24 = -2*g. Suppose -4*i = -3*o + o + g, o = 3*i. What is the highest common factor of o and 3?",(1) Evaluate -8 + (-5 - (-10 - (0 + -4))).,"(2) Solve -4*z + 4*f - 8 = f, 0 = z - 4*f + 2 for z.","(3) Calculate prob of picking 1 p and 1 a when two letters picked without replacement from {j: 7, d: 4, p: 3, l: 4, a: 1}.",(4) What is 9227.699 litres in millilitres?,"(5) Let z be -3 + 6 + 4/2. Suppose -28 = -4*g - 0*u - z*u, 5*u - 24 = -2*g. Suppose -4*i = -3*o + o + g, o = 3*i. What is the highest common factor of o and 3?",5
023_758,Read through the given questions. Each question fall into one of the following categories. Choose a question of arithmetic category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) In base 3, what is -12020 + 10?
(2) Let n(m) = 3*m**2 - 1 + 0*m**2 + m + m**3 - m**2. Let s be n(-2). What is the units digit of (-1)/(s/30) - 2?
(3) How many micrograms are there in thirty-four fifths of a milligram?
(4) What is the next term in -119, -237, -355, -473, -591, -709?
(5) Three letters picked without replacement from {q: 8, f: 4, k: 5}. Give prob of sequence kkk.","(1) In base 3, what is -12020 + 10?",(2) Let n(m) = 3*m**2 - 1 + 0*m**2 + m + m**3 - m**2. Let s be n(-2). What is the units digit of (-1)/(s/30) - 2?,(3) How many micrograms are there in thirty-four fifths of a milligram?,"(4) What is the next term in -119, -237, -355, -473, -591, -709?","(5) Three letters picked without replacement from {q: 8, f: 4, k: 5}. Give prob of sequence kkk.",1
023_90,Read through the given questions. Each question fall into one of the following categories. Choose a question of probability category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Calculate the remainder when (-16)/(-8)*(-98)/(-4) is divided by 17.
(2) How many kilograms are there in 287.403 micrograms?
(3) Let s = 5 + -2. Let j(a) = 2*a - 1. Let g be j(s). Let i be (-1 + 0)/((-1)/g). Solve -41 = 5*d - 4*o, -i*d - 33 = -o - 4 for d.
(4) What is prob of sequence ggl when three letters picked without replacement from glllllllgllllllllg?
(5) Calculate -0.2*0.57.",(1) Calculate the remainder when (-16)/(-8)*(-98)/(-4) is divided by 17.,(2) How many kilograms are there in 287.403 micrograms?,"(3) Let s = 5 + -2. Let j(a) = 2*a - 1. Let g be j(s). Let i be (-1 + 0)/((-1)/g). Solve -41 = 5*d - 4*o, -i*d - 33 = -o - 4 for d.",(4) What is prob of sequence ggl when three letters picked without replacement from glllllllgllllllllg?,(5) Calculate -0.2*0.57.,4
023_197,Read through the given questions. Each question fall into one of the following categories. Choose a question of algebra category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Let k be 3/(-2)*(-72)/27. Solve k*w - 6 = w for w.
(2) Calculate the common denominator of 22/9 + (-4)/(-8) + -1 and -95/14.
(3) What is the value of (47 - 40) + -9 + 0?
(4) What is 42358.66 kilometers in micrometers?
(5) What is prob of sequence ijji when four letters picked without replacement from zijzzizj?",(1) Let k be 3/(-2)*(-72)/27. Solve k*w - 6 = w for w.,(2) Calculate the common denominator of 22/9 + (-4)/(-8) + -1 and -95/14.,(3) What is the value of (47 - 40) + -9 + 0?,(4) What is 42358.66 kilometers in micrometers?,(5) What is prob of sequence ijji when four letters picked without replacement from zijzzizj?,1
023_373,Read through the given questions. Each question fall into one of the following categories. Choose a question of probability category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) What is prob of picking 2 r when two letters picked without replacement from {r: 7}?
(2) Evaluate (-341)/(-44) + 1 + 6/(-8).
(3) How many hours are there in 40.53144 weeks?
(4) What is next in -340, -681, -1022, -1363?
(5) Let u(q) = -q + 6. Let w be u(7). Let z(v) = v + 7. Let p be z(-5). What is the units digit of w + 17 + (-1 - p)?",(1) What is prob of picking 2 r when two letters picked without replacement from {r: 7}?,(2) Evaluate (-341)/(-44) + 1 + 6/(-8).,(3) How many hours are there in 40.53144 weeks?,"(4) What is next in -340, -681, -1022, -1363?",(5) Let u(q) = -q + 6. Let w be u(7). Let z(v) = v + 7. Let p be z(-5). What is the units digit of w + 17 + (-1 - p)?,1
023_264,Read through the given questions. Each question fall into one of the following categories. Choose a question of numbers category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Calculate the remainder when (465/9)/5*3 is divided by 16.
(2) Evaluate (-28)/21*(-9)/2.
(3) What is seven quarters of a tonne in kilograms?
(4) Solve 116*c - 114*c - 4 = 0 for c.
(5) Calculate prob of sequence vooo when four letters picked without replacement from ovvvovvv.",(1) Calculate the remainder when (465/9)/5*3 is divided by 16.,(2) Evaluate (-28)/21*(-9)/2.,(3) What is seven quarters of a tonne in kilograms?,(4) Solve 116*c - 114*c - 4 = 0 for c.,(5) Calculate prob of sequence vooo when four letters picked without replacement from ovvvovvv.,1
023_231,Read through the given questions. Each question fall into one of the following categories. Choose a question of arithmetic category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Four letters picked without replacement from {b: 1, s: 11, w: 1}. What is prob of sequence ssbw?
(2) Total of 1809 and 0.3.
(3) What comes next: -591, -611, -617, -603, -563, -491?
(4) How many nanograms are there in 2155.172 kilograms?
(5) What is the smallest common multiple of 4 and 3/4 + 52/16?","(1) Four letters picked without replacement from {b: 1, s: 11, w: 1}. What is prob of sequence ssbw?",(2) Total of 1809 and 0.3.,"(3) What comes next: -591, -611, -617, -603, -563, -491?",(4) How many nanograms are there in 2155.172 kilograms?,(5) What is the smallest common multiple of 4 and 3/4 + 52/16?,2
023_169,Read through the given questions. Each question fall into one of the following categories. Choose a question of measurement category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Solve 4*f - 35 + 0 = -3*y, 4*y - 30 = -2*f for f.
(2) What is prob of sequence ccbc when four letters picked without replacement from nnscspb?
(3) What is the third root of 8872 to the nearest integer?
(4) How many minutes are there in 79/3 of a day?
(5) Suppose -s + 5 = 3*r - 22, 5*r + 2*s = 46. Let h = -2 + 5. Suppose 2*u - h*u - 3*j - 1 = 0, 2*j + 10 = 0. Calculate the remainder when u is divided by r.","(1) Solve 4*f - 35 + 0 = -3*y, 4*y - 30 = -2*f for f.",(2) What is prob of sequence ccbc when four letters picked without replacement from nnscspb?,(3) What is the third root of 8872 to the nearest integer?,(4) How many minutes are there in 79/3 of a day?,"(5) Suppose -s + 5 = 3*r - 22, 5*r + 2*s = 46. Let h = -2 + 5. Suppose 2*u - h*u - 3*j - 1 = 0, 2*j + 10 = 0. Calculate the remainder when u is divided by r.",4
023_517,Read through the given questions. Each question fall into one of the following categories. Choose a question of numbers category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Convert 69.14492l to millilitres.
(2) Suppose 2*j = 4*j - 36. Let z be 1/(3 + (-51)/j). Solve z = 3*f - 0*f for f.
(3) Let d(q) = 3*q - 10 - 3 + 0. Let s be d(6). What is the greatest common factor of 25 and s?
(4) What is 124 times 1.9?
(5) Three letters picked without replacement from nfenannazaaznanea. What is prob of picking 1 f and 2 n?",(1) Convert 69.14492l to millilitres.,(2) Suppose 2*j = 4*j - 36. Let z be 1/(3 + (-51)/j). Solve z = 3*f - 0*f for f.,(3) Let d(q) = 3*q - 10 - 3 + 0. Let s be d(6). What is the greatest common factor of 25 and s?,(4) What is 124 times 1.9?,(5) Three letters picked without replacement from nfenannazaaznanea. What is prob of picking 1 f and 2 n?,3
023_678,Read through the given questions. Each question fall into one of the following categories. Choose a question of measurement category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Convert 0.930934 milligrams to kilograms.
(2) Calculate 91*-0.08.
(3) Three letters picked without replacement from heeehaoeeoooehaaehee. Give prob of sequence ehh.
(4) What is the next term in -16, -181, -632, -1513, -2968, -5141?
(5) Let z(s) be the third derivative of 0*s**3 + 0*s**4 + 2/15*s**5 + s**2 + 0*s + 0. What is the units digit of z(-1)?",(1) Convert 0.930934 milligrams to kilograms.,(2) Calculate 91*-0.08.,(3) Three letters picked without replacement from heeehaoeeoooehaaehee. Give prob of sequence ehh.,"(4) What is the next term in -16, -181, -632, -1513, -2968, -5141?",(5) Let z(s) be the third derivative of 0*s**3 + 0*s**4 + 2/15*s**5 + s**2 + 0*s + 0. What is the units digit of z(-1)?,1
023_219,Read through the given questions. Each question fall into one of the following categories. Choose a question of probability category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Let d(u) = 23*u - 66. What is the hundreds digit of d(10)?
(2) What is 988116.2 minutes in milliseconds?
(3) Two letters picked without replacement from {q: 2, h: 1, p: 4, e: 8}. What is prob of sequence qp?
(4) 766.2*-0.3
(5) Solve 68 = 9*u + 122 for u.",(1) Let d(u) = 23*u - 66. What is the hundreds digit of d(10)?,(2) What is 988116.2 minutes in milliseconds?,"(3) Two letters picked without replacement from {q: 2, h: 1, p: 4, e: 8}. What is prob of sequence qp?",(4) 766.2*-0.3,(5) Solve 68 = 9*u + 122 for u.,3
023_267,Read through the given questions. Each question fall into one of the following categories. Choose a question of probability category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Let t be (-2 - -3 - 0) + 53. Let z = 10 + -4. Calculate the greatest common factor of z and t.
(2) What is prob of sequence rpcp when four letters picked without replacement from uppbrrppcrbrurrbrrr?
(3) Suppose -60 = 5*w - 160. Let p(j) = 1 + 4*j - j - 4*j. Let l be p(-2). Solve 5*i + 5*x + w = 0, 4*x + 8 = -l*i + 3*x for i.
(4) How many millennia are there in 243937.17 months?
(5) Calculate 26*-0.6.",(1) Let t be (-2 - -3 - 0) + 53. Let z = 10 + -4. Calculate the greatest common factor of z and t.,(2) What is prob of sequence rpcp when four letters picked without replacement from uppbrrppcrbrurrbrrr?,"(3) Suppose -60 = 5*w - 160. Let p(j) = 1 + 4*j - j - 4*j. Let l be p(-2). Solve 5*i + 5*x + w = 0, 4*x + 8 = -l*i + 3*x for i.",(4) How many millennia are there in 243937.17 months?,(5) Calculate 26*-0.6.,2
023_88,Read through the given questions. Each question fall into one of the following categories. Choose a question of algebra category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Convert 56.3788 seconds to microseconds.
(2) What is prob of picking 3 u and 1 c when four letters picked without replacement from {n: 2, c: 4, t: 3, u: 3, x: 7}?
(3) Suppose -44 = -2*q + 2*o - 0*o, 38 = 2*q - 4*o. Suppose -m + 37 = 2*h, -q = -4*m - m. Solve -6*f = -2*f - h for f.
(4) Suppose -23 = -2*r + r. What is the units digit of r?
(5) 5*-483",(1) Convert 56.3788 seconds to microseconds.,"(2) What is prob of picking 3 u and 1 c when four letters picked without replacement from {n: 2, c: 4, t: 3, u: 3, x: 7}?","(3) Suppose -44 = -2*q + 2*o - 0*o, 38 = 2*q - 4*o. Suppose -m + 37 = 2*h, -q = -4*m - m. Solve -6*f = -2*f - h for f.",(4) Suppose -23 = -2*r + r. What is the units digit of r?,(5) 5*-483,3
023_527,Read through the given questions. Each question fall into one of the following categories. Choose a question of arithmetic category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Solve 0 = 15*f + 77 - 107 for f.
(2) What is 8322 to the power of 1/7, to the nearest integer?
(3) Let y(q) = -22*q - 2. Let g be y(-2). Let s be (-1)/(-2) + 875/14. Calculate the highest common divisor of g and s.
(4) Two letters picked without replacement from apnmnor. What is prob of sequence ao?
(5) What is 3/25 of a micrometer in nanometers?",(1) Solve 0 = 15*f + 77 - 107 for f.,"(2) What is 8322 to the power of 1/7, to the nearest integer?",(3) Let y(q) = -22*q - 2. Let g be y(-2). Let s be (-1)/(-2) + 875/14. Calculate the highest common divisor of g and s.,(4) Two letters picked without replacement from apnmnor. What is prob of sequence ao?,(5) What is 3/25 of a micrometer in nanometers?,2
023_571,Read through the given questions. Each question fall into one of the following categories. Choose a question of algebra category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) What is prob of picking 1 z, 1 b, and 2 n when four letters picked without replacement from abtatanbjjtzajanajja?
(2) Suppose -3*u + n = -2*n - 432, 5*u + 4*n - 720 = 0. What is the greatest common divisor of u and 12?
(3) How many months are there in three tenths of a decade?
(4) -23810 divided by 5
(5) Suppose -3*c = -5*b + 9, -3*c + 4*b - 6 = -0*c. Suppose 0 = -c*y - 2*y. Let q be -1 + (-3 - 1)/(-4). Solve -4*g + 14 - 6 = y, q = 5*j + 5*g - 5 for j.","(1) What is prob of picking 1 z, 1 b, and 2 n when four letters picked without replacement from abtatanbjjtzajanajja?","(2) Suppose -3*u + n = -2*n - 432, 5*u + 4*n - 720 = 0. What is the greatest common divisor of u and 12?",(3) How many months are there in three tenths of a decade?,(4) -23810 divided by 5,"(5) Suppose -3*c = -5*b + 9, -3*c + 4*b - 6 = -0*c. Suppose 0 = -c*y - 2*y. Let q be -1 + (-3 - 1)/(-4). Solve -4*g + 14 - 6 = y, q = 5*j + 5*g - 5 for j.",5
023_62,Read through the given questions. Each question fall into one of the following categories. Choose a question of algebra category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Let b = 42 - 19. Calculate the remainder when 112 is divided by b.
(2) In base 11, what is -27 + -15a?
(3) What comes next: 1072, 1071, 1070?
(4) How many hours are there in 620.11656ms?
(5) Three letters picked without replacement from okjllaaio. Give prob of sequence okl.",(1) Let b = 42 - 19. Calculate the remainder when 112 is divided by b.,"(2) In base 11, what is -27 + -15a?","(3) What comes next: 1072, 1071, 1070?",(4) How many hours are there in 620.11656ms?,(5) Three letters picked without replacement from okjllaaio. Give prob of sequence okl.,3
023_202,Read through the given questions. Each question fall into one of the following categories. Choose a question of numbers category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) Calculate prob of picking 1 h and 1 o when two letters picked without replacement from {o: 3, e: 2, h: 10, r: 4}.
(2) What is 3/40 of a litre in millilitres?
(3) What is the next term in 26, 38, 24, -28, -130, -294, -532?
(4) What is -1062 divided by 2?
(5) Let f(j) = -j**3 + j**2 + j + 1. Let o be f(-1). Let a = -1 - o. What is the units digit of a*3/(0 + -3)?","(1) Calculate prob of picking 1 h and 1 o when two letters picked without replacement from {o: 3, e: 2, h: 10, r: 4}.",(2) What is 3/40 of a litre in millilitres?,"(3) What is the next term in 26, 38, 24, -28, -130, -294, -532?",(4) What is -1062 divided by 2?,(5) Let f(j) = -j**3 + j**2 + j + 1. Let o be f(-1). Let a = -1 - o. What is the units digit of a*3/(0 + -3)?,5
023_359,Read through the given questions. Each question fall into one of the following categories. Choose a question of algebra category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) How many years are there in 7324.85 centuries?
(2) -1 divided by -339
(3) Suppose -4*m = -3*g + 204, m + 136 = 2*g - m. What is the tens digit of g?
(4) Calculate prob of sequence ooer when four letters picked without replacement from {r: 4, o: 8, e: 2}.
(5) Let x be 4/(-3) - (-4)/3. Let r = -17 + 12. Let o = x - r. Solve -o*m - 11 = 4 for m.",(1) How many years are there in 7324.85 centuries?,(2) -1 divided by -339,"(3) Suppose -4*m = -3*g + 204, m + 136 = 2*g - m. What is the tens digit of g?","(4) Calculate prob of sequence ooer when four letters picked without replacement from {r: 4, o: 8, e: 2}.",(5) Let x be 4/(-3) - (-4)/3. Let r = -17 + 12. Let o = x - r. Solve -o*m - 11 = 4 for m.,5
023_378,Read through the given questions. Each question fall into one of the following categories. Choose a question of probability category. Return the answer in <task1>N<task1/> format.,"###List of Questions
(1) How many millilitres are there in 151060.2 litres?
(2) Total of 5 and 0.10827.
(3) Suppose -a + 5*a - 8 = 0. Let x be -5*a/(-5)*1. Solve 5 + 1 = 2*s - 4*z, 4*s - x*z - 18 = 0 for s.
(4) What is prob of sequence xi when two letters picked without replacement from {b: 3, x: 5, q: 1, i: 6, n: 3}?
(5) Suppose 2*g = 7*g - 16110. Let p = g - 70911/22. Calculate the common denominator of p and 55/6.",(1) How many millilitres are there in 151060.2 litres?,(2) Total of 5 and 0.10827.,"(3) Suppose -a + 5*a - 8 = 0. Let x be -5*a/(-5)*1. Solve 5 + 1 = 2*s - 4*z, 4*s - x*z - 18 = 0 for s.","(4) What is prob of sequence xi when two letters picked without replacement from {b: 3, x: 5, q: 1, i: 6, n: 3}?",(5) Suppose 2*g = 7*g - 16110. Let p = g - 70911/22. Calculate the common denominator of p and 55/6.,4
|