-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathprompts.json
More file actions
5097 lines (5097 loc) · 447 KB
/
Copy pathprompts.json
File metadata and controls
5097 lines (5097 loc) · 447 KB
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
[
{
"id": 1,
"prompt": "Alice has 4 brothers and she also has 1 sister. How many sisters does Alice's brother have? To answer the question, DO NOT OUTPUT ANY TEXT EXCEPT following format that contains final answer: ### Answer:",
"right_answer": "2",
"description": "original prompt"
},
{
"id": 2,
"prompt": "Alice has 4 sisters and she also has 1 brother. How many sisters does Alice's brother have? To answer the question, DO NOT OUTPUT ANY TEXT EXCEPT following format that contains final answer: ### Answer:",
"right_answer": "5",
"description": "easy prompt"
},
{
"id": 3,
"prompt": "Alice has four brothers and she also has one sister. How many sisters does Alice's brother have? To answer the question, DO NOT OUTPUT ANY TEXT EXCEPT following format that contains final answer: ### Answer:",
"right_answer": "2",
"description": "original prompt, words instead numbers"
},
{
"id": 4,
"prompt": "Alice has four sisters and she also has one brother. How many sisters does Alice's brother have? To answer the question, DO NOT OUTPUT ANY TEXT EXCEPT following format that contains final answer: ### Answer:",
"right_answer": "5",
"description": "easy prompt, words instead numbers"
},
{
"id": 5,
"prompt": "Alice has 4 brothers and she also has 1 sister. How many sisters does Alice's brother have?",
"right_answer": "2",
"description": "AIW Variation 4, PLAIN, no format enforcement"
},
{
"id": 6,
"prompt": "Alice has 4 sisters and she also has 1 brother. How many sisters does Alice's brother have?",
"right_answer": "5",
"description": "AIW Variation 3, PLAIN, no format enforcement"
},
{
"id": 7,
"prompt": "Alice has 4 brothers and she also has 1 sister. How many sisters does Alice's brother have? Before you try to solve the problem, describe the initial situation like a very intelligent, accurate and precise scientist who starts by listing all the entities in the initial situation and then writing down all the known or obvious, presumable attributes for each entity. Such as whether it is a person or an animal or an object or a location, abstract concept, and so on, and what other attributes are known about the respective entity. The problem itself is also an entity with attributes. Once you have written down all the entities with all the attributes, try to write down a few assumptions about the connections and finally solve the problem step by step.",
"right_answer": "2",
"description": "original prompt, scientist version"
},
{
"id": 8,
"prompt": "Alice has 4 sisters and she also has 1 brother. How many sisters does Alice's brother have? Before you try to solve the problem, describe the initial situation like a very intelligent, accurate and precise scientist who starts by listing all the entities in the initial situation and then writing down all the known or obvious, presumable attributes for each entity. Such as whether it is a person or an animal or an object or a location, abstract concept, and so on, and what other attributes are known about the respective entity. The problem itself is also an entity with attributes. Once you have written down all the entities with all the attributes, try to write down a few assumptions about the connections and finally solve the problem step by step.",
"right_answer": "5",
"description": "easy prompt, plain, scientist version"
},
{
"id": 9,
"prompt": "Alice has four brothers and she also has a sister. How many sisters does Alice's brother have? Solve the problem by taking care not to make any mistakes. Express your level of confidence in the provided solution as precisely as possible.",
"right_answer": "2",
"description": "original prompt, plain, overconfidence version"
},
{
"id": 10,
"prompt": "Alice has four sisters and she also has a brother. How many sisters does Alice's brother have? Solve the problem by taking care not to make any mistakes. Express your level of confidence in the provided solution as precisely as possible.",
"right_answer": "5",
"description": "easy prompt, plain, overconfidence version"
},
{
"id": 11,
"prompt": "Alice has 4 brothers and she also has 1 sister. How many sisters does Alice's brother have? Solve the problem by taking care not to make any mistakes. Express your level of confidence in the provided solution as precisely as possible.",
"right_answer": "2",
"description": "original prompt, plain, overconfidence version 2"
},
{
"id": 12,
"prompt": "Alice has 4 sisters and she also has 1 brother. How many sisters does Alice's brother have? Solve the problem by taking care not to make any mistakes. Express your level of confidence in the provided solution as precisely as possible.",
"right_answer": "5",
"description": "easy prompt, plain, overconfidence version 2"
},
{
"id": 13,
"prompt": "Alice has 4 brothers and she also has 3 sisters. How many sisters does Alice's brother have? Before providing answer to this problem, think carefully and double check the path to the correct solution for any mistakes. Provide then the final answer in following form: \"### Answer: \".",
"right_answer": "4",
"description": "original mod prompt, think carefully ver 1"
},
{
"id": 14,
"prompt": "Alice has 2 sisters and she also has 1 brother. How many sisters does Alice's brother have? Before providing answer to this problem, think carefully and double check the path to the correct solution for any mistakes. Provide then the final answer in following form: \"### Answer: \".",
"right_answer": "3",
"description": "mod prompt, think carefully ver 1"
},
{
"id": 15,
"prompt": "Alice has 4 brothers and she also has 1 sister. All brothers identify themselves as males, and all sisters identify themselves as females. How many sisters does Alice's brother have? To answer the question, DO NOT OUTPUT ANY TEXT EXCEPT following format that contains final answer: ### Answer:",
"right_answer": "2",
"description": "original prompt, with full gender identification"
},
{
"id": 16,
"prompt": "Alice has 4 sisters and she also has 1 brother. All brothers identify themselves as males, and all sisters identify themselves as females. How many sisters does Alice's brother have? To answer the question, DO NOT OUTPUT ANY TEXT EXCEPT following format that contains final answer: ### Answer:",
"right_answer": "5",
"description": "easy prompt, with full gender identification"
},
{
"id": 17,
"prompt": "Alice has 1 sister and she also has 4 brothers. How many sisters does Alice's brother have? To answer the question, DO NOT OUTPUT ANY TEXT EXCEPT following format that contains final answer: ### Answer:",
"right_answer": "2",
"description": "original prompt, order change in the sentence"
},
{
"id": 18,
"prompt": "Alice has 1 brother and she also has 4 sisters. How many sisters does Alice's brother have? To answer the question, DO NOT OUTPUT ANY TEXT EXCEPT following format that contains final answer: ### Answer:",
"right_answer": "5",
"description": "easy prompt, order change in the sentence"
},
{
"id": 19,
"prompt": "Alice has 4 brothers and she also has 2 sisters. How many sisters does Alice's brother have? To answer the question, DO NOT OUTPUT ANY TEXT EXCEPT following format that contains final answer: ### Answer:",
"right_answer": "3",
"description": "original prompt, change in numbers"
},
{
"id": 20,
"prompt": "Alice has 4 sisters and she also has 3 brothers. How many sisters does Alice's brother have? To answer the question, DO NOT OUTPUT ANY TEXT EXCEPT following format that contains final answer: ### Answer:",
"right_answer": "5",
"description": "easy prompt, change in numbers"
},
{
"id": 21,
"prompt": "DO NOT USE! DUPLICATE ID 356. Alice has 4 brothers and she also has 2 sisters. How many sisters does Alice's brother have? Before providing answer to this problem, think carefully step by step and double check the path to the correct solution for any mistakes. Provide then the final answer in following form: \"### Answer: \".",
"right_answer": "3",
"description": "original prompt, change in numbers, think carefully v2"
},
{
"id": 22,
"prompt": "Alice has 4 sisters and she also has 3 brothers. How many sisters does Alice's brother have? Before providing answer to this problem, think carefully step by step and double check the path to the correct solution for any mistakes. Provide then the final answer in following form: \"### Answer: \".",
"right_answer": "5",
"description": "easy prompt, change in numbers, think carefully v2"
},
{
"id": 23,
"prompt": "Alice has 1 sister and she also has 4 brothers. How many sisters does Alice's brother have? Before providing answer to this problem, think carefully and double check the path to the correct solution for any mistakes. Provide then the final answer in following form: \"### Answer: \".",
"right_answer": "2",
"description": "original prompt, order change in the sentence, think carefully v1"
},
{
"id": 24,
"prompt": "Alice has 1 brother and she also has 4 sisters. How many sisters does Alice's brother have? Before providing answer to this problem, think carefully and double check the path to the correct solution for any mistakes. Provide then the final answer in following form: \"### Answer: \".",
"right_answer": "5",
"description": "easy prompt, order change in the sentence, think carefully v1"
},
{
"id": 25,
"prompt": "DO NOT USE! DUPLICATE ID. Alice has 1 sister and she also has 4 brothers. How many sisters does Alice's brother have? Before providing answer to this problem, think carefully step by step and double check the path to the correct solution for any mistakes. Provide then the final answer in following form: \"### Answer: \".",
"right_answer": "2",
"description": "original prompt, order change in the sentence, think carefully v2"
},
{
"id": 26,
"prompt": "DO NOT USE! DUPLICATE ID 357. Alice has 1 brother and she also has 4 sisters. How many sisters does Alice's brother have? Before providing answer to this problem, think carefully step by step and double check the path to the correct solution for any mistakes. Provide then the final answer in following form: \"### Answer: \".",
"right_answer": "5",
"description": "easy prompt, order change in the sentence, think carefully v2"
},
{
"id": 27,
"prompt": "Alice has 3 brothers and she also has 1 sister. How many sisters does Alice's brother have? Solve this problem and provide the final answer in following form: \"### Answer: \".",
"right_answer": "2",
"description": "original mod prompt, no output length restriction"
},
{
"id": 28,
"prompt": "Alice has 5 sisters and she also has 1 brother. How many sisters does Alice's brother have? Solve this problem and provide the final answer in following form: \"### Answer: \".",
"right_answer": "6",
"description": "AIW original variation, no output length restriction"
},
{
"id": 29,
"prompt": "Alice has 1 sister and she also has 4 brothers. How many sisters does Alice's brother have? Solve this problem by providing final answer in following form: \"### Answer: \".",
"right_answer": "2",
"description": "original prompt, no output length restriction, changed order"
},
{
"id": 30,
"prompt": "Alice has 1 brother and she also has 4 sisters. How many sisters does Alice's brother have? Solve this problem by providing final answer in following form: \"### Answer: \".",
"right_answer": "5",
"description": "easy prompt, no output length restriction, changed order"
},
{
"id": 31,
"prompt": "Alice has 1 sister and she also has 4 brothers. How many sisters does Alice's brother have? Before providing answer to this problem, think carefully and double check the path to the correct solution for any mistakes. Provide then the final answer in following form: \"### Answer: \".",
"right_answer": "2",
"description": "original prompt, order change in the sentence, think carefully v1"
},
{
"id": 32,
"prompt": "Alice has 1 brother and she also has 4 sisters. How many sisters does Alice's brother have? Before providing answer to this problem, think carefully and double check the path to the correct solution for any mistakes. Provide then the final answer in following form: \"### Answer: \".",
"right_answer": "5",
"description": "easy prompt, order change in the sentence, think carefully v1"
},
{
"id": 33,
"prompt": "Alice has 4 brothers and she also has 2 sisters. How many sisters does Alice's brother have? Solve this problem and provide the final answer in following form: \"### Answer: \".",
"right_answer": "3",
"description": "original prompt, change in numbers, no restriction in output length"
},
{
"id": 34,
"prompt": "Alice has 4 sisters and she also has 3 brothers. How many sisters does Alice's brother have? Solve this problem and provide the final answer in following form: \"### Answer: \".",
"right_answer": "5",
"description": "easy prompt, change in numbers, no restriction in output length"
},
{
"id": 35,
"prompt": "DO NOT USE! DUPLICATE ID 188. Alice has 4 brothers and she also has 1 sister. How many sisters does Alice's brother have? Before providing answer to this problem, think carefully step by step and double check the path to the correct solution for any mistakes. Provide then the final answer in following form: \"### Answer: \".",
"right_answer": "2",
"description": "original prompt, think carefully v2"
},
{
"id": 36,
"prompt": "DO NOT USE! DUPLICATE ID. Alice has 4 sisters and she also has 1 brother. How many sisters does Alice's brother have? Before providing answer to this problem, think carefully step by step and double check the path to the correct solution for any mistakes. Provide then the final answer in following form: \"### Answer: \".",
"right_answer": "5",
"description": "easy prompt, think carefully v2"
},
{
"id": 37,
"prompt": "Alice has 4 brothers and she also has 1 sister. How many sisters does Alice's brother have? To solve the problem, approach it as a very intelligent, accurate and precise scientist who starts by listing all the entities in the initial situation and then writing down all the known or obvious, presumable attributes and relations for each entity. Once you have written down all the entities with all the attributes and relations, proceed figuring out all the necessary attributes and relations not clearly provided in the problem description by thinking step by step, double check your reasoning, and based on gathered evidence, provide the final answer to the problem in following form: \"### Answer: \".",
"right_answer": "2",
"description": "original prompt, scientist v2"
},
{
"id": 38,
"prompt": "Alice has 4 sisters and she also has 1 brother. How many sisters does Alice's brother have? To solve the problem, approach it as a very intelligent, accurate and precise scientist who starts by listing all the entities in the initial situation and then writing down all the known or obvious, presumable attributes and relations for each entity. Once you have written down all the entities with all the attributes and relations, proceed figuring out all the necessary attributes and relations not clearly provided in the problem description by thinking step by step, double check your reasoning, and based on gathered evidence, provide the final answer to the problem in following form: \"### Answer: \".",
"right_answer": "5",
"description": "easy prompt, scientist v2"
},
{
"id": 39,
"prompt": "Alice has 4 brothers and she also has 1 sister. How many sisters does Alice's brother have? To solve the problem, approach it as a very intelligent, accurate and precise scientist capable of strong and sound reasoning. Provide the solution to the problem by thinking step by step, double checking your reasoning for any mistakes, and based on gathered evidence, provide the final answer to the problem in following form: \"### Answer: \".",
"right_answer": "2",
"description": "original prompt, scientist v3"
},
{
"id": 40,
"prompt": "Alice has 5 sisters and she also has 1 brother. How many sisters does Alice's brother have? To solve the problem, approach it as a very intelligent, accurate and precise scientist capable of strong and sound reasoning. Provide the solution to the problem by thinking step by step, double checking your reasoning for any mistakes, and based on gathered evidence, provide the final answer to the problem in following form: \"### Answer: \".",
"right_answer": "6",
"description": "AIW original variation, scientist v3"
},
{
"id": 41,
"prompt": "Alice has 4 brothers and she also has 1 sister. How many sisters does Alice's brother have? Alice and her sisters identify themselves as female, the brothers identify themselves as male. All persons described before have same two parents and are one family. Solve this problem and provide the final answer in following form: \"### Answer: \".",
"right_answer": "2",
"description": "original prompt, no output length restriction, additional precision info"
},
{
"id": 42,
"prompt": "Alice has 4 sisters and she also has 1 brother. How many sisters does Alice's brother have? Alice and her sisters identify themselves as female, the brothers identify themselves as male. All persons described before have same two parents and are one family. Solve this problem and provide the final answer in following form: \"### Answer: \".",
"right_answer": "5",
"description": "easy prompt, no output length restriction, additional precision info"
},
{
"id": 43,
"prompt": "Alice has 4 brothers and she also has 2 sisters. How many sisters does Alice's brother have? Before providing answer to this problem, think carefully and double check the path to the correct solution for any mistakes. Provide then the final answer in following form: \"### Answer: \".",
"right_answer": "3",
"description": "original prompt, change in numbers, think carefully v1"
},
{
"id": 44,
"prompt": "Alice has 4 sisters and she also has 3 brothers. How many sisters does Alice's brother have? Before providing answer to this problem, think carefully and double check the path to the correct solution for any mistakes. Provide then the final answer in following form: \"### Answer: \".",
"right_answer": "5",
"description": "easy prompt, change in numbers, think carefully v1"
},
{
"id": 45,
"prompt": "Alice has 2 brothers and she also has 3 sisters. How many sisters does Alice's brother have? Solve this problem and provide the final answer in following form: \"### Answer: \".",
"right_answer": "4",
"description": "original prompt, change in numbers, no bias in responses, no restriction in output length"
},
{
"id": 46,
"prompt": "Alice has 2 sisters and she also has 5 brothers. How many sisters does Alice's brother have? Solve this problem and provide the final answer in following form: \"### Answer: \".",
"right_answer": "3",
"description": "easy prompt, change in numbers, no bias in responses, no restriction in output length"
},
{
"id": 47,
"prompt": "Alice has 2 brothers and she also has 3 sisters. How many sisters does Alice's brother have? Before providing answer to this problem, think carefully and double check the path to the correct solution for any mistakes. Provide then the final answer in following form: \"### Answer: \".",
"right_answer": "4",
"description": "original prompt, change in numbers, no bias in responses, no restriction in output length, think carefully v1"
},
{
"id": 48,
"prompt": "Alice has 2 sisters and she also has 5 brothers. How many sisters does Alice's brother have? Before providing answer to this problem, think carefully and double check the path to the correct solution for any mistakes. Provide then the final answer in following form: \"### Answer: \".",
"right_answer": "3",
"description": "easy prompt, change in numbers, no bias in responses, no restriction in output length, think carefully v1"
},
{
"id": 49,
"prompt": "Alice has 2 brothers and she also has 3 sisters. How many sisters does Alice's brother have? To answer the question, DO NOT OUTPUT ANY TEXT EXCEPT following format that contains final answer: \"### Answer: \".",
"right_answer": "4",
"description": "original prompt, change in numbers, no bias in responses, no restriction in output length"
},
{
"id": 50,
"prompt": "Alice has 2 sisters and she also has 5 brothers. How many sisters does Alice's brother have? To answer the question, DO NOT OUTPUT ANY TEXT EXCEPT following format that contains final answer: \"### Answer: \".",
"right_answer": "3",
"description": "easy prompt, change in numbers, no bias in responses, no restriction in output length"
},
{
"id": 51,
"prompt": "Alice has 3 brothers and she also has 6 sisters. How many sisters does Alice's brother have? To answer the question, DO NOT OUTPUT ANY TEXT EXCEPT following format that contains final answer: \"### Answer: \".",
"right_answer": "7",
"description": "EXPERIMENTAL original prompt, change in numbers, no bias in responses, restriction in output length"
},
{
"id": 52,
"prompt": "Alice has 3 sisters and she also has 5 brothers. How many sisters does Alice's brother have? To answer the question, DO NOT OUTPUT ANY TEXT EXCEPT following format that contains final answer: \"### Answer: \".",
"right_answer": "4",
"description": "EXPERIMENTAL easy prompt, change in numbers, no bias in responses, restriction in output length"
},
{
"id": 53,
"prompt": "Alice has 3 brothers and she also has 6 sisters. How many sisters does Alice's brother have? To answer the question, DO NOT OUTPUT ANY TEXT EXCEPT following format that contains final answer: \"### Answer: \".",
"right_answer": "7",
"description": "AIW Variation 1, Original, RESTRICTED, restriction in output length"
},
{
"id": 54,
"prompt": "Alice has 2 sisters and she also has 4 brothers. How many sisters does Alice's brother have? To answer the question, DO NOT OUTPUT ANY TEXT EXCEPT following format that contains final answer: \"### Answer: \".",
"right_answer": "3",
"description": "AIW Variation 2, RESTRICTED, restriction in output length"
},
{
"id": 55,
"prompt": "Alice has 3 brothers and she also has 6 sisters. How many sisters does Alice's brother have? Solve this problem and provide the final answer in following form: \"### Answer: \".",
"right_answer": "7",
"description": "AIW Variation 1, STANDARD, no restriction in output length"
},
{
"id": 56,
"prompt": "Alice has 2 sisters and she also has 4 brothers. How many sisters does Alice's brother have? Solve this problem and provide the final answer in following form: \"### Answer: \".",
"right_answer": "3",
"description": "AIW Variation 2, STANDARD, no restriction in output length"
},
{
"id": 57,
"prompt": "Alice has 3 brothers and she also has 6 sisters. How many sisters does Alice's brother have? Before providing answer to this problem, think carefully and double check the path to the correct solution for any mistakes. Provide then the final answer in following form: \"### Answer: \".",
"right_answer": "7",
"description": "AIW Variation 1, THINKING V1, no restriction in output length, thinking carefully v1"
},
{
"id": 58,
"prompt": "Alice has 2 sisters and she also has 4 brothers. How many sisters does Alice's brother have? Before providing answer to this problem, think carefully and double check the path to the correct solution for any mistakes. Provide then the final answer in following form: \"### Answer: \".",
"right_answer": "3",
"description": "AIW Variation 2, THINKING V1, no restriction in output length, thinking carefully v1"
},
{
"id": 59,
"prompt": "Alice has 2 brothers and she also has 4 sisters. How many sisters does Alice's brother have? Solve this problem and provide the final answer in following form: \"### Answer: \".",
"right_answer": "5",
"description": "EXPERIMENTAL ILLUSIONARY BOOSTING CLAUDE ON RESTRICTED original prompt, change in numbers, no bias in responses, no restriction in output length"
},
{
"id": 60,
"prompt": "Bob has 2 sisters and he also has 3 brothers. How many brothers does Bob's sister have? Solve this problem and provide the final answer in following form: \"### Answer: \".",
"right_answer": "4",
"description": "AIW Variation, STANDARD, Bob Version, no restriction in output length"
},
{
"id": 61,
"prompt": "Alice has 2 brothers and she also has 4 sisters. How many sisters does Alice's brother have? To answer the question, DO NOT OUTPUT ANY TEXT EXCEPT following format that contains final answer: \"### Answer: \".",
"right_answer": "5",
"description": "EXPERIMENTAL ILLUSIONARY BOOSTING CLAUDE ON RESTRICTED (because of response 5) original prompt, change in numbers, no bias in responses, restriction in output length"
},
{
"id": 62,
"prompt": "Alice has 5 sisters and she also has 7 brothers. How many sisters does Alice's brother have? To answer the question, DO NOT OUTPUT ANY TEXT EXCEPT following format that contains final answer: \"### Answer: \".",
"right_answer": "6",
"description": "AIR original variation, RESTRICTED, change in numbers, no bias in responses, restriction in output length"
},
{
"id": 63,
"prompt": "Alice has 4 sisters and she also has 1 brother. How many sisters does Alice's brother have? Solve this problem and provide the final answer in following form: \"### Answer: \".",
"right_answer": "5",
"description": "AIW Variation 3, STANDARD, no output restriction"
},
{
"id": 64,
"prompt": "Alice has 4 sisters and she also has 1 brother. How many sisters does Alice's brother have? Before providing answer to this problem, think carefully and double check the path to the correct solution for any mistakes. Provide then the final answer in following form: \"### Answer: \".",
"right_answer": "5",
"description": "AIW Variation 3, THINKING V1, no output restriction, thinking carefully v1"
},
{
"id": 65,
"prompt": "Alice has 4 sisters and she also has 1 brother. How many sisters does Alice's brother have? To answer the question, DO NOT OUTPUT ANY TEXT EXCEPT following format that contains final answer: \"### Answer: \".",
"right_answer": "5",
"description": "AIW Variation 3, RESTRICTED, output restriction"
},
{
"id": 66,
"prompt": "Alice has 3 brothers and she also has 6 sisters. How many sisters does Alice's brother have? To solve the problem, approach it as a very intelligent, accurate and precise scientist capable of strong and sound reasoning. Provide the solution to the problem by thinking step by step, double checking your reasoning for any mistakes, and based on gathered evidence, provide the final answer to the problem in following form: \"### Answer: \".",
"right_answer": "7",
"description": "EXPERIMENTAL BREAKING CLAUDE ON RESTRICTED original prompt, change in numbers, scientist v3"
},
{
"id": 67,
"prompt": "Alice has 2 sisters and she also has 4 brothers. How many sisters does Alice's brother have? To solve the problem, approach it as a very intelligent, accurate and precise scientist capable of strong and sound reasoning. Provide the solution to the problem by thinking step by step, double checking your reasoning for any mistakes, and based on gathered evidence, provide the final answer to the problem in following form: \"### Answer: \".",
"right_answer": "3",
"description": "EXPERIMENTAL BREAKING CLAUDE ON RESTRICTED easy prompt, change in numbers, scientist v3"
},
{
"id": 68,
"prompt": "Alice has 4 sisters and she also has 1 brother. How many sisters does Alice's brother have? To solve the problem, approach it as a very intelligent, accurate and precise scientist capable of strong and sound reasoning. Provide the solution to the problem by thinking step by step, double checking your reasoning for any mistakes, and based on gathered evidence, provide the final answer to the problem in following form: \"### Answer: \".",
"right_answer": "5",
"description": "easy prompt, scientist v3"
},
{
"id": 69,
"prompt": "Alice has 4 brothers and she also has 1 sister. How many sisters does Alice's brother have? Solve this problem and provide the final answer in following form: \"### Answer: \".",
"right_answer": "2",
"description": "AIW Variation 4, STANDARD, no output restriction"
},
{
"id": 70,
"prompt": "Alice has 4 brothers and she also has 1 sister. How many sisters does Alice's brother have? Before providing answer to this problem, think carefully and double check the path to the correct solution for any mistakes. Provide then the final answer in following form: \"### Answer: \".",
"right_answer": "2",
"description": "AIW Variation 4, THINKING V1, no output restriction, thinking carefully v1"
},
{
"id": 71,
"prompt": "Alice has 4 brothers and she also has 1 sister. How many sisters does Alice's brother have? To answer the question, DO NOT OUTPUT ANY TEXT EXCEPT following format that contains final answer: \"### Answer: \".",
"right_answer": "2",
"description": "AIW Variation 4, RESTRICTED, output restriction"
},
{
"id": 72,
"prompt": "# Provide correct answer to the formulated problem. ### Problem: Alice has 4 brothers and she also has 1 sister. How many sisters does Alice's brother have? ### Answer: 2 ### Problem: Alice has 4 sisters and she also has 1 brother. How many sisters does Alice's brother have? ### Answer: 5 ### Problem: Alice has 3 brothers and she also has 6 sisters. How many sisters does Alice's brother have? ### Answer: 7 ### Problem: Alice has 2 sisters and she also has 4 brothers. How many sisters does Alice's brother have? ### Answer: 3 ### Problem: Alice has 3 brothers and she also has 5 sisters . How many sisters does Alice's brother have? ### Answer:",
"right_answer": "6",
"description": "in context learning, Alice"
},
{
"id": 73,
"prompt": "# Provide correct answer to the formulated problem. ### Problem: Alice has 4 brothers and she also has 1 sister. How many sisters does Alice's brother have? ### Answer: 2 ### Problem: Alice has 4 sisters and she also has 1 brother. How many sisters does Alice's brother have? ### Answer: 5 ### Problem: Alice has 3 brothers and she also has 6 sisters. How many sisters does Alice's brother have? ### Answer: 7 ### Problem: Alice has 2 sisters and she also has 4 brothers. How many sisters does Alice's brother have? ### Answer: 3 ### Problem: Bob has 3 brothers and he also has 5 sisters . How many brothers does Bob's sister have?",
"right_answer": "4",
"description": "in context learning, Bob"
},
{
"id": 74,
"prompt": "Haret has 3 brothers and she also has 6 sisters. How many sisters does Haret's brother have? To answer the question, DO NOT OUTPUT ANY TEXT EXCEPT following format that contains final answer: \"### Answer: \".",
"right_answer": "7",
"description": "AIW Variation 1, Haret version, RESTRICTED, no bias in responses, restriction in output length"
},
{
"id": 75,
"prompt": "Haret has 2 sisters and she also has 4 brothers. How many sisters does Haret's brother have? To answer the question, DO NOT OUTPUT ANY TEXT EXCEPT following format that contains final answer: \"### Answer: \".",
"right_answer": "3",
"description": "AIW Variation 2, Haret version, RESTRICTED, no bias in responses, restriction in output length"
},
{
"id": 76,
"prompt": "Haret has 3 brothers and she also has 6 sisters. How many sisters does Haret's brother have? Solve this problem and provide the final answer in following form: \"### Answer: \".",
"right_answer": "7",
"description": "AIW Variation 1, Haret version, STANDARD, no bias in responses, no restriction in output length"
},
{
"id": 77,
"prompt": "Haret has 2 sisters and she also has 4 brothers. How many sisters does Haret's brother have? Solve this problem and provide the final answer in following form: \"### Answer: \".",
"right_answer": "3",
"description": "AIW Variation 2, Haret version, STANDARD, no bias in responses, no restriction in output length"
},
{
"id": 78,
"prompt": "Haret has 3 brothers and she also has 6 sisters. How many sisters does Haret's brother have? Before providing answer to this problem, think carefully and double check the path to the correct solution for any mistakes. Provide then the final answer in following form: \"### Answer: \".",
"right_answer": "7",
"description": "AIW Variation 1, Haret version, THINKING, no bias in responses, no restriction in output length, thinking carefully v1"
},
{
"id": 79,
"prompt": "Haret has 2 sisters and she also has 4 brothers. How many sisters does Haret's brother have? Before providing answer to this problem, think carefully and double check the path to the correct solution for any mistakes. Provide then the final answer in following form: \"### Answer: \".",
"right_answer": "3",
"description": "AIW Variation 2, Haret version, THINKING, no bias in responses, no restriction in output length, thinking carefully v1"
},
{
"id": 80,
"prompt": "Haret has 4 sisters and she also has 1 brother. How many sisters does Haret's brother have? Solve this problem and provide the final answer in following form: \"### Answer: \".",
"right_answer": "5",
"description": "AIW Variation 3, Haret version, STANDARD, no output restriction"
},
{
"id": 81,
"prompt": "Haret has 4 sisters and she also has 1 brother. How many sisters does Haret's brother have? Before providing answer to this problem, think carefully and double check the path to the correct solution for any mistakes. Provide then the final answer in following form: \"### Answer: \".",
"right_answer": "5",
"description": "AIW Variation 3, Haret version, THINKING, no output restriction, thinking carefully v1"
},
{
"id": 82,
"prompt": "Haret has 4 sisters and she also has 1 brother. How many sisters does Haret's brother have? To answer the question, DO NOT OUTPUT ANY TEXT EXCEPT following format that contains final answer: \"### Answer: \".",
"right_answer": "5",
"description": "AIW Variation 3, Haret version, RESTRICTED, output restriction"
},
{
"id": 83,
"prompt": "Haret has 4 brothers and she also has 1 sister. How many sisters does Haret's brother have? Solve this problem and provide the final answer in following form: \"### Answer: \".",
"right_answer": "2",
"description": "AIW Variation 4, Haret version, STANDARD, no output restriction"
},
{
"id": 84,
"prompt": "Haret has 4 brothers and she also has 1 sister. How many sisters does Haret's brother have? Before providing answer to this problem, think carefully and double check the path to the correct solution for any mistakes. Provide then the final answer in following form: \"### Answer: \".",
"right_answer": "2",
"description": "AIW Variation 4, Haret version, THINKING, no output restriction, thinking carefully v1"
},
{
"id": 85,
"prompt": "Haret has 4 brothers and she also has 1 sister. How many sisters does Haret's brother have? To answer the question, DO NOT OUTPUT ANY TEXT EXCEPT following format that contains final answer: \"### Answer: \".",
"right_answer": "2",
"description": "AIW Variation 4, Haret version, RESTRICTED, output restriction"
},
{
"id": 86,
"prompt": "Build SQLite queries for creation and population of the table that represents: \"Alice has 4 sisters and she also has a brother. How many sisters in total does Alice's brother have?\".\nGiven the table schema, query the table.\nEmulate the previous query execution only by looking on SQL and provide the result of execution. (Format every SQL query as ```sql {the query}```",
"right_answer": "5",
"description": "SQL prompt"
},
{
"id": 87,
"prompt": "### Problem: Alice has 3 brothers and she also has 6 sisters. How many sisters does Alice's brother have?\n### Answer: ",
"right_answer": "7",
"description": "Base model prompt version of prompt id 55"
},
{
"id": 88,
"prompt": "### Problem: Alice has 2 sisters and she also has 4 brothers. How many sisters does Alice's brother have?\n### Answer: ",
"right_answer": "3",
"description": "Base model prompt version of prompt id 56"
},
{
"id": 89,
"prompt": "### Problem: Alice has 4 sisters and she also has 1 brother. How many sisters does Alice's brother have?\n### Answer: ",
"right_answer": "5",
"description": "Base model prompt version of prompt id 63"
},
{
"id": 90,
"prompt": "### Problem: Alice has 4 brothers and she also has 1 sister. How many sisters does Alice's brother have?\n### Answer: ",
"right_answer": "2",
"description": "Base model prompt version of prompt id 69"
},
{
"id": 91,
"prompt": "Alice has 3 sisters. Her mother has 1 sister who does not have children - she has 7 nephews and nieces and also 2 brothers. Alice's father has a brother who has 5 nephews and nieces in total, and who has also 1 son. How many cousins does Alice's sister have? Solve this problem and provide the final answer in following form: \"### Answer: \".",
"right_answer": "5",
"description": "AIW+ Variation 3, EXPERIMENTAL, STANDARD, no bias in responses, no restriction in output length"
},
{
"id": 92,
"prompt": "Alice has 3 sisters. Her mother has 1 sister who does not have children - she has 7 nephews and nieces and also 2 brothers. Alice's father has a brother who has 5 nephews and nieces in total, and who has also 1 son. How many cousins does Alice's sister have? Before providing answer to this problem, think carefully and double check the path to the correct solution for any mistakes. Provide then the final answer in following form: \"### Answer: \".",
"right_answer": "5",
"description": "AIW+ Variation 3, EXPERIMENTAL, THINKING, no bias in responses, no restriction in output length, encouraging longer output by thinking."
},
{
"id": 93,
"prompt": "Alice has 3 sisters. Her mother has 1 sister who does not have children - she has 7 nephews and nieces and also 2 brothers. Alice's father has a brother who has 5 nephews and nieces in total, and who has also 1 son. How many cousins does Alice's sister have? To answer the question, DO NOT OUTPUT ANY TEXT EXCEPT following format that contains final answer: \"### Answer: \".",
"right_answer": "5",
"description": "AIW+ Variation 3, EXPERIMENTAL, RESTRICTED, restriction in output length."
},
{
"id": 94,
"prompt": "Alice has 2 sisters. Her mother has 1 sister who does not have children and who has 6 nephews and nieces and also 2 brothers. Alice's father has a brother who has 5 nephews and nieces in total, and who also has 2 daughters. How many cousins does Alice's sister have? Solve this problem and provide the final answer in following form: \"### Answer: \".",
"right_answer": "7",
"description": "AIW+ VARIATION 1, EXPERIMENTAL, STANDARD, no bias in responses, no restriction in output length"
},
{
"id": 95,
"prompt": "Alice has 2 sisters. Her mother has 1 sister who does not have children and who has 6 nephews and nieces and also 2 brothers. Alice's father has a brother who has 5 nephews and nieces in total, and who also has 2 daughters. How many cousins does Alice's sister have? Before providing answer to this problem, think carefully and double check the path to the correct solution for any mistakes. Provide then the final answer in following form: \"### Answer: \".",
"right_answer": "7",
"description": "AIW+ VARIATION 1, EXPERIMENTAL, THINKING, no bias in responses, no restriction in output length, encouraging longer output by thinking."
},
{
"id": 96,
"prompt": "Alice has 2 sisters. Her mother has 1 sister who does not have children and who has 6 nephews and nieces and also 2 brothers. Alice's father has a brother who has 5 nephews and nieces in total, and who also has 2 daughters. How many cousins does Alice's sister have? To answer the question, DO NOT OUTPUT ANY TEXT EXCEPT following format that contains final answer: \"### Answer: \".",
"right_answer": "7",
"description": "AIW+ VARIATION 1, EXPERIMENTAL, RESTRICTED, restriction in output length."
},
{
"id": 97,
"prompt": "Alice has 3 sisters. Her mother has 1 sister who does not have children and who has 6 nephews and nieces and also 2 brothers. Alice's father has a brother who has 4 nephews and nieces in total, and who also has 1 son. How many cousins does Alice's sister have? Solve this problem and provide the final answer in following form: \"### Answer: \".",
"right_answer": "3",
"description": "AIW+ VARIATION 2, EXPERIMENTAL, STANDARD, no bias in responses, no restriction in output length"
},
{
"id": 98,
"prompt": "Alice has 3 sisters. Her mother has 1 sister who does not have children and who has 6 nephews and nieces and also 2 brothers. Alice's father has a brother who has 4 nephews and nieces in total, and who also has 1 son. How many cousins does Alice's sister have? Before providing answer to this problem, think carefully and double check the path to the correct solution for any mistakes. Provide then the final answer in following form: \"### Answer: \".",
"right_answer": "3",
"description": "AIW+ VARIATION 2, EXPERIMENTAL, THINKING, no bias in responses, no restriction in output length, encouraging longer output by thinking."
},
{
"id": 99,
"prompt": "Alice has 3 sisters. Her mother has 1 sister who does not have children and who has 6 nephews and nieces and also 2 brothers. Alice's father has a brother who has 4 nephews and nieces in total, and who also has 1 son. How many cousins does Alice's sister have? To answer the question, DO NOT OUTPUT ANY TEXT EXCEPT following format that contains final answer: \"### Answer: \".",
"right_answer": "3",
"description": "AIW+ VARIATION 2, EXPERIMENTAL, RESTRICTED, restriction in output length."
},
{
"id": 100,
"prompt": "Alice has M sisters and she also has N brothers. How many sisters does Alice's brother have? Solve this problem and provide the final answer in following form: \"### Answer: \".",
"right_answer": "null",
"description": "AIW PARAM EXPERIMENTAL, STANDARD, no bias in responses, no restriction in output length"
},
{
"id": 101,
"prompt": "Alice has M sisters and she also has N brothers. How many sisters does Alice's brother have? Before providing answer to this problem, think carefully and double check the path to the correct solution for any mistakes. Provide then the final answer in following form: \"### Answer: \".",
"right_answer": "null",
"description": "AIW PARAM EXPERIMENTAL, THINKING, no bias in responses, no restriction in output length, encouraging longer output by thinking."
},
{
"id": 102,
"prompt": "Alice has M sisters and she also has N brothers. How many sisters does Alice's brother have? To answer the question, DO NOT OUTPUT ANY TEXT EXCEPT following format that contains final answer: \"### Answer: \".",
"right_answer": "null",
"description": "AIW PARAM EXPERIMENTAL, RESTRICTED, restriction in output length."
},
{
"id": 103,
"prompt": "Alice has X sisters and she also has Y brothers. How many sisters does Alice's brother have? Solve this problem and provide the final answer in following form: \"### Answer: \".",
"right_answer": "null",
"description": "AIW PARAM EXPERIMENTAL VARIATION 2, STANDARD, no bias in responses, no restriction in output length"
},
{
"id": 104,
"prompt": "Alice has X sisters and she also has Y brothers. How many sisters does Alice's brother have? Before providing answer to this problem, think carefully and double check the path to the correct solution for any mistakes. Provide then the final answer in following form: \"### Answer: \".",
"right_answer": "null",
"description": "AIW PARAM EXPERIMENTAL VARIATION 2, THINKING, no bias in responses, no restriction in output length, encouraging longer output by thinking."
},
{
"id": 105,
"prompt": "Alice has X sisters and she also has Y brothers. How many sisters does Alice's brother have? To answer the question, DO NOT OUTPUT ANY TEXT EXCEPT following format that contains final answer: \"### Answer: \".",
"right_answer": "null",
"description": "AIW PARAM EXPERIMENTAL VARIATION 2, RESTRICTED, restriction in output length."
},
{
"id": 106,
"prompt": "Alice has X brothers and she also has Y sisters. How many sisters does Alice's brother have? Solve this problem and provide the final answer in following form: \"### Answer: \".",
"right_answer": "null",
"description": "AIW PARAM EXPERIMENTAL VARIATION 3, STANDARD, no bias in responses, no restriction in output length"
},
{
"id": 107,
"prompt": "Alice has X brothers and she also has Y sisters. How many sisters does Alice's brother have? Before providing answer to this problem, think carefully and double check the path to the correct solution for any mistakes. Provide then the final answer in following form: \"### Answer: \".",
"right_answer": "null",
"description": "AIW PARAM EXPERIMENTAL VARIATION 3, THINKING, no bias in responses, no restriction in output length, encouraging longer output by thinking."
},
{
"id": 108,
"prompt": "Alice has X brothers and she also has Y sisters. How many sisters does Alice's brother have? To answer the question, DO NOT OUTPUT ANY TEXT EXCEPT following format that contains final answer: \"### Answer: \".",
"right_answer": "null",
"description": "AIW PARAM EXPERIMENTAL VARIATION 3, RESTRICTED, restriction in output length."
},
{
"id": 109,
"prompt": "Reformulate the following problem as a relational database SQL programming problem. Problem: \"Alice has four sisters and a brother. How many sisters in total does Alice's brother have?\"",
"right_answer": "null",
"description": "AIW SQL experimental Reformulation prompt."
},
{
"id": 110,
"prompt": [
"Alice has 3 brothers and she also has 6 sisters. How many sisters does Alice's brother have? Solve this problem and provide the final answer in following form: \"### Answer: \"",
"Review your previous answer and find problems with your answer.",
"Based on the problems you found, improve your answer. Please reiterate your answer, with your final answer a single numerical number, in the following form: \"### Answer: \""
],
"right_answer": "7"
},
{
"id": 111,
"prompt": [
"Alice has 4 brothers and she also has 1 sister. How many sisters does Alice's brother have? Solve this problem and provide the final answer in following form: \"### Answer: \"",
"Please double check the solution, find mistakes if any and correct those, providing revised correct solution.",
"The provided solution still contains mistakes. Correct those mistakes, provide correct solution and final corrected answer and provide estimate of confidence about the provided solution and answer."
],
"right_answer": "2"
},
{
"id": 112,
"prompt": [
"Alice has 3 brothers and she also has 6 sisters. How many sisters does Alice's brother have? Solve this problem and provide the final answer in following form: \"### Answer: \"",
"Please double check the solution, find mistakes if any and correct those, providing revised correct solution.",
"The provided solution still contains mistakes. Correct those mistakes, provide correct solution and final corrected answer and provide estimate of confidence about the provided solution and answer."
],
"right_answer": "7"
},
{
"id": 113,
"prompt": [
"Alice has X brothers and she also has Y sisters. How many sisters does Alice's brother have? Think step by step.",
"Now, solve it for X=3 and Y=6. Provide the final answer in following form: \"### Answer: \""
],
"right_answer": "7"
},
{
"id": 114,
"prompt": "Alice has 4 sisters and she also has 3 brothers. How many brothers does Alice's sister have? Solve this problem and provide the final answer in following form: \"### Answer: \".",
"right_answer": "3",
"description": "AIW Variation 1, Easy Alice Version, STANDARD, no output restriction"
},
{
"id": 115,
"prompt": "Alice has 4 sisters and she also has 3 brothers. How many brothers does Alice's sister have? Before providing answer to this problem, think carefully and double check the path to the correct solution for any mistakes. Provide then the final answer in following form: \"### Answer: \".",
"right_answer": "3",
"description": "AIW Variation 1, Easy Alice Version, THINKING, no output restriction, thinking carefully v1"
},
{
"id": 116,
"prompt": "Alice has 4 sisters and she also has 3 brothers. How many brothers does Alice's sister have? To answer the question, DO NOT OUTPUT ANY TEXT EXCEPT following format that contains final answer: \"### Answer: \".",
"right_answer": "3",
"description": "AIW Variation 1, Easy Alice Version, RESTRICTED, output restriction"
},
{
"id": 117,
"prompt": "Alice has N sisters and she also has M brothers. How many brothers does Alice's sister have? Solve this problem and provide the final answer in following form: \"### Answer: \".",
"right_answer": "null",
"description": "easier AIW parameterized, no output restriction"
},
{
"id": 118,
"prompt": "Alice has N sisters and she also has M brothers. How many brothers does Alice's sister have? Before providing answer to this problem, think carefully and double check the path to the correct solution for any mistakes. Provide then the final answer in following form: \"### Answer: \".",
"right_answer": "null",
"description": "easier AIW parameterized, no output restriction, thinking carefully v1"
},
{
"id": 119,
"prompt": "Alice has N sisters and she also has M brothers. How many brothers does Alice's sister have? To answer the question, DO NOT OUTPUT ANY TEXT EXCEPT following format that contains final answer: \"### Answer: \".",
"right_answer": "null",
"description": "easier AIW parameterized, output restriction"
},
{
"id": 120,
"prompt": "Bob has 4 brothers and he also has 3 sisters. How many sisters does Bob's brother have? Solve this problem and provide the final answer in following form: \"### Answer: \".",
"right_answer": "3",
"description": "AIW Variation 1, Easy Bob Version, STANDARD, no output restriction"
},
{
"id": 121,
"prompt": "Bob has 4 brothers and he also has 3 sisters. How many sisters does Bob's brother have? Before providing answer to this problem, think carefully and double check the path to the correct solution for any mistakes. Provide then the final answer in following form: \"### Answer: \".",
"right_answer": "3",
"description": "AIW Variation 1, Easy Bob Version, THINKING, no output restriction, thinking carefully v1"
},
{
"id": 122,
"prompt": "Bob has 4 brothers and he also has 3 sisters. How many sisters does Bob's brother have? To answer the question, DO NOT OUTPUT ANY TEXT EXCEPT following format that contains final answer: \"### Answer: \".",
"right_answer": "3",
"description": "AIW Variation 1, Easy Bob Version, RESTRICTED, output restriction"
},
{
"id": 123,
"prompt": "Alice has 3 brothers and she also has 4 sisters. How many brothers does Alice's sister have? Solve this problem and provide the final answer in following form: \"### Answer: \".",
"right_answer": "3",
"description": "easier AIW Permute Var 1, no output restriction"
},
{
"id": 124,
"prompt": "Alice has 3 brothers and she also has 4 sisters. How many brothers does Alice's sister have? Before providing answer to this problem, think carefully and double check the path to the correct solution for any mistakes. Provide then the final answer in following form: \"### Answer: \".",
"right_answer": "3",
"description": "easier AIW Permute Var 1, no output restriction, thinking carefully v1"
},
{
"id": 125,
"prompt": "Alice has 3 brothers and she also has 4 sisters. How many brothers does Alice's sister have? To answer the question, DO NOT OUTPUT ANY TEXT EXCEPT following format that contains final answer: \"### Answer: \".",
"right_answer": "3",
"description": "easier AIW Permute Var 1, output restriction"
},
{
"id": 126,
"prompt": "Alice has 2 sisters and she also has 3 brothers. How many brothers does Alice's sister have? Solve this problem and provide the final answer in following form: \"### Answer: \".",
"right_answer": "3",
"description": "easier AIW Alter Number Var 1, no output restriction"
},
{
"id": 127,
"prompt": "Alice has 2 sisters and she also has 3 brothers. How many brothers does Alice's sister have? Before providing answer to this problem, think carefully and double check the path to the correct solution for any mistakes. Provide then the final answer in following form: \"### Answer: \".",
"right_answer": "3",
"description": "easier AIW Alter Number Var 1, no output restriction, thinking carefully v1"
},
{
"id": 128,
"prompt": "Alice has 2 sisters and she also has 3 brothers. How many brothers does Alice's sister have? To answer the question, DO NOT OUTPUT ANY TEXT EXCEPT following format that contains final answer: \"### Answer: \".",
"right_answer": "3",
"description": "easier AIW Alter Number Var 1, output restriction"
},
{
"id": 129,
"prompt": "Alice has 4 sisters and she also has 2 brothers. How many brothers does Alice's sister have? Solve this problem and provide the final answer in following form: \"### Answer: \".",
"right_answer": "2",
"description": "AIW Variation 2, Easy Alice Version, STANDARD, no output restriction"
},
{
"id": 130,
"prompt": "Alice has 4 sisters and she also has 2 brothers. How many brothers does Alice's sister have? Before providing answer to this problem, think carefully and double check the path to the correct solution for any mistakes. Provide then the final answer in following form: \"### Answer: \".",
"right_answer": "2",
"description": "AIW Variation 2, Easy Alice Version, THINKING, no output restriction, thinking carefully v1"
},
{
"id": 131,
"prompt": "Alice has 4 sisters and she also has 2 brothers. How many brothers does Alice's sister have? To answer the question, DO NOT OUTPUT ANY TEXT EXCEPT following format that contains final answer: \"### Answer: \".",
"right_answer": "2",
"description": "AIW Variation 2, Easy Alice Version, RESTRICTED, output restriction"
},
{
"id": 132,
"prompt": "Alice has 4 sisters and she also has 1 brother. Alice and all her mentioned siblings have the same two parents, the description of Alice's family is complete and no person is left out. How many sisters does Alice's brother have? Solve this problem and provide the final answer in following form: \"### Answer: \".",
"right_answer": "5",
"description": "AIW variation 3 FULL EXPLANATION MOD, STANDARD, no output restriction"
},
{
"id": 133,
"prompt": "Alice has 4 sisters and she also has 1 brother. Alice and all her mentioned siblings have the same two parents, the description of Alice's family is complete and no person is left out. How many sisters does Alice's brother have? Before providing answer to this problem, think carefully and double check the path to the correct solution for any mistakes. Provide then the final answer in following form: \"### Answer: \".",
"right_answer": "5",
"description": "AIW variation 3 FULL EXPLANATION MOD, THINKING, no output restriction, thinking carefully v1"
},
{
"id": 134,
"prompt": "Alice has 4 sisters and she also has 1 brother. Alice and all her mentioned siblings have the same two parents, the description of Alice's family is complete and no person is left out. How many sisters does Alice's brother have? To answer the question, DO NOT OUTPUT ANY TEXT EXCEPT following format that contains final answer: \"### Answer: \".",
"right_answer": "5",
"description": "AIW variation 3 FULL EXPLANATION MOD, RESTRICTED"
},
{
"id": 135,
"prompt": "Alice has 4 brothers and she also has 1 sister. Alice and all her mentioned siblings have the same two parents, the description of Alice's family is complete and no person is left out. How many sisters does Alice's brother have? Solve this problem and provide the final answer in following form: \"### Answer: \".",
"right_answer": "2",
"description": "AIW variation 4 FULL EXPLANATION MOD, STANDARD, no output restriction"
},
{
"id": 136,
"prompt": "Alice has 4 brothers and she also has 1 sister. Alice and all her mentioned siblings have the same two parents, the description of Alice's family is complete and no person is left out. How many sisters does Alice's brother have? Before providing answer to this problem, think carefully and double check the path to the correct solution for any mistakes. Provide then the final answer in following form: \"### Answer: \".",
"right_answer": "2",
"description": "AIW variation 4 FULL EXPLANATION MOD, THINKING, no output restriction, thinking carefully v1"
},
{
"id": 137,
"prompt": "Alice has 4 brothers and she also has 1 sister. Alice and all her mentioned siblings have the same two parents, the description of Alice's family is complete and no person is left out. How many sisters does Alice's brother have? To answer the question, DO NOT OUTPUT ANY TEXT EXCEPT following format that contains final answer: \"### Answer: \".",
"right_answer": "2",
"description": "AIW variation 4 FULL EXPLANATION MOD, RESTRICTED"
},
{
"id": 138,
"prompt": "Bob has 4 brothers and he also has 1 sister. How many brothers does Bob's sister have? Solve this problem and provide the final answer in following form: \"### Answer: \".",
"right_answer": "5",
"description": "AIW variation 3, Bob version, no output restriction"
},
{
"id": 139,
"prompt": "Bob has 4 brothers and he also has 1 sister. How many brothers does Bob's sister have? Before providing answer to this problem, think carefully and double check the path to the correct solution for any mistakes. Provide then the final answer in following form: \"### Answer: \".",
"right_answer": "5",
"description": "AIW variation 3, Bob version, no output restriction, thinking carefully v1"
},
{
"id": 140,
"prompt": "Bob has 4 brothers and he also has 1 sister. How many brothers does Bob's sister have? To answer the question, DO NOT OUTPUT ANY TEXT EXCEPT following format that contains final answer: \"### Answer: \".",
"right_answer": "5",
"description": "AIW variation 3, Bob version, output restriction"
},
{
"id": 141,
"prompt": "Bob has 4 sisters and he also has 1 brother. How many brothers does Bob's sister have? Solve this problem and provide the final answer in following form: \"### Answer: \".",
"right_answer": "2",
"description": "AIW variation 4, Bob version, no output restriction"
},
{
"id": 142,
"prompt": "Bob has 4 sisters and he also has 1 brother. How many brothers does Bob's sister have? Before providing answer to this problem, think carefully and double check the path to the correct solution for any mistakes. Provide then the final answer in following form: \"### Answer: \".",
"right_answer": "2",
"description": "AIW variation 4, Bob version, no output restriction, thinking carefully v1"
},
{
"id": 143,
"prompt": "Bob has 4 sisters and he also has 1 brother. How many brothers does Bob's sister have? To answer the question, DO NOT OUTPUT ANY TEXT EXCEPT following format that contains final answer: \"### Answer: \".",
"right_answer": "2",
"description": "AIW variation 4, Bob version, output restriction"
},
{
"id": 144,
"prompt": "Alice is female and has one brother and she also has four sisters. How many sisters does Alice's brother have? Count them step by step.",
"right_answer": "5",
"description": "AIW variation 5, Alice version, no output restriction. count step by step v1"
},
{
"id": 145,
"prompt": "Alice is female and has four sisters and she also has one brother. How many sisters does Alice's brother have? Count them step by step.",
"right_answer": "5",
"description": "AIW variation 6, Alice version, no output restriction. count step by step v1"
},
{
"id": 146,
"prompt": "Alice is female and has one sister and she also has four brothers. How many sisters does Alice's brother have? Count them step by step.",
"right_answer": "2",
"description": "AIW variation 7, Alice version, no output restriction. count step by step v1"
},
{
"id": 147,
"prompt": "Alice is female and has four brothers and she also has one sister. How many sisters does Alice's brother have? Count them step by step.",
"right_answer": "2",
"description": "AIW variation 8, Alice version, no output restriction. count step by step v1"
},
{
"id": 148,
"prompt": "Alice is female and has four brothers and she also has two sisters. How many sisters does Alice's brother have? Count them step by step.",
"right_answer": "3",
"description": "AIW variation 9, Alice version, no output restriction. count step by step v1"
},
{
"id": 149,
"prompt": "Alice is female and has two brothers and she also has three sisters. How many sisters does Alice's brother have? Count them step by step.",
"right_answer": "4",
"description": "AIW variation 10, Alice version, no output restriction. count step by step v1"
},
{
"id": 150,
"prompt": "Alice is female and has two brothers and she also has six sisters. How many sisters does Alice's brother have? Count them step by step.",
"right_answer": "7",
"description": "AIW variation 11, Alice version, no output restriction. count step by step v1"
},
{
"id": 151,
"prompt": "Alice is female and has five brothers and she also has five sisters. How many sisters does Alice's brother have? Count them step by step.",
"right_answer": "6",
"description": "AIW variation 12, Alice version, no output restriction. count step by step v1"
},
{
"id": 152,
"prompt": "Alice is female and has three brothers and she also has seven sisters. How many sisters does Alice's brother have? Count them step by step.",
"right_answer": "8",
"description": "AIW variation 13, Alice version, no output restriction. count step by step v1"
},
{
"id": 153,
"prompt": "Alice is female and has eight brothers and she also has seven sisters. How many sisters does Alice's brother have? Count them step by step.",
"right_answer": "8",
"description": "AIW variation 14, Alice version, no output restriction. count step by step v1"
},
{
"id": 154,
"prompt": "Alice is a female and Bob is a male. Alice and Bob are sister and brother. Alice has 3 sisters and Bob has 2 brothers. How many brothers does Alice have? Count them step by step.",
"right_answer": "3",
"description": "AIW_ext variation 1, Alice version, no output restriction. count step by step v1"
},
{
"id": 155,
"prompt": "Alice is a female and Bob is a male. Alice and Bob are sister and brother. Alice has 3 sisters and Bob has 2 brothers. How many sisters does Bob have? Count them step by step.",
"right_answer": "4",
"description": "AIW_ext variation 1, Bob version, no output restriction. count step by step v1"
},
{
"id": 156,
"prompt": "Alice is a female and Bob is a male. Alice and Bob are sister and brother. Alice has 3 sisters and Bob has 2 brothers. How many sisters does Bob have? How many brothers does Alice have? Count them step by step.",
"right_answer": "4",
"description": "AIW_ext variation 1, Alice and Bob combi, no output restriction. count step by step v1"
},
{
"id": 157,
"prompt": "Alice is female and has five sisters and she also has one brother. How many sisters does Alice's brother have? Count them step by step.",
"right_answer": "6",
"description": "AIW variation 15, Alice version, no output restriction. count step by step v1"
},
{
"id": 158,
"prompt": "Alice is female and has five sisters and she also has two brothers. How many sisters does Alice's brother have? Count them step by step.",
"right_answer": "6",
"description": "AIW variation 16, Alice version, no output restriction. count step by step v1"
},
{
"id": 159,
"prompt": "Alice is female and has five sisters and she also has three brothers. How many sisters does Alice's brother have? Count them step by step.",
"right_answer": "6",
"description": "AIW variation 17, Alice version, no output restriction. count step by step v1"
},
{
"id": 160,
"prompt": "Alice is female and has five sisters and she also has four brothers. How many sisters does Alice's brother have? Count them step by step.",
"right_answer": "6",
"description": "AIW variation 18, Alice version, no output restriction. count step by step v1"
},
{
"id": 161,
"prompt": "Alice is female and has one brother and she also has five sisters. How many sisters does Alice's brother have? Count them step by step.",
"right_answer": "6",
"description": "AIW variation 15a, Alice version, no output restriction. count step by step v1"
},
{
"id": 162,
"prompt": "Alice is female and has two brothers and she also has five sisters. How many sisters does Alice's brother have? Count them step by step.",
"right_answer": "6",
"description": "AIW variation 16a, Alice version, no output restriction. count step by step v1"
},
{
"id": 163,
"prompt": "Alice is female and has three brothers and she also has five sisters How many sisters does Alice's brother have? Count them step by step.",
"right_answer": "6",
"description": "AIW variation 17a, Alice version, no output restriction. count step by step v1"
},
{
"id": 164,
"prompt": "Alice is female and has four brothers and she also has five sisters. How many sisters does Alice's brother have? Count them step by step.",
"right_answer": "6",
"description": "AIW variation 18a, Alice version, no output restriction. count step by step v1"
},
{
"id": 165,
"prompt": "Alice has four sisters and she also has one brother. How many sisters does Alice's brother have? Solve this problem and provide the final answer in following form: \"### Answer: \".",
"right_answer": "5",