InternBootcamp/examples/data/Intenbootcamp_eval/korLogicPredicateLogicFormalization.jsonl
Yongkang Chen a8249acc18
update to tech report version (#10)
* feat(run_eval): add checkpoint resume functionality and update example documentation;
- update new bootcamp benchmark dataset

* refactor(data_pipeline): optimize data generation pipeline; add multiple preset configurations for data generation

* docs: update bootcamp list and add new scripts

- Update Fulllist_InternBootcamp.md with new bootcamps and categories
- Add new scripts to .gitignore:
  - examples/pipelines/filter_autogen_configs.py
  - examples/pipelines/quickgen_data_configs_from_eval_meta.py
- Update dependencies in setup.py:
  - Add scipy and scikit-learn

* refactor(internbootcamp): update bootcamp modules and improve error handling

- Update import statements in __init__.py files
- Add timestamp to target directory name in verl_data_preprocess.py
- Improve error handling and scoring logic in bootcamp_judger.py
- Remove unnecessary comments and update puzzle descriptions in multiple files
2025-08-28 12:39:47 +08:00

100 lines
165 KiB
JSON
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Using universal domain: All birds have feathers.\nPredicates:\n- F(x): x is a birds\n- G(x): x have feathers\n\nProblem 2: Symbolize: Some rabbits are faster than all turtles.\nPredicates:\n- F(x): x is a rabbits\n- G(y): y is a turtles\n- H(x,y): x is faster than y\n\nProblem 3: Using universal domain: All students attend classes.\nPredicates:\n- F(x): x is a students\n- G(x): x attend classes\n\nProblem 4: Using universal domain: Some cars are red.\nPredicates:\n- F(x): x is a cars\n- G(x): x are red\n\nProblem 5: Neither a nor d is G\nPredicates:\n- G(a): a has property G\n- G(d): d has property G\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Using universal domain: All birds have feathers.", "predicates": {"F(x)": "x is a birds", "G(x)": "x have feathers"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Symbolize: Some rabbits are faster than all turtles.", "predicates": {"F(x)": "x is a rabbits", "G(y)": "y is a turtles", "H(x,y)": "x is faster than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}, {"description": "Using universal domain: All students attend classes.", "predicates": {"F(x)": "x is a students", "G(x)": "x attend classes"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Using universal domain: Some cars are red.", "predicates": {"F(x)": "x is a cars", "G(x)": "x are red"}, "correct_answer": "Ex(F(x)&G(x))"}, {"description": "Neither a nor d is G", "predicates": {"G(a)": "a has property G", "G(d)": "d has property G"}, "correct_answer": "G(a)&G(d)"}], "answer_format": "[[answer;answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Every person has someone they love. (Domain: people)\nPredicates:\n- F(x,y): x loves y\n\nProblem 2: Symbolize: Some rabbits are faster than all turtles.\nPredicates:\n- F(x): x is a rabbits\n- G(y): y is a turtles\n- H(x,y): x is faster than y\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Every person has someone they love. (Domain: people)", "predicates": {"F(x,y)": "x loves y"}, "correct_answer": "AxEyF(x,y)"}, {"description": "Symbolize: Some rabbits are faster than all turtles.", "predicates": {"F(x)": "x is a rabbits", "G(y)": "y is a turtles", "H(x,y)": "x is faster than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}], "answer_format": "[[answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProblem 2: Using universal domain: Some turtles have hard shells.\nPredicates:\n- F(x): x is a turtles\n- G(x): x have hard shells\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Using universal domain: Some turtles have hard shells.", "predicates": {"F(x)": "x is a turtles", "G(x)": "x have hard shells"}, "correct_answer": "Ex(F(x)&G(x))"}], "answer_format": "[[answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Using universal domain: All humans breathe.\nPredicates:\n- F(x): x is a humans\n- G(x): x breathe\n\nProblem 2: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Using universal domain: All humans breathe.", "predicates": {"F(x)": "x is a humans", "G(x)": "x breathe"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}], "answer_format": "[[answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Using universal domain: All humans breathe.\nPredicates:\n- F(x): x is a humans\n- G(x): x breathe\n\nProblem 2: Symbolize: Some students are older than all teachers.\nPredicates:\n- F(x): x is a students\n- G(y): y is a teachers\n- H(x,y): x is older than y\n\nProblem 3: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProblem 4: Symbolize: Some humans are smarter than all animals.\nPredicates:\n- F(x): x is a humans\n- G(y): y is a animals\n- H(x,y): x is smarter than y\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Using universal domain: All humans breathe.", "predicates": {"F(x)": "x is a humans", "G(x)": "x breathe"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Symbolize: Some students are older than all teachers.", "predicates": {"F(x)": "x is a students", "G(y)": "y is a teachers", "H(x,y)": "x is older than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}, {"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Symbolize: Some humans are smarter than all animals.", "predicates": {"F(x)": "x is a humans", "G(y)": "y is a animals", "H(x,y)": "x is smarter than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}], "answer_format": "[[answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: d is both F and H\nPredicates:\n- F(d): d has property F\n- H(d): d has property H\n\nProblem 2: Using universal domain: Some rabbits have long ears.\nPredicates:\n- F(x): x is a rabbits\n- G(x): x have long ears\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "d is both F and H", "predicates": {"F(d)": "d has property F", "H(d)": "d has property H"}, "correct_answer": "F(d)&H(d)"}, {"description": "Using universal domain: Some rabbits have long ears.", "predicates": {"F(x)": "x is a rabbits", "G(x)": "x have long ears"}, "correct_answer": "Ex(F(x)&G(x))"}], "answer_format": "[[answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProblem 2: Using universal domain: Some turtles have hard shells.\nPredicates:\n- F(x): x is a turtles\n- G(x): x have hard shells\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Using universal domain: Some turtles have hard shells.", "predicates": {"F(x)": "x is a turtles", "G(x)": "x have hard shells"}, "correct_answer": "Ex(F(x)&G(x))"}], "answer_format": "[[answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProblem 2: Using universal domain: Some rabbits run fast.\nPredicates:\n- F(x): x is a rabbits\n- G(x): x run fast\n\nProblem 3: Using universal domain: Some turtles have hard shells.\nPredicates:\n- F(x): x is a turtles\n- G(x): x have hard shells\n\nProblem 4: Either b is G or d is G\nPredicates:\n- G(b): b has property G\n- G(d): d has property G\n\nProblem 5: Using universal domain: All students attend classes.\nPredicates:\n- F(x): x is a students\n- G(x): x attend classes\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Using universal domain: Some rabbits run fast.", "predicates": {"F(x)": "x is a rabbits", "G(x)": "x run fast"}, "correct_answer": "Ex(F(x)&G(x))"}, {"description": "Using universal domain: Some turtles have hard shells.", "predicates": {"F(x)": "x is a turtles", "G(x)": "x have hard shells"}, "correct_answer": "Ex(F(x)&G(x))"}, {"description": "Either b is G or d is G", "predicates": {"G(b)": "b has property G", "G(d)": "d has property G"}, "correct_answer": "G(b)|G(d)"}, {"description": "Using universal domain: All students attend classes.", "predicates": {"F(x)": "x is a students", "G(x)": "x attend classes"}, "correct_answer": "Ax(F(x)⇒G(x))"}], "answer_format": "[[answer;answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProblem 2: Symbolize: Some students are older than all teachers.\nPredicates:\n- F(x): x is a students\n- G(y): y is a teachers\n- H(x,y): x is older than y\n\nProblem 3: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProblem 4: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Symbolize: Some students are older than all teachers.", "predicates": {"F(x)": "x is a students", "G(y)": "y is a teachers", "H(x,y)": "x is older than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}, {"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}], "answer_format": "[[answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Symbolize: Some rabbits are faster than all turtles.\nPredicates:\n- F(x): x is a rabbits\n- G(y): y is a turtles\n- H(x,y): x is faster than y\n\nProblem 2: Symbolize: Some students are older than all teachers.\nPredicates:\n- F(x): x is a students\n- G(y): y is a teachers\n- H(x,y): x is older than y\n\nProblem 3: Neither b nor c is F\nPredicates:\n- F(b): b has property F\n- F(c): c has property F\n\nProblem 4: Using universal domain: Some cars are red.\nPredicates:\n- F(x): x is a cars\n- G(x): x are red\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Symbolize: Some rabbits are faster than all turtles.", "predicates": {"F(x)": "x is a rabbits", "G(y)": "y is a turtles", "H(x,y)": "x is faster than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}, {"description": "Symbolize: Some students are older than all teachers.", "predicates": {"F(x)": "x is a students", "G(y)": "y is a teachers", "H(x,y)": "x is older than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}, {"description": "Neither b nor c is F", "predicates": {"F(b)": "b has property F", "F(c)": "c has property F"}, "correct_answer": "F(b)&F(c)"}, {"description": "Using universal domain: Some cars are red.", "predicates": {"F(x)": "x is a cars", "G(x)": "x are red"}, "correct_answer": "Ex(F(x)&G(x))"}], "answer_format": "[[answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Symbolize: Some humans are smarter than all animals.\nPredicates:\n- F(x): x is a humans\n- G(y): y is a animals\n- H(x,y): x is smarter than y\n\nProblem 2: Using universal domain: All prime numbers are even.\nPredicates:\n- F(x): x is a prime numbers\n- G(x): x are even\n\nProblem 3: d is both F and H\nPredicates:\n- F(d): d has property F\n- H(d): d has property H\n\nProblem 4: c is both G and H\nPredicates:\n- G(c): c has property G\n- H(c): c has property H\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Symbolize: Some humans are smarter than all animals.", "predicates": {"F(x)": "x is a humans", "G(y)": "y is a animals", "H(x,y)": "x is smarter than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}, {"description": "Using universal domain: All prime numbers are even.", "predicates": {"F(x)": "x is a prime numbers", "G(x)": "x are even"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "d is both F and H", "predicates": {"F(d)": "d has property F", "H(d)": "d has property H"}, "correct_answer": "F(d)&H(d)"}, {"description": "c is both G and H", "predicates": {"G(c)": "c has property G", "H(c)": "c has property H"}, "correct_answer": "G(c)&H(c)"}], "answer_format": "[[answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProblem 2: Neither c nor a is G\nPredicates:\n- G(a): a has property G\n- G(c): c has property G\n\nProblem 3: Using universal domain: Some apples are sweet.\nPredicates:\n- F(x): x is a apples\n- G(x): x are sweet\n\nProblem 4: Using universal domain: Some cars are red.\nPredicates:\n- F(x): x is a cars\n- G(x): x are red\n\nProblem 5: Using universal domain: Some rabbits run fast.\nPredicates:\n- F(x): x is a rabbits\n- G(x): x run fast\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Neither c nor a is G", "predicates": {"G(c)": "c has property G", "G(a)": "a has property G"}, "correct_answer": "G(c)&G(a)"}, {"description": "Using universal domain: Some apples are sweet.", "predicates": {"F(x)": "x is a apples", "G(x)": "x are sweet"}, "correct_answer": "Ex(F(x)&G(x))"}, {"description": "Using universal domain: Some cars are red.", "predicates": {"F(x)": "x is a cars", "G(x)": "x are red"}, "correct_answer": "Ex(F(x)&G(x))"}, {"description": "Using universal domain: Some rabbits run fast.", "predicates": {"F(x)": "x is a rabbits", "G(x)": "x run fast"}, "correct_answer": "Ex(F(x)&G(x))"}], "answer_format": "[[answer;answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Symbolize: Some humans are smarter than all animals.\nPredicates:\n- F(x): x is a humans\n- G(y): y is a animals\n- H(x,y): x is smarter than y\n\nProblem 2: Using universal domain: All students attend classes.\nPredicates:\n- F(x): x is a students\n- G(x): x attend classes\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Symbolize: Some humans are smarter than all animals.", "predicates": {"F(x)": "x is a humans", "G(y)": "y is a animals", "H(x,y)": "x is smarter than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}, {"description": "Using universal domain: All students attend classes.", "predicates": {"F(x)": "x is a students", "G(x)": "x attend classes"}, "correct_answer": "Ax(F(x)⇒G(x))"}], "answer_format": "[[answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Using universal domain: Some turtles swim slowly.\nPredicates:\n- F(x): x is a turtles\n- G(x): x swim slowly\n\nProblem 2: Using universal domain: All birds fly.\nPredicates:\n- F(x): x is a birds\n- G(x): x fly\n\nProblem 3: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProblem 4: Using universal domain: Some cars are red.\nPredicates:\n- F(x): x is a cars\n- G(x): x are red\n\nProblem 5: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Using universal domain: Some turtles swim slowly.", "predicates": {"F(x)": "x is a turtles", "G(x)": "x swim slowly"}, "correct_answer": "Ex(F(x)&G(x))"}, {"description": "Using universal domain: All birds fly.", "predicates": {"F(x)": "x is a birds", "G(x)": "x fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Using universal domain: Some cars are red.", "predicates": {"F(x)": "x is a cars", "G(x)": "x are red"}, "correct_answer": "Ex(F(x)&G(x))"}, {"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}], "answer_format": "[[answer;answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProblem 2: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}], "answer_format": "[[answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Symbolize: Some rabbits are faster than all turtles.\nPredicates:\n- F(x): x is a rabbits\n- G(y): y is a turtles\n- H(x,y): x is faster than y\n\nProblem 2: If b is G then d is G\nPredicates:\n- G(b): b has property G\n- G(d): d has property G\n\nProblem 3: Using universal domain: All birds have feathers.\nPredicates:\n- F(x): x is a birds\n- G(x): x have feathers\n\nProblem 4: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Symbolize: Some rabbits are faster than all turtles.", "predicates": {"F(x)": "x is a rabbits", "G(y)": "y is a turtles", "H(x,y)": "x is faster than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}, {"description": "If b is G then d is G", "predicates": {"G(b)": "b has property G", "G(d)": "d has property G"}, "correct_answer": "G(b)⇒G(d)"}, {"description": "Using universal domain: All birds have feathers.", "predicates": {"F(x)": "x is a birds", "G(x)": "x have feathers"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}], "answer_format": "[[answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Using universal domain: Some turtles have hard shells.\nPredicates:\n- F(x): x is a turtles\n- G(x): x have hard shells\n\nProblem 2: Neither b nor a is G\nPredicates:\n- G(a): a has property G\n- G(b): b has property G\n\nProblem 3: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProblem 4: If b is G then c is G\nPredicates:\n- G(b): b has property G\n- G(c): c has property G\n\nProblem 5: Using universal domain: All humans are mortal.\nPredicates:\n- F(x): x is a humans\n- G(x): x are mortal\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Using universal domain: Some turtles have hard shells.", "predicates": {"F(x)": "x is a turtles", "G(x)": "x have hard shells"}, "correct_answer": "Ex(F(x)&G(x))"}, {"description": "Neither b nor a is G", "predicates": {"G(b)": "b has property G", "G(a)": "a has property G"}, "correct_answer": "G(b)&G(a)"}, {"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "If b is G then c is G", "predicates": {"G(b)": "b has property G", "G(c)": "c has property G"}, "correct_answer": "G(b)⇒G(c)"}, {"description": "Using universal domain: All humans are mortal.", "predicates": {"F(x)": "x is a humans", "G(x)": "x are mortal"}, "correct_answer": "Ax(F(x)⇒G(x))"}], "answer_format": "[[answer;answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProblem 2: Either a is G or d is G\nPredicates:\n- G(a): a has property G\n- G(d): d has property G\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Either a is G or d is G", "predicates": {"G(a)": "a has property G", "G(d)": "d has property G"}, "correct_answer": "G(a)|G(d)"}], "answer_format": "[[answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: c is both F and G\nPredicates:\n- F(c): c has property F\n- G(c): c has property G\n\nProblem 2: Using universal domain: Some turtles have hard shells.\nPredicates:\n- F(x): x is a turtles\n- G(x): x have hard shells\n\nProblem 3: Using universal domain: Some cars are red.\nPredicates:\n- F(x): x is a cars\n- G(x): x are red\n\nProblem 4: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProblem 5: Symbolize: Some students are older than all teachers.\nPredicates:\n- F(x): x is a students\n- G(y): y is a teachers\n- H(x,y): x is older than y\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "c is both F and G", "predicates": {"F(c)": "c has property F", "G(c)": "c has property G"}, "correct_answer": "F(c)&G(c)"}, {"description": "Using universal domain: Some turtles have hard shells.", "predicates": {"F(x)": "x is a turtles", "G(x)": "x have hard shells"}, "correct_answer": "Ex(F(x)&G(x))"}, {"description": "Using universal domain: Some cars are red.", "predicates": {"F(x)": "x is a cars", "G(x)": "x are red"}, "correct_answer": "Ex(F(x)&G(x))"}, {"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Symbolize: Some students are older than all teachers.", "predicates": {"F(x)": "x is a students", "G(y)": "y is a teachers", "H(x,y)": "x is older than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}], "answer_format": "[[answer;answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProblem 2: Using universal domain: Some turtles have hard shells.\nPredicates:\n- F(x): x is a turtles\n- G(x): x have hard shells\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Using universal domain: Some turtles have hard shells.", "predicates": {"F(x)": "x is a turtles", "G(x)": "x have hard shells"}, "correct_answer": "Ex(F(x)&G(x))"}], "answer_format": "[[answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Using universal domain: Some apples are sweet.\nPredicates:\n- F(x): x is a apples\n- G(x): x are sweet\n\nProblem 2: Using universal domain: All birds have feathers.\nPredicates:\n- F(x): x is a birds\n- G(x): x have feathers\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Using universal domain: Some apples are sweet.", "predicates": {"F(x)": "x is a apples", "G(x)": "x are sweet"}, "correct_answer": "Ex(F(x)&G(x))"}, {"description": "Using universal domain: All birds have feathers.", "predicates": {"F(x)": "x is a birds", "G(x)": "x have feathers"}, "correct_answer": "Ax(F(x)⇒G(x))"}], "answer_format": "[[answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Symbolize: Some students are older than all teachers.\nPredicates:\n- F(x): x is a students\n- G(y): y is a teachers\n- H(x,y): x is older than y\n\nProblem 2: Using universal domain: All students attend classes.\nPredicates:\n- F(x): x is a students\n- G(x): x attend classes\n\nProblem 3: Symbolize: Some students are older than all teachers.\nPredicates:\n- F(x): x is a students\n- G(y): y is a teachers\n- H(x,y): x is older than y\n\nProblem 4: Every person has someone they love. (Domain: people)\nPredicates:\n- F(x,y): x loves y\n\nProblem 5: Every person has someone they love. (Domain: people)\nPredicates:\n- F(x,y): x loves y\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Symbolize: Some students are older than all teachers.", "predicates": {"F(x)": "x is a students", "G(y)": "y is a teachers", "H(x,y)": "x is older than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}, {"description": "Using universal domain: All students attend classes.", "predicates": {"F(x)": "x is a students", "G(x)": "x attend classes"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Symbolize: Some students are older than all teachers.", "predicates": {"F(x)": "x is a students", "G(y)": "y is a teachers", "H(x,y)": "x is older than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}, {"description": "Every person has someone they love. (Domain: people)", "predicates": {"F(x,y)": "x loves y"}, "correct_answer": "AxEyF(x,y)"}, {"description": "Every person has someone they love. (Domain: people)", "predicates": {"F(x,y)": "x loves y"}, "correct_answer": "AxEyF(x,y)"}], "answer_format": "[[answer;answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Neither b nor a is G\nPredicates:\n- G(a): a has property G\n- G(b): b has property G\n\nProblem 2: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProblem 3: Using universal domain: All students study hard.\nPredicates:\n- F(x): x is a students\n- G(x): x study hard\n\nProblem 4: Symbolize: Some rabbits are faster than all turtles.\nPredicates:\n- F(x): x is a rabbits\n- G(y): y is a turtles\n- H(x,y): x is faster than y\n\nProblem 5: Every person has someone they love. (Domain: people)\nPredicates:\n- F(x,y): x loves y\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Neither b nor a is G", "predicates": {"G(b)": "b has property G", "G(a)": "a has property G"}, "correct_answer": "G(b)&G(a)"}, {"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Using universal domain: All students study hard.", "predicates": {"F(x)": "x is a students", "G(x)": "x study hard"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Symbolize: Some rabbits are faster than all turtles.", "predicates": {"F(x)": "x is a rabbits", "G(y)": "y is a turtles", "H(x,y)": "x is faster than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}, {"description": "Every person has someone they love. (Domain: people)", "predicates": {"F(x,y)": "x loves y"}, "correct_answer": "AxEyF(x,y)"}], "answer_format": "[[answer;answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Every person has someone they love. (Domain: people)\nPredicates:\n- F(x,y): x loves y\n\nProblem 2: Using universal domain: Some apples are organic.\nPredicates:\n- F(x): x is a apples\n- G(x): x are organic\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Every person has someone they love. (Domain: people)", "predicates": {"F(x,y)": "x loves y"}, "correct_answer": "AxEyF(x,y)"}, {"description": "Using universal domain: Some apples are organic.", "predicates": {"F(x)": "x is a apples", "G(x)": "x are organic"}, "correct_answer": "Ex(F(x)&G(x))"}], "answer_format": "[[answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProblem 2: Neither d nor b is G\nPredicates:\n- G(b): b has property G\n- G(d): d has property G\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Neither d nor b is G", "predicates": {"G(d)": "d has property G", "G(b)": "b has property G"}, "correct_answer": "G(d)&G(b)"}], "answer_format": "[[answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Symbolize: Some humans are smarter than all animals.\nPredicates:\n- F(x): x is a humans\n- G(y): y is a animals\n- H(x,y): x is smarter than y\n\nProblem 2: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProblem 3: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProblem 4: Symbolize: Some students are older than all teachers.\nPredicates:\n- F(x): x is a students\n- G(y): y is a teachers\n- H(x,y): x is older than y\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Symbolize: Some humans are smarter than all animals.", "predicates": {"F(x)": "x is a humans", "G(y)": "y is a animals", "H(x,y)": "x is smarter than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}, {"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Symbolize: Some students are older than all teachers.", "predicates": {"F(x)": "x is a students", "G(y)": "y is a teachers", "H(x,y)": "x is older than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}], "answer_format": "[[answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Using universal domain: All humans breathe.\nPredicates:\n- F(x): x is a humans\n- G(x): x breathe\n\nProblem 2: Neither a nor c is G\nPredicates:\n- G(a): a has property G\n- G(c): c has property G\n\nProblem 3: Using universal domain: All birds fly.\nPredicates:\n- F(x): x is a birds\n- G(x): x fly\n\nProblem 4: Every person has someone they love. (Domain: people)\nPredicates:\n- F(x,y): x loves y\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Using universal domain: All humans breathe.", "predicates": {"F(x)": "x is a humans", "G(x)": "x breathe"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Neither a nor c is G", "predicates": {"G(a)": "a has property G", "G(c)": "c has property G"}, "correct_answer": "G(a)&G(c)"}, {"description": "Using universal domain: All birds fly.", "predicates": {"F(x)": "x is a birds", "G(x)": "x fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Every person has someone they love. (Domain: people)", "predicates": {"F(x,y)": "x loves y"}, "correct_answer": "AxEyF(x,y)"}], "answer_format": "[[answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProblem 2: Every person has someone they love. (Domain: people)\nPredicates:\n- F(x,y): x loves y\n\nProblem 3: Every person has someone they love. (Domain: people)\nPredicates:\n- F(x,y): x loves y\n\nProblem 4: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Every person has someone they love. (Domain: people)", "predicates": {"F(x,y)": "x loves y"}, "correct_answer": "AxEyF(x,y)"}, {"description": "Every person has someone they love. (Domain: people)", "predicates": {"F(x,y)": "x loves y"}, "correct_answer": "AxEyF(x,y)"}, {"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}], "answer_format": "[[answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProblem 2: Symbolize: Some students are older than all teachers.\nPredicates:\n- F(x): x is a students\n- G(y): y is a teachers\n- H(x,y): x is older than y\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Symbolize: Some students are older than all teachers.", "predicates": {"F(x)": "x is a students", "G(y)": "y is a teachers", "H(x,y)": "x is older than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}], "answer_format": "[[answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProblem 2: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProblem 3: Using universal domain: All birds have feathers.\nPredicates:\n- F(x): x is a birds\n- G(x): x have feathers\n\nProblem 4: Symbolize: Some students are older than all teachers.\nPredicates:\n- F(x): x is a students\n- G(y): y is a teachers\n- H(x,y): x is older than y\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Using universal domain: All birds have feathers.", "predicates": {"F(x)": "x is a birds", "G(x)": "x have feathers"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Symbolize: Some students are older than all teachers.", "predicates": {"F(x)": "x is a students", "G(y)": "y is a teachers", "H(x,y)": "x is older than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}], "answer_format": "[[answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: a is both H and F\nPredicates:\n- F(a): a has property F\n- H(a): a has property H\n\nProblem 2: Using universal domain: Some rabbits run fast.\nPredicates:\n- F(x): x is a rabbits\n- G(x): x run fast\n\nProblem 3: Using universal domain: All birds have feathers.\nPredicates:\n- F(x): x is a birds\n- G(x): x have feathers\n\nProblem 4: Every person has someone they love. (Domain: people)\nPredicates:\n- F(x,y): x loves y\n\nProblem 5: Using universal domain: Some cars have turbo engines.\nPredicates:\n- F(x): x is a cars\n- G(x): x have turbo engines\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "a is both H and F", "predicates": {"H(a)": "a has property H", "F(a)": "a has property F"}, "correct_answer": "H(a)&F(a)"}, {"description": "Using universal domain: Some rabbits run fast.", "predicates": {"F(x)": "x is a rabbits", "G(x)": "x run fast"}, "correct_answer": "Ex(F(x)&G(x))"}, {"description": "Using universal domain: All birds have feathers.", "predicates": {"F(x)": "x is a birds", "G(x)": "x have feathers"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Every person has someone they love. (Domain: people)", "predicates": {"F(x,y)": "x loves y"}, "correct_answer": "AxEyF(x,y)"}, {"description": "Using universal domain: Some cars have turbo engines.", "predicates": {"F(x)": "x is a cars", "G(x)": "x have turbo engines"}, "correct_answer": "Ex(F(x)&G(x))"}], "answer_format": "[[answer;answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Using universal domain: All birds have feathers.\nPredicates:\n- F(x): x is a birds\n- G(x): x have feathers\n\nProblem 2: Using universal domain: All humans are mortal.\nPredicates:\n- F(x): x is a humans\n- G(x): x are mortal\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Using universal domain: All birds have feathers.", "predicates": {"F(x)": "x is a birds", "G(x)": "x have feathers"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Using universal domain: All humans are mortal.", "predicates": {"F(x)": "x is a humans", "G(x)": "x are mortal"}, "correct_answer": "Ax(F(x)⇒G(x))"}], "answer_format": "[[answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProblem 2: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProblem 3: Every person has someone they love. (Domain: people)\nPredicates:\n- F(x,y): x loves y\n\nProblem 4: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Every person has someone they love. (Domain: people)", "predicates": {"F(x,y)": "x loves y"}, "correct_answer": "AxEyF(x,y)"}, {"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}], "answer_format": "[[answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: a is both F and H\nPredicates:\n- F(a): a has property F\n- H(a): a has property H\n\nProblem 2: Symbolize: Some students are older than all teachers.\nPredicates:\n- F(x): x is a students\n- G(y): y is a teachers\n- H(x,y): x is older than y\n\nProblem 3: Using universal domain: Some rabbits run fast.\nPredicates:\n- F(x): x is a rabbits\n- G(x): x run fast\n\nProblem 4: Symbolize: Some humans are smarter than all animals.\nPredicates:\n- F(x): x is a humans\n- G(y): y is a animals\n- H(x,y): x is smarter than y\n\nProblem 5: Using universal domain: All humans are mortal.\nPredicates:\n- F(x): x is a humans\n- G(x): x are mortal\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "a is both F and H", "predicates": {"F(a)": "a has property F", "H(a)": "a has property H"}, "correct_answer": "F(a)&H(a)"}, {"description": "Symbolize: Some students are older than all teachers.", "predicates": {"F(x)": "x is a students", "G(y)": "y is a teachers", "H(x,y)": "x is older than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}, {"description": "Using universal domain: Some rabbits run fast.", "predicates": {"F(x)": "x is a rabbits", "G(x)": "x run fast"}, "correct_answer": "Ex(F(x)&G(x))"}, {"description": "Symbolize: Some humans are smarter than all animals.", "predicates": {"F(x)": "x is a humans", "G(y)": "y is a animals", "H(x,y)": "x is smarter than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}, {"description": "Using universal domain: All humans are mortal.", "predicates": {"F(x)": "x is a humans", "G(x)": "x are mortal"}, "correct_answer": "Ax(F(x)⇒G(x))"}], "answer_format": "[[answer;answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Symbolize: Some rabbits are faster than all turtles.\nPredicates:\n- F(x): x is a rabbits\n- G(y): y is a turtles\n- H(x,y): x is faster than y\n\nProblem 2: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProblem 3: Every person has someone they love. (Domain: people)\nPredicates:\n- F(x,y): x loves y\n\nProblem 4: Symbolize: Some rabbits are faster than all turtles.\nPredicates:\n- F(x): x is a rabbits\n- G(y): y is a turtles\n- H(x,y): x is faster than y\n\nProblem 5: d is both H and G\nPredicates:\n- G(d): d has property G\n- H(d): d has property H\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Symbolize: Some rabbits are faster than all turtles.", "predicates": {"F(x)": "x is a rabbits", "G(y)": "y is a turtles", "H(x,y)": "x is faster than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}, {"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Every person has someone they love. (Domain: people)", "predicates": {"F(x,y)": "x loves y"}, "correct_answer": "AxEyF(x,y)"}, {"description": "Symbolize: Some rabbits are faster than all turtles.", "predicates": {"F(x)": "x is a rabbits", "G(y)": "y is a turtles", "H(x,y)": "x is faster than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}, {"description": "d is both H and G", "predicates": {"H(d)": "d has property H", "G(d)": "d has property G"}, "correct_answer": "H(d)&G(d)"}], "answer_format": "[[answer;answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Using universal domain: All prime numbers are even.\nPredicates:\n- F(x): x is a prime numbers\n- G(x): x are even\n\nProblem 2: Every person has someone they love. (Domain: people)\nPredicates:\n- F(x,y): x loves y\n\nProblem 3: Using universal domain: Some turtles have hard shells.\nPredicates:\n- F(x): x is a turtles\n- G(x): x have hard shells\n\nProblem 4: Using universal domain: Some turtles swim slowly.\nPredicates:\n- F(x): x is a turtles\n- G(x): x swim slowly\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Using universal domain: All prime numbers are even.", "predicates": {"F(x)": "x is a prime numbers", "G(x)": "x are even"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Every person has someone they love. (Domain: people)", "predicates": {"F(x,y)": "x loves y"}, "correct_answer": "AxEyF(x,y)"}, {"description": "Using universal domain: Some turtles have hard shells.", "predicates": {"F(x)": "x is a turtles", "G(x)": "x have hard shells"}, "correct_answer": "Ex(F(x)&G(x))"}, {"description": "Using universal domain: Some turtles swim slowly.", "predicates": {"F(x)": "x is a turtles", "G(x)": "x swim slowly"}, "correct_answer": "Ex(F(x)&G(x))"}], "answer_format": "[[answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Symbolize: Some humans are smarter than all animals.\nPredicates:\n- F(x): x is a humans\n- G(y): y is a animals\n- H(x,y): x is smarter than y\n\nProblem 2: Using universal domain: All prime numbers are greater than 2.\nPredicates:\n- F(x): x is a prime numbers\n- G(x): x are greater than 2\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Symbolize: Some humans are smarter than all animals.", "predicates": {"F(x)": "x is a humans", "G(y)": "y is a animals", "H(x,y)": "x is smarter than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}, {"description": "Using universal domain: All prime numbers are greater than 2.", "predicates": {"F(x)": "x is a prime numbers", "G(x)": "x are greater than 2"}, "correct_answer": "Ax(F(x)⇒G(x))"}], "answer_format": "[[answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Symbolize: Some humans are smarter than all animals.\nPredicates:\n- F(x): x is a humans\n- G(y): y is a animals\n- H(x,y): x is smarter than y\n\nProblem 2: Using universal domain: Some turtles swim slowly.\nPredicates:\n- F(x): x is a turtles\n- G(x): x swim slowly\n\nProblem 3: Symbolize: Some humans are smarter than all animals.\nPredicates:\n- F(x): x is a humans\n- G(y): y is a animals\n- H(x,y): x is smarter than y\n\nProblem 4: Every person has someone they love. (Domain: people)\nPredicates:\n- F(x,y): x loves y\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Symbolize: Some humans are smarter than all animals.", "predicates": {"F(x)": "x is a humans", "G(y)": "y is a animals", "H(x,y)": "x is smarter than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}, {"description": "Using universal domain: Some turtles swim slowly.", "predicates": {"F(x)": "x is a turtles", "G(x)": "x swim slowly"}, "correct_answer": "Ex(F(x)&G(x))"}, {"description": "Symbolize: Some humans are smarter than all animals.", "predicates": {"F(x)": "x is a humans", "G(y)": "y is a animals", "H(x,y)": "x is smarter than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}, {"description": "Every person has someone they love. (Domain: people)", "predicates": {"F(x,y)": "x loves y"}, "correct_answer": "AxEyF(x,y)"}], "answer_format": "[[answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Every person has someone they love. (Domain: people)\nPredicates:\n- F(x,y): x loves y\n\nProblem 2: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProblem 3: Using universal domain: Some rabbits have long ears.\nPredicates:\n- F(x): x is a rabbits\n- G(x): x have long ears\n\nProblem 4: Using universal domain: All birds have feathers.\nPredicates:\n- F(x): x is a birds\n- G(x): x have feathers\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Every person has someone they love. (Domain: people)", "predicates": {"F(x,y)": "x loves y"}, "correct_answer": "AxEyF(x,y)"}, {"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Using universal domain: Some rabbits have long ears.", "predicates": {"F(x)": "x is a rabbits", "G(x)": "x have long ears"}, "correct_answer": "Ex(F(x)&G(x))"}, {"description": "Using universal domain: All birds have feathers.", "predicates": {"F(x)": "x is a birds", "G(x)": "x have feathers"}, "correct_answer": "Ax(F(x)⇒G(x))"}], "answer_format": "[[answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Either c is G or b is G\nPredicates:\n- G(b): b has property G\n- G(c): c has property G\n\nProblem 2: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Either c is G or b is G", "predicates": {"G(c)": "c has property G", "G(b)": "b has property G"}, "correct_answer": "G(c)|G(b)"}, {"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}], "answer_format": "[[answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Symbolize: Some rabbits are faster than all turtles.\nPredicates:\n- F(x): x is a rabbits\n- G(y): y is a turtles\n- H(x,y): x is faster than y\n\nProblem 2: Symbolize: Some students are older than all teachers.\nPredicates:\n- F(x): x is a students\n- G(y): y is a teachers\n- H(x,y): x is older than y\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Symbolize: Some rabbits are faster than all turtles.", "predicates": {"F(x)": "x is a rabbits", "G(y)": "y is a turtles", "H(x,y)": "x is faster than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}, {"description": "Symbolize: Some students are older than all teachers.", "predicates": {"F(x)": "x is a students", "G(y)": "y is a teachers", "H(x,y)": "x is older than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}], "answer_format": "[[answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Using universal domain: Some rabbits have long ears.\nPredicates:\n- F(x): x is a rabbits\n- G(x): x have long ears\n\nProblem 2: Using universal domain: Some turtles swim slowly.\nPredicates:\n- F(x): x is a turtles\n- G(x): x swim slowly\n\nProblem 3: Using universal domain: All prime numbers are greater than 2.\nPredicates:\n- F(x): x is a prime numbers\n- G(x): x are greater than 2\n\nProblem 4: Symbolize: Some students are older than all teachers.\nPredicates:\n- F(x): x is a students\n- G(y): y is a teachers\n- H(x,y): x is older than y\n\nProblem 5: If b is G then a is G\nPredicates:\n- G(a): a has property G\n- G(b): b has property G\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Using universal domain: Some rabbits have long ears.", "predicates": {"F(x)": "x is a rabbits", "G(x)": "x have long ears"}, "correct_answer": "Ex(F(x)&G(x))"}, {"description": "Using universal domain: Some turtles swim slowly.", "predicates": {"F(x)": "x is a turtles", "G(x)": "x swim slowly"}, "correct_answer": "Ex(F(x)&G(x))"}, {"description": "Using universal domain: All prime numbers are greater than 2.", "predicates": {"F(x)": "x is a prime numbers", "G(x)": "x are greater than 2"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Symbolize: Some students are older than all teachers.", "predicates": {"F(x)": "x is a students", "G(y)": "y is a teachers", "H(x,y)": "x is older than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}, {"description": "If b is G then a is G", "predicates": {"G(b)": "b has property G", "G(a)": "a has property G"}, "correct_answer": "G(b)⇒G(a)"}], "answer_format": "[[answer;answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Every person has someone they love. (Domain: people)\nPredicates:\n- F(x,y): x loves y\n\nProblem 2: Symbolize: Some rabbits are faster than all turtles.\nPredicates:\n- F(x): x is a rabbits\n- G(y): y is a turtles\n- H(x,y): x is faster than y\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Every person has someone they love. (Domain: people)", "predicates": {"F(x,y)": "x loves y"}, "correct_answer": "AxEyF(x,y)"}, {"description": "Symbolize: Some rabbits are faster than all turtles.", "predicates": {"F(x)": "x is a rabbits", "G(y)": "y is a turtles", "H(x,y)": "x is faster than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}], "answer_format": "[[answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Symbolize: Some rabbits are faster than all turtles.\nPredicates:\n- F(x): x is a rabbits\n- G(y): y is a turtles\n- H(x,y): x is faster than y\n\nProblem 2: Neither a nor c is F\nPredicates:\n- F(a): a has property F\n- F(c): c has property F\n\nProblem 3: b is both G and H\nPredicates:\n- G(b): b has property G\n- H(b): b has property H\n\nProblem 4: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProblem 5: Using universal domain: All birds fly.\nPredicates:\n- F(x): x is a birds\n- G(x): x fly\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Symbolize: Some rabbits are faster than all turtles.", "predicates": {"F(x)": "x is a rabbits", "G(y)": "y is a turtles", "H(x,y)": "x is faster than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}, {"description": "Neither a nor c is F", "predicates": {"F(a)": "a has property F", "F(c)": "c has property F"}, "correct_answer": "F(a)&F(c)"}, {"description": "b is both G and H", "predicates": {"G(b)": "b has property G", "H(b)": "b has property H"}, "correct_answer": "G(b)&H(b)"}, {"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Using universal domain: All birds fly.", "predicates": {"F(x)": "x is a birds", "G(x)": "x fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}], "answer_format": "[[answer;answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Symbolize: Some humans are smarter than all animals.\nPredicates:\n- F(x): x is a humans\n- G(y): y is a animals\n- H(x,y): x is smarter than y\n\nProblem 2: Symbolize: Some rabbits are faster than all turtles.\nPredicates:\n- F(x): x is a rabbits\n- G(y): y is a turtles\n- H(x,y): x is faster than y\n\nProblem 3: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProblem 4: Using universal domain: All birds fly.\nPredicates:\n- F(x): x is a birds\n- G(x): x fly\n\nProblem 5: Using universal domain: Some cars have turbo engines.\nPredicates:\n- F(x): x is a cars\n- G(x): x have turbo engines\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Symbolize: Some humans are smarter than all animals.", "predicates": {"F(x)": "x is a humans", "G(y)": "y is a animals", "H(x,y)": "x is smarter than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}, {"description": "Symbolize: Some rabbits are faster than all turtles.", "predicates": {"F(x)": "x is a rabbits", "G(y)": "y is a turtles", "H(x,y)": "x is faster than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}, {"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Using universal domain: All birds fly.", "predicates": {"F(x)": "x is a birds", "G(x)": "x fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Using universal domain: Some cars have turbo engines.", "predicates": {"F(x)": "x is a cars", "G(x)": "x have turbo engines"}, "correct_answer": "Ex(F(x)&G(x))"}], "answer_format": "[[answer;answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Every person has someone they love. (Domain: people)\nPredicates:\n- F(x,y): x loves y\n\nProblem 2: If c is F then d is F\nPredicates:\n- F(c): c has property F\n- F(d): d has property F\n\nProblem 3: Neither c nor b is F\nPredicates:\n- F(b): b has property F\n- F(c): c has property F\n\nProblem 4: Every person has someone they love. (Domain: people)\nPredicates:\n- F(x,y): x loves y\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Every person has someone they love. (Domain: people)", "predicates": {"F(x,y)": "x loves y"}, "correct_answer": "AxEyF(x,y)"}, {"description": "If c is F then d is F", "predicates": {"F(c)": "c has property F", "F(d)": "d has property F"}, "correct_answer": "F(c)⇒F(d)"}, {"description": "Neither c nor b is F", "predicates": {"F(c)": "c has property F", "F(b)": "b has property F"}, "correct_answer": "F(c)&F(b)"}, {"description": "Every person has someone they love. (Domain: people)", "predicates": {"F(x,y)": "x loves y"}, "correct_answer": "AxEyF(x,y)"}], "answer_format": "[[answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProblem 2: Using universal domain: Some cars are red.\nPredicates:\n- F(x): x is a cars\n- G(x): x are red\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Using universal domain: Some cars are red.", "predicates": {"F(x)": "x is a cars", "G(x)": "x are red"}, "correct_answer": "Ex(F(x)&G(x))"}], "answer_format": "[[answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Symbolize: Some humans are smarter than all animals.\nPredicates:\n- F(x): x is a humans\n- G(y): y is a animals\n- H(x,y): x is smarter than y\n\nProblem 2: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProblem 3: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProblem 4: c is both G and H\nPredicates:\n- G(c): c has property G\n- H(c): c has property H\n\nProblem 5: Using universal domain: All students attend classes.\nPredicates:\n- F(x): x is a students\n- G(x): x attend classes\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Symbolize: Some humans are smarter than all animals.", "predicates": {"F(x)": "x is a humans", "G(y)": "y is a animals", "H(x,y)": "x is smarter than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}, {"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "c is both G and H", "predicates": {"G(c)": "c has property G", "H(c)": "c has property H"}, "correct_answer": "G(c)&H(c)"}, {"description": "Using universal domain: All students attend classes.", "predicates": {"F(x)": "x is a students", "G(x)": "x attend classes"}, "correct_answer": "Ax(F(x)⇒G(x))"}], "answer_format": "[[answer;answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Using universal domain: Some apples are organic.\nPredicates:\n- F(x): x is a apples\n- G(x): x are organic\n\nProblem 2: b is both H and F\nPredicates:\n- F(b): b has property F\n- H(b): b has property H\n\nProblem 3: Symbolize: Some rabbits are faster than all turtles.\nPredicates:\n- F(x): x is a rabbits\n- G(y): y is a turtles\n- H(x,y): x is faster than y\n\nProblem 4: Every person has someone they love. (Domain: people)\nPredicates:\n- F(x,y): x loves y\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Using universal domain: Some apples are organic.", "predicates": {"F(x)": "x is a apples", "G(x)": "x are organic"}, "correct_answer": "Ex(F(x)&G(x))"}, {"description": "b is both H and F", "predicates": {"H(b)": "b has property H", "F(b)": "b has property F"}, "correct_answer": "H(b)&F(b)"}, {"description": "Symbolize: Some rabbits are faster than all turtles.", "predicates": {"F(x)": "x is a rabbits", "G(y)": "y is a turtles", "H(x,y)": "x is faster than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}, {"description": "Every person has someone they love. (Domain: people)", "predicates": {"F(x,y)": "x loves y"}, "correct_answer": "AxEyF(x,y)"}], "answer_format": "[[answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Symbolize: Some rabbits are faster than all turtles.\nPredicates:\n- F(x): x is a rabbits\n- G(y): y is a turtles\n- H(x,y): x is faster than y\n\nProblem 2: Every person has someone they love. (Domain: people)\nPredicates:\n- F(x,y): x loves y\n\nProblem 3: Every person has someone they love. (Domain: people)\nPredicates:\n- F(x,y): x loves y\n\nProblem 4: Symbolize: Some rabbits are faster than all turtles.\nPredicates:\n- F(x): x is a rabbits\n- G(y): y is a turtles\n- H(x,y): x is faster than y\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Symbolize: Some rabbits are faster than all turtles.", "predicates": {"F(x)": "x is a rabbits", "G(y)": "y is a turtles", "H(x,y)": "x is faster than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}, {"description": "Every person has someone they love. (Domain: people)", "predicates": {"F(x,y)": "x loves y"}, "correct_answer": "AxEyF(x,y)"}, {"description": "Every person has someone they love. (Domain: people)", "predicates": {"F(x,y)": "x loves y"}, "correct_answer": "AxEyF(x,y)"}, {"description": "Symbolize: Some rabbits are faster than all turtles.", "predicates": {"F(x)": "x is a rabbits", "G(y)": "y is a turtles", "H(x,y)": "x is faster than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}], "answer_format": "[[answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Using universal domain: Some apples are organic.\nPredicates:\n- F(x): x is a apples\n- G(x): x are organic\n\nProblem 2: Using universal domain: Some rabbits run fast.\nPredicates:\n- F(x): x is a rabbits\n- G(x): x run fast\n\nProblem 3: Using universal domain: Some turtles swim slowly.\nPredicates:\n- F(x): x is a turtles\n- G(x): x swim slowly\n\nProblem 4: Using universal domain: All students attend classes.\nPredicates:\n- F(x): x is a students\n- G(x): x attend classes\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Using universal domain: Some apples are organic.", "predicates": {"F(x)": "x is a apples", "G(x)": "x are organic"}, "correct_answer": "Ex(F(x)&G(x))"}, {"description": "Using universal domain: Some rabbits run fast.", "predicates": {"F(x)": "x is a rabbits", "G(x)": "x run fast"}, "correct_answer": "Ex(F(x)&G(x))"}, {"description": "Using universal domain: Some turtles swim slowly.", "predicates": {"F(x)": "x is a turtles", "G(x)": "x swim slowly"}, "correct_answer": "Ex(F(x)&G(x))"}, {"description": "Using universal domain: All students attend classes.", "predicates": {"F(x)": "x is a students", "G(x)": "x attend classes"}, "correct_answer": "Ax(F(x)⇒G(x))"}], "answer_format": "[[answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Every person has someone they love. (Domain: people)\nPredicates:\n- F(x,y): x loves y\n\nProblem 2: Every person has someone they love. (Domain: people)\nPredicates:\n- F(x,y): x loves y\n\nProblem 3: Symbolize: Some rabbits are faster than all turtles.\nPredicates:\n- F(x): x is a rabbits\n- G(y): y is a turtles\n- H(x,y): x is faster than y\n\nProblem 4: Using universal domain: Some turtles swim slowly.\nPredicates:\n- F(x): x is a turtles\n- G(x): x swim slowly\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Every person has someone they love. (Domain: people)", "predicates": {"F(x,y)": "x loves y"}, "correct_answer": "AxEyF(x,y)"}, {"description": "Every person has someone they love. (Domain: people)", "predicates": {"F(x,y)": "x loves y"}, "correct_answer": "AxEyF(x,y)"}, {"description": "Symbolize: Some rabbits are faster than all turtles.", "predicates": {"F(x)": "x is a rabbits", "G(y)": "y is a turtles", "H(x,y)": "x is faster than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}, {"description": "Using universal domain: Some turtles swim slowly.", "predicates": {"F(x)": "x is a turtles", "G(x)": "x swim slowly"}, "correct_answer": "Ex(F(x)&G(x))"}], "answer_format": "[[answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: b is both F and G\nPredicates:\n- F(b): b has property F\n- G(b): b has property G\n\nProblem 2: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProblem 3: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProblem 4: Using universal domain: Some rabbits run fast.\nPredicates:\n- F(x): x is a rabbits\n- G(x): x run fast\n\nProblem 5: Either b is F or d is F\nPredicates:\n- F(b): b has property F\n- F(d): d has property F\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "b is both F and G", "predicates": {"F(b)": "b has property F", "G(b)": "b has property G"}, "correct_answer": "F(b)&G(b)"}, {"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Using universal domain: Some rabbits run fast.", "predicates": {"F(x)": "x is a rabbits", "G(x)": "x run fast"}, "correct_answer": "Ex(F(x)&G(x))"}, {"description": "Either b is F or d is F", "predicates": {"F(b)": "b has property F", "F(d)": "d has property F"}, "correct_answer": "F(b)|F(d)"}], "answer_format": "[[answer;answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Using universal domain: Some cars have turbo engines.\nPredicates:\n- F(x): x is a cars\n- G(x): x have turbo engines\n\nProblem 2: Every person has someone they love. (Domain: people)\nPredicates:\n- F(x,y): x loves y\n\nProblem 3: Symbolize: Some rabbits are faster than all turtles.\nPredicates:\n- F(x): x is a rabbits\n- G(y): y is a turtles\n- H(x,y): x is faster than y\n\nProblem 4: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProblem 5: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Using universal domain: Some cars have turbo engines.", "predicates": {"F(x)": "x is a cars", "G(x)": "x have turbo engines"}, "correct_answer": "Ex(F(x)&G(x))"}, {"description": "Every person has someone they love. (Domain: people)", "predicates": {"F(x,y)": "x loves y"}, "correct_answer": "AxEyF(x,y)"}, {"description": "Symbolize: Some rabbits are faster than all turtles.", "predicates": {"F(x)": "x is a rabbits", "G(y)": "y is a turtles", "H(x,y)": "x is faster than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}, {"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}], "answer_format": "[[answer;answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Symbolize: Some rabbits are faster than all turtles.\nPredicates:\n- F(x): x is a rabbits\n- G(y): y is a turtles\n- H(x,y): x is faster than y\n\nProblem 2: Using universal domain: Some apples are sweet.\nPredicates:\n- F(x): x is a apples\n- G(x): x are sweet\n\nProblem 3: Every person has someone they love. (Domain: people)\nPredicates:\n- F(x,y): x loves y\n\nProblem 4: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProblem 5: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Symbolize: Some rabbits are faster than all turtles.", "predicates": {"F(x)": "x is a rabbits", "G(y)": "y is a turtles", "H(x,y)": "x is faster than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}, {"description": "Using universal domain: Some apples are sweet.", "predicates": {"F(x)": "x is a apples", "G(x)": "x are sweet"}, "correct_answer": "Ex(F(x)&G(x))"}, {"description": "Every person has someone they love. (Domain: people)", "predicates": {"F(x,y)": "x loves y"}, "correct_answer": "AxEyF(x,y)"}, {"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}], "answer_format": "[[answer;answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProblem 2: Symbolize: Some humans are smarter than all animals.\nPredicates:\n- F(x): x is a humans\n- G(y): y is a animals\n- H(x,y): x is smarter than y\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Symbolize: Some humans are smarter than all animals.", "predicates": {"F(x)": "x is a humans", "G(y)": "y is a animals", "H(x,y)": "x is smarter than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}], "answer_format": "[[answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Using universal domain: Some apples are organic.\nPredicates:\n- F(x): x is a apples\n- G(x): x are organic\n\nProblem 2: Using universal domain: All birds have feathers.\nPredicates:\n- F(x): x is a birds\n- G(x): x have feathers\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Using universal domain: Some apples are organic.", "predicates": {"F(x)": "x is a apples", "G(x)": "x are organic"}, "correct_answer": "Ex(F(x)&G(x))"}, {"description": "Using universal domain: All birds have feathers.", "predicates": {"F(x)": "x is a birds", "G(x)": "x have feathers"}, "correct_answer": "Ax(F(x)⇒G(x))"}], "answer_format": "[[answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Every person has someone they love. (Domain: people)\nPredicates:\n- F(x,y): x loves y\n\nProblem 2: Every person has someone they love. (Domain: people)\nPredicates:\n- F(x,y): x loves y\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Every person has someone they love. (Domain: people)", "predicates": {"F(x,y)": "x loves y"}, "correct_answer": "AxEyF(x,y)"}, {"description": "Every person has someone they love. (Domain: people)", "predicates": {"F(x,y)": "x loves y"}, "correct_answer": "AxEyF(x,y)"}], "answer_format": "[[answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Using universal domain: All prime numbers are even.\nPredicates:\n- F(x): x is a prime numbers\n- G(x): x are even\n\nProblem 2: Neither a nor b is G\nPredicates:\n- G(a): a has property G\n- G(b): b has property G\n\nProblem 3: Using universal domain: All birds fly.\nPredicates:\n- F(x): x is a birds\n- G(x): x fly\n\nProblem 4: Using universal domain: All humans are mortal.\nPredicates:\n- F(x): x is a humans\n- G(x): x are mortal\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Using universal domain: All prime numbers are even.", "predicates": {"F(x)": "x is a prime numbers", "G(x)": "x are even"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Neither a nor b is G", "predicates": {"G(a)": "a has property G", "G(b)": "b has property G"}, "correct_answer": "G(a)&G(b)"}, {"description": "Using universal domain: All birds fly.", "predicates": {"F(x)": "x is a birds", "G(x)": "x fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Using universal domain: All humans are mortal.", "predicates": {"F(x)": "x is a humans", "G(x)": "x are mortal"}, "correct_answer": "Ax(F(x)⇒G(x))"}], "answer_format": "[[answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Every person has someone they love. (Domain: people)\nPredicates:\n- F(x,y): x loves y\n\nProblem 2: Every person has someone they love. (Domain: people)\nPredicates:\n- F(x,y): x loves y\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Every person has someone they love. (Domain: people)", "predicates": {"F(x,y)": "x loves y"}, "correct_answer": "AxEyF(x,y)"}, {"description": "Every person has someone they love. (Domain: people)", "predicates": {"F(x,y)": "x loves y"}, "correct_answer": "AxEyF(x,y)"}], "answer_format": "[[answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Symbolize: Some rabbits are faster than all turtles.\nPredicates:\n- F(x): x is a rabbits\n- G(y): y is a turtles\n- H(x,y): x is faster than y\n\nProblem 2: Every person has someone they love. (Domain: people)\nPredicates:\n- F(x,y): x loves y\n\nProblem 3: Every person has someone they love. (Domain: people)\nPredicates:\n- F(x,y): x loves y\n\nProblem 4: Symbolize: Some students are older than all teachers.\nPredicates:\n- F(x): x is a students\n- G(y): y is a teachers\n- H(x,y): x is older than y\n\nProblem 5: Using universal domain: All humans are mortal.\nPredicates:\n- F(x): x is a humans\n- G(x): x are mortal\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Symbolize: Some rabbits are faster than all turtles.", "predicates": {"F(x)": "x is a rabbits", "G(y)": "y is a turtles", "H(x,y)": "x is faster than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}, {"description": "Every person has someone they love. (Domain: people)", "predicates": {"F(x,y)": "x loves y"}, "correct_answer": "AxEyF(x,y)"}, {"description": "Every person has someone they love. (Domain: people)", "predicates": {"F(x,y)": "x loves y"}, "correct_answer": "AxEyF(x,y)"}, {"description": "Symbolize: Some students are older than all teachers.", "predicates": {"F(x)": "x is a students", "G(y)": "y is a teachers", "H(x,y)": "x is older than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}, {"description": "Using universal domain: All humans are mortal.", "predicates": {"F(x)": "x is a humans", "G(x)": "x are mortal"}, "correct_answer": "Ax(F(x)⇒G(x))"}], "answer_format": "[[answer;answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Every person has someone they love. (Domain: people)\nPredicates:\n- F(x,y): x loves y\n\nProblem 2: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Every person has someone they love. (Domain: people)", "predicates": {"F(x,y)": "x loves y"}, "correct_answer": "AxEyF(x,y)"}, {"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}], "answer_format": "[[answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Using universal domain: Some apples are organic.\nPredicates:\n- F(x): x is a apples\n- G(x): x are organic\n\nProblem 2: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProblem 3: c is both G and F\nPredicates:\n- F(c): c has property F\n- G(c): c has property G\n\nProblem 4: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Using universal domain: Some apples are organic.", "predicates": {"F(x)": "x is a apples", "G(x)": "x are organic"}, "correct_answer": "Ex(F(x)&G(x))"}, {"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "c is both G and F", "predicates": {"G(c)": "c has property G", "F(c)": "c has property F"}, "correct_answer": "G(c)&F(c)"}, {"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}], "answer_format": "[[answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Using universal domain: Some apples are sweet.\nPredicates:\n- F(x): x is a apples\n- G(x): x are sweet\n\nProblem 2: Using universal domain: All prime numbers are even.\nPredicates:\n- F(x): x is a prime numbers\n- G(x): x are even\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Using universal domain: Some apples are sweet.", "predicates": {"F(x)": "x is a apples", "G(x)": "x are sweet"}, "correct_answer": "Ex(F(x)&G(x))"}, {"description": "Using universal domain: All prime numbers are even.", "predicates": {"F(x)": "x is a prime numbers", "G(x)": "x are even"}, "correct_answer": "Ax(F(x)⇒G(x))"}], "answer_format": "[[answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Every person has someone they love. (Domain: people)\nPredicates:\n- F(x,y): x loves y\n\nProblem 2: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Every person has someone they love. (Domain: people)", "predicates": {"F(x,y)": "x loves y"}, "correct_answer": "AxEyF(x,y)"}, {"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}], "answer_format": "[[answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProblem 2: Symbolize: Some students are older than all teachers.\nPredicates:\n- F(x): x is a students\n- G(y): y is a teachers\n- H(x,y): x is older than y\n\nProblem 3: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProblem 4: Using universal domain: Some rabbits run fast.\nPredicates:\n- F(x): x is a rabbits\n- G(x): x run fast\n\nProblem 5: Every person has someone they love. (Domain: people)\nPredicates:\n- F(x,y): x loves y\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Symbolize: Some students are older than all teachers.", "predicates": {"F(x)": "x is a students", "G(y)": "y is a teachers", "H(x,y)": "x is older than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}, {"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Using universal domain: Some rabbits run fast.", "predicates": {"F(x)": "x is a rabbits", "G(x)": "x run fast"}, "correct_answer": "Ex(F(x)&G(x))"}, {"description": "Every person has someone they love. (Domain: people)", "predicates": {"F(x,y)": "x loves y"}, "correct_answer": "AxEyF(x,y)"}], "answer_format": "[[answer;answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: If d is F then a is F\nPredicates:\n- F(a): a has property F\n- F(d): d has property F\n\nProblem 2: Using universal domain: All prime numbers are even.\nPredicates:\n- F(x): x is a prime numbers\n- G(x): x are even\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "If d is F then a is F", "predicates": {"F(d)": "d has property F", "F(a)": "a has property F"}, "correct_answer": "F(d)⇒F(a)"}, {"description": "Using universal domain: All prime numbers are even.", "predicates": {"F(x)": "x is a prime numbers", "G(x)": "x are even"}, "correct_answer": "Ax(F(x)⇒G(x))"}], "answer_format": "[[answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Every person has someone they love. (Domain: people)\nPredicates:\n- F(x,y): x loves y\n\nProblem 2: Symbolize: Some students are older than all teachers.\nPredicates:\n- F(x): x is a students\n- G(y): y is a teachers\n- H(x,y): x is older than y\n\nProblem 3: Symbolize: Some students are older than all teachers.\nPredicates:\n- F(x): x is a students\n- G(y): y is a teachers\n- H(x,y): x is older than y\n\nProblem 4: Using universal domain: All prime numbers are even.\nPredicates:\n- F(x): x is a prime numbers\n- G(x): x are even\n\nProblem 5: Symbolize: Some rabbits are faster than all turtles.\nPredicates:\n- F(x): x is a rabbits\n- G(y): y is a turtles\n- H(x,y): x is faster than y\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Every person has someone they love. (Domain: people)", "predicates": {"F(x,y)": "x loves y"}, "correct_answer": "AxEyF(x,y)"}, {"description": "Symbolize: Some students are older than all teachers.", "predicates": {"F(x)": "x is a students", "G(y)": "y is a teachers", "H(x,y)": "x is older than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}, {"description": "Symbolize: Some students are older than all teachers.", "predicates": {"F(x)": "x is a students", "G(y)": "y is a teachers", "H(x,y)": "x is older than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}, {"description": "Using universal domain: All prime numbers are even.", "predicates": {"F(x)": "x is a prime numbers", "G(x)": "x are even"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Symbolize: Some rabbits are faster than all turtles.", "predicates": {"F(x)": "x is a rabbits", "G(y)": "y is a turtles", "H(x,y)": "x is faster than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}], "answer_format": "[[answer;answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Using universal domain: All birds fly.\nPredicates:\n- F(x): x is a birds\n- G(x): x fly\n\nProblem 2: Symbolize: Some rabbits are faster than all turtles.\nPredicates:\n- F(x): x is a rabbits\n- G(y): y is a turtles\n- H(x,y): x is faster than y\n\nProblem 3: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProblem 4: Symbolize: Some humans are smarter than all animals.\nPredicates:\n- F(x): x is a humans\n- G(y): y is a animals\n- H(x,y): x is smarter than y\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Using universal domain: All birds fly.", "predicates": {"F(x)": "x is a birds", "G(x)": "x fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Symbolize: Some rabbits are faster than all turtles.", "predicates": {"F(x)": "x is a rabbits", "G(y)": "y is a turtles", "H(x,y)": "x is faster than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}, {"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Symbolize: Some humans are smarter than all animals.", "predicates": {"F(x)": "x is a humans", "G(y)": "y is a animals", "H(x,y)": "x is smarter than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}], "answer_format": "[[answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Using universal domain: All birds fly.\nPredicates:\n- F(x): x is a birds\n- G(x): x fly\n\nProblem 2: Neither d nor b is G\nPredicates:\n- G(b): b has property G\n- G(d): d has property G\n\nProblem 3: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProblem 4: Symbolize: Some rabbits are faster than all turtles.\nPredicates:\n- F(x): x is a rabbits\n- G(y): y is a turtles\n- H(x,y): x is faster than y\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Using universal domain: All birds fly.", "predicates": {"F(x)": "x is a birds", "G(x)": "x fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Neither d nor b is G", "predicates": {"G(d)": "d has property G", "G(b)": "b has property G"}, "correct_answer": "G(d)&G(b)"}, {"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Symbolize: Some rabbits are faster than all turtles.", "predicates": {"F(x)": "x is a rabbits", "G(y)": "y is a turtles", "H(x,y)": "x is faster than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}], "answer_format": "[[answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Using universal domain: Some apples are sweet.\nPredicates:\n- F(x): x is a apples\n- G(x): x are sweet\n\nProblem 2: Using universal domain: Some apples are organic.\nPredicates:\n- F(x): x is a apples\n- G(x): x are organic\n\nProblem 3: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProblem 4: Symbolize: Some humans are smarter than all animals.\nPredicates:\n- F(x): x is a humans\n- G(y): y is a animals\n- H(x,y): x is smarter than y\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Using universal domain: Some apples are sweet.", "predicates": {"F(x)": "x is a apples", "G(x)": "x are sweet"}, "correct_answer": "Ex(F(x)&G(x))"}, {"description": "Using universal domain: Some apples are organic.", "predicates": {"F(x)": "x is a apples", "G(x)": "x are organic"}, "correct_answer": "Ex(F(x)&G(x))"}, {"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Symbolize: Some humans are smarter than all animals.", "predicates": {"F(x)": "x is a humans", "G(y)": "y is a animals", "H(x,y)": "x is smarter than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}], "answer_format": "[[answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProblem 2: Every person has someone they love. (Domain: people)\nPredicates:\n- F(x,y): x loves y\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Every person has someone they love. (Domain: people)", "predicates": {"F(x,y)": "x loves y"}, "correct_answer": "AxEyF(x,y)"}], "answer_format": "[[answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Symbolize: Some rabbits are faster than all turtles.\nPredicates:\n- F(x): x is a rabbits\n- G(y): y is a turtles\n- H(x,y): x is faster than y\n\nProblem 2: Neither c nor d is F\nPredicates:\n- F(c): c has property F\n- F(d): d has property F\n\nProblem 3: Every person has someone they love. (Domain: people)\nPredicates:\n- F(x,y): x loves y\n\nProblem 4: Either d is G or a is G\nPredicates:\n- G(a): a has property G\n- G(d): d has property G\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Symbolize: Some rabbits are faster than all turtles.", "predicates": {"F(x)": "x is a rabbits", "G(y)": "y is a turtles", "H(x,y)": "x is faster than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}, {"description": "Neither c nor d is F", "predicates": {"F(c)": "c has property F", "F(d)": "d has property F"}, "correct_answer": "F(c)&F(d)"}, {"description": "Every person has someone they love. (Domain: people)", "predicates": {"F(x,y)": "x loves y"}, "correct_answer": "AxEyF(x,y)"}, {"description": "Either d is G or a is G", "predicates": {"G(d)": "d has property G", "G(a)": "a has property G"}, "correct_answer": "G(d)|G(a)"}], "answer_format": "[[answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Using universal domain: All humans are mortal.\nPredicates:\n- F(x): x is a humans\n- G(x): x are mortal\n\nProblem 2: Using universal domain: All humans breathe.\nPredicates:\n- F(x): x is a humans\n- G(x): x breathe\n\nProblem 3: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProblem 4: Using universal domain: All humans are mortal.\nPredicates:\n- F(x): x is a humans\n- G(x): x are mortal\n\nProblem 5: Symbolize: Some humans are smarter than all animals.\nPredicates:\n- F(x): x is a humans\n- G(y): y is a animals\n- H(x,y): x is smarter than y\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Using universal domain: All humans are mortal.", "predicates": {"F(x)": "x is a humans", "G(x)": "x are mortal"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Using universal domain: All humans breathe.", "predicates": {"F(x)": "x is a humans", "G(x)": "x breathe"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Using universal domain: All humans are mortal.", "predicates": {"F(x)": "x is a humans", "G(x)": "x are mortal"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Symbolize: Some humans are smarter than all animals.", "predicates": {"F(x)": "x is a humans", "G(y)": "y is a animals", "H(x,y)": "x is smarter than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}], "answer_format": "[[answer;answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProblem 2: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProblem 3: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProblem 4: Using universal domain: All birds fly.\nPredicates:\n- F(x): x is a birds\n- G(x): x fly\n\nProblem 5: Either b is F or c is F\nPredicates:\n- F(b): b has property F\n- F(c): c has property F\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Using universal domain: All birds fly.", "predicates": {"F(x)": "x is a birds", "G(x)": "x fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Either b is F or c is F", "predicates": {"F(b)": "b has property F", "F(c)": "c has property F"}, "correct_answer": "F(b)|F(c)"}], "answer_format": "[[answer;answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: If c is F then a is F\nPredicates:\n- F(a): a has property F\n- F(c): c has property F\n\nProblem 2: Using universal domain: Some rabbits run fast.\nPredicates:\n- F(x): x is a rabbits\n- G(x): x run fast\n\nProblem 3: Every person has someone they love. (Domain: people)\nPredicates:\n- F(x,y): x loves y\n\nProblem 4: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProblem 5: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "If c is F then a is F", "predicates": {"F(c)": "c has property F", "F(a)": "a has property F"}, "correct_answer": "F(c)⇒F(a)"}, {"description": "Using universal domain: Some rabbits run fast.", "predicates": {"F(x)": "x is a rabbits", "G(x)": "x run fast"}, "correct_answer": "Ex(F(x)&G(x))"}, {"description": "Every person has someone they love. (Domain: people)", "predicates": {"F(x,y)": "x loves y"}, "correct_answer": "AxEyF(x,y)"}, {"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}], "answer_format": "[[answer;answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProblem 2: Every person has someone they love. (Domain: people)\nPredicates:\n- F(x,y): x loves y\n\nProblem 3: c is both G and F\nPredicates:\n- F(c): c has property F\n- G(c): c has property G\n\nProblem 4: Using universal domain: All prime numbers are even.\nPredicates:\n- F(x): x is a prime numbers\n- G(x): x are even\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Every person has someone they love. (Domain: people)", "predicates": {"F(x,y)": "x loves y"}, "correct_answer": "AxEyF(x,y)"}, {"description": "c is both G and F", "predicates": {"G(c)": "c has property G", "F(c)": "c has property F"}, "correct_answer": "G(c)&F(c)"}, {"description": "Using universal domain: All prime numbers are even.", "predicates": {"F(x)": "x is a prime numbers", "G(x)": "x are even"}, "correct_answer": "Ax(F(x)⇒G(x))"}], "answer_format": "[[answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Using universal domain: All birds have feathers.\nPredicates:\n- F(x): x is a birds\n- G(x): x have feathers\n\nProblem 2: b is both H and F\nPredicates:\n- F(b): b has property F\n- H(b): b has property H\n\nProblem 3: Using universal domain: Some rabbits have long ears.\nPredicates:\n- F(x): x is a rabbits\n- G(x): x have long ears\n\nProblem 4: Every person has someone they love. (Domain: people)\nPredicates:\n- F(x,y): x loves y\n\nProblem 5: Using universal domain: Some apples are sweet.\nPredicates:\n- F(x): x is a apples\n- G(x): x are sweet\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Using universal domain: All birds have feathers.", "predicates": {"F(x)": "x is a birds", "G(x)": "x have feathers"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "b is both H and F", "predicates": {"H(b)": "b has property H", "F(b)": "b has property F"}, "correct_answer": "H(b)&F(b)"}, {"description": "Using universal domain: Some rabbits have long ears.", "predicates": {"F(x)": "x is a rabbits", "G(x)": "x have long ears"}, "correct_answer": "Ex(F(x)&G(x))"}, {"description": "Every person has someone they love. (Domain: people)", "predicates": {"F(x,y)": "x loves y"}, "correct_answer": "AxEyF(x,y)"}, {"description": "Using universal domain: Some apples are sweet.", "predicates": {"F(x)": "x is a apples", "G(x)": "x are sweet"}, "correct_answer": "Ex(F(x)&G(x))"}], "answer_format": "[[answer;answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Neither b nor a is F\nPredicates:\n- F(a): a has property F\n- F(b): b has property F\n\nProblem 2: Using universal domain: All students study hard.\nPredicates:\n- F(x): x is a students\n- G(x): x study hard\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Neither b nor a is F", "predicates": {"F(b)": "b has property F", "F(a)": "a has property F"}, "correct_answer": "F(b)&F(a)"}, {"description": "Using universal domain: All students study hard.", "predicates": {"F(x)": "x is a students", "G(x)": "x study hard"}, "correct_answer": "Ax(F(x)⇒G(x))"}], "answer_format": "[[answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Using universal domain: Some rabbits have long ears.\nPredicates:\n- F(x): x is a rabbits\n- G(x): x have long ears\n\nProblem 2: Every person has someone they love. (Domain: people)\nPredicates:\n- F(x,y): x loves y\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Using universal domain: Some rabbits have long ears.", "predicates": {"F(x)": "x is a rabbits", "G(x)": "x have long ears"}, "correct_answer": "Ex(F(x)&G(x))"}, {"description": "Every person has someone they love. (Domain: people)", "predicates": {"F(x,y)": "x loves y"}, "correct_answer": "AxEyF(x,y)"}], "answer_format": "[[answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Every person has someone they love. (Domain: people)\nPredicates:\n- F(x,y): x loves y\n\nProblem 2: Every person has someone they love. (Domain: people)\nPredicates:\n- F(x,y): x loves y\n\nProblem 3: Symbolize: Some humans are smarter than all animals.\nPredicates:\n- F(x): x is a humans\n- G(y): y is a animals\n- H(x,y): x is smarter than y\n\nProblem 4: Using universal domain: Some turtles swim slowly.\nPredicates:\n- F(x): x is a turtles\n- G(x): x swim slowly\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Every person has someone they love. (Domain: people)", "predicates": {"F(x,y)": "x loves y"}, "correct_answer": "AxEyF(x,y)"}, {"description": "Every person has someone they love. (Domain: people)", "predicates": {"F(x,y)": "x loves y"}, "correct_answer": "AxEyF(x,y)"}, {"description": "Symbolize: Some humans are smarter than all animals.", "predicates": {"F(x)": "x is a humans", "G(y)": "y is a animals", "H(x,y)": "x is smarter than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}, {"description": "Using universal domain: Some turtles swim slowly.", "predicates": {"F(x)": "x is a turtles", "G(x)": "x swim slowly"}, "correct_answer": "Ex(F(x)&G(x))"}], "answer_format": "[[answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Symbolize: Some humans are smarter than all animals.\nPredicates:\n- F(x): x is a humans\n- G(y): y is a animals\n- H(x,y): x is smarter than y\n\nProblem 2: Symbolize: Some rabbits are faster than all turtles.\nPredicates:\n- F(x): x is a rabbits\n- G(y): y is a turtles\n- H(x,y): x is faster than y\n\nProblem 3: Every person has someone they love. (Domain: people)\nPredicates:\n- F(x,y): x loves y\n\nProblem 4: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProblem 5: Either b is G or c is G\nPredicates:\n- G(b): b has property G\n- G(c): c has property G\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Symbolize: Some humans are smarter than all animals.", "predicates": {"F(x)": "x is a humans", "G(y)": "y is a animals", "H(x,y)": "x is smarter than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}, {"description": "Symbolize: Some rabbits are faster than all turtles.", "predicates": {"F(x)": "x is a rabbits", "G(y)": "y is a turtles", "H(x,y)": "x is faster than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}, {"description": "Every person has someone they love. (Domain: people)", "predicates": {"F(x,y)": "x loves y"}, "correct_answer": "AxEyF(x,y)"}, {"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Either b is G or c is G", "predicates": {"G(b)": "b has property G", "G(c)": "c has property G"}, "correct_answer": "G(b)|G(c)"}], "answer_format": "[[answer;answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Symbolize: Some rabbits are faster than all turtles.\nPredicates:\n- F(x): x is a rabbits\n- G(y): y is a turtles\n- H(x,y): x is faster than y\n\nProblem 2: c is both F and G\nPredicates:\n- F(c): c has property F\n- G(c): c has property G\n\nProblem 3: Using universal domain: All students study hard.\nPredicates:\n- F(x): x is a students\n- G(x): x study hard\n\nProblem 4: If a is G then d is G\nPredicates:\n- G(a): a has property G\n- G(d): d has property G\n\nProblem 5: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Symbolize: Some rabbits are faster than all turtles.", "predicates": {"F(x)": "x is a rabbits", "G(y)": "y is a turtles", "H(x,y)": "x is faster than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}, {"description": "c is both F and G", "predicates": {"F(c)": "c has property F", "G(c)": "c has property G"}, "correct_answer": "F(c)&G(c)"}, {"description": "Using universal domain: All students study hard.", "predicates": {"F(x)": "x is a students", "G(x)": "x study hard"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "If a is G then d is G", "predicates": {"G(a)": "a has property G", "G(d)": "d has property G"}, "correct_answer": "G(a)⇒G(d)"}, {"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}], "answer_format": "[[answer;answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: If b is F then c is F\nPredicates:\n- F(b): b has property F\n- F(c): c has property F\n\nProblem 2: Every person has someone they love. (Domain: people)\nPredicates:\n- F(x,y): x loves y\n\nProblem 3: Using universal domain: All students attend classes.\nPredicates:\n- F(x): x is a students\n- G(x): x attend classes\n\nProblem 4: Every person has someone they love. (Domain: people)\nPredicates:\n- F(x,y): x loves y\n\nProblem 5: Symbolize: Some rabbits are faster than all turtles.\nPredicates:\n- F(x): x is a rabbits\n- G(y): y is a turtles\n- H(x,y): x is faster than y\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "If b is F then c is F", "predicates": {"F(b)": "b has property F", "F(c)": "c has property F"}, "correct_answer": "F(b)⇒F(c)"}, {"description": "Every person has someone they love. (Domain: people)", "predicates": {"F(x,y)": "x loves y"}, "correct_answer": "AxEyF(x,y)"}, {"description": "Using universal domain: All students attend classes.", "predicates": {"F(x)": "x is a students", "G(x)": "x attend classes"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Every person has someone they love. (Domain: people)", "predicates": {"F(x,y)": "x loves y"}, "correct_answer": "AxEyF(x,y)"}, {"description": "Symbolize: Some rabbits are faster than all turtles.", "predicates": {"F(x)": "x is a rabbits", "G(y)": "y is a turtles", "H(x,y)": "x is faster than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}], "answer_format": "[[answer;answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Using universal domain: Some rabbits run fast.\nPredicates:\n- F(x): x is a rabbits\n- G(x): x run fast\n\nProblem 2: d is both F and G\nPredicates:\n- F(d): d has property F\n- G(d): d has property G\n\nProblem 3: Using universal domain: All prime numbers are even.\nPredicates:\n- F(x): x is a prime numbers\n- G(x): x are even\n\nProblem 4: Symbolize: Some students are older than all teachers.\nPredicates:\n- F(x): x is a students\n- G(y): y is a teachers\n- H(x,y): x is older than y\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Using universal domain: Some rabbits run fast.", "predicates": {"F(x)": "x is a rabbits", "G(x)": "x run fast"}, "correct_answer": "Ex(F(x)&G(x))"}, {"description": "d is both F and G", "predicates": {"F(d)": "d has property F", "G(d)": "d has property G"}, "correct_answer": "F(d)&G(d)"}, {"description": "Using universal domain: All prime numbers are even.", "predicates": {"F(x)": "x is a prime numbers", "G(x)": "x are even"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Symbolize: Some students are older than all teachers.", "predicates": {"F(x)": "x is a students", "G(y)": "y is a teachers", "H(x,y)": "x is older than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}], "answer_format": "[[answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProblem 2: Symbolize: Some students are older than all teachers.\nPredicates:\n- F(x): x is a students\n- G(y): y is a teachers\n- H(x,y): x is older than y\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Symbolize: Some students are older than all teachers.", "predicates": {"F(x)": "x is a students", "G(y)": "y is a teachers", "H(x,y)": "x is older than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}], "answer_format": "[[answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Symbolize: Some rabbits are faster than all turtles.\nPredicates:\n- F(x): x is a rabbits\n- G(y): y is a turtles\n- H(x,y): x is faster than y\n\nProblem 2: Using universal domain: All humans breathe.\nPredicates:\n- F(x): x is a humans\n- G(x): x breathe\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Symbolize: Some rabbits are faster than all turtles.", "predicates": {"F(x)": "x is a rabbits", "G(y)": "y is a turtles", "H(x,y)": "x is faster than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}, {"description": "Using universal domain: All humans breathe.", "predicates": {"F(x)": "x is a humans", "G(x)": "x breathe"}, "correct_answer": "Ax(F(x)⇒G(x))"}], "answer_format": "[[answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Symbolize: Some students are older than all teachers.\nPredicates:\n- F(x): x is a students\n- G(y): y is a teachers\n- H(x,y): x is older than y\n\nProblem 2: Every person has someone they love. (Domain: people)\nPredicates:\n- F(x,y): x loves y\n\nProblem 3: Every person has someone they love. (Domain: people)\nPredicates:\n- F(x,y): x loves y\n\nProblem 4: Every person has someone they love. (Domain: people)\nPredicates:\n- F(x,y): x loves y\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Symbolize: Some students are older than all teachers.", "predicates": {"F(x)": "x is a students", "G(y)": "y is a teachers", "H(x,y)": "x is older than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}, {"description": "Every person has someone they love. (Domain: people)", "predicates": {"F(x,y)": "x loves y"}, "correct_answer": "AxEyF(x,y)"}, {"description": "Every person has someone they love. (Domain: people)", "predicates": {"F(x,y)": "x loves y"}, "correct_answer": "AxEyF(x,y)"}, {"description": "Every person has someone they love. (Domain: people)", "predicates": {"F(x,y)": "x loves y"}, "correct_answer": "AxEyF(x,y)"}], "answer_format": "[[answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Using universal domain: Some turtles have hard shells.\nPredicates:\n- F(x): x is a turtles\n- G(x): x have hard shells\n\nProblem 2: Every person has someone they love. (Domain: people)\nPredicates:\n- F(x,y): x loves y\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Using universal domain: Some turtles have hard shells.", "predicates": {"F(x)": "x is a turtles", "G(x)": "x have hard shells"}, "correct_answer": "Ex(F(x)&G(x))"}, {"description": "Every person has someone they love. (Domain: people)", "predicates": {"F(x,y)": "x loves y"}, "correct_answer": "AxEyF(x,y)"}], "answer_format": "[[answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Symbolize: Some students are older than all teachers.\nPredicates:\n- F(x): x is a students\n- G(y): y is a teachers\n- H(x,y): x is older than y\n\nProblem 2: Using universal domain: Some turtles have hard shells.\nPredicates:\n- F(x): x is a turtles\n- G(x): x have hard shells\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Symbolize: Some students are older than all teachers.", "predicates": {"F(x)": "x is a students", "G(y)": "y is a teachers", "H(x,y)": "x is older than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}, {"description": "Using universal domain: Some turtles have hard shells.", "predicates": {"F(x)": "x is a turtles", "G(x)": "x have hard shells"}, "correct_answer": "Ex(F(x)&G(x))"}], "answer_format": "[[answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Using universal domain: Some apples are sweet.\nPredicates:\n- F(x): x is a apples\n- G(x): x are sweet\n\nProblem 2: Using universal domain: All humans are mortal.\nPredicates:\n- F(x): x is a humans\n- G(x): x are mortal\n\nProblem 3: Every person has someone they love. (Domain: people)\nPredicates:\n- F(x,y): x loves y\n\nProblem 4: Either a is G or c is G\nPredicates:\n- G(a): a has property G\n- G(c): c has property G\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Using universal domain: Some apples are sweet.", "predicates": {"F(x)": "x is a apples", "G(x)": "x are sweet"}, "correct_answer": "Ex(F(x)&G(x))"}, {"description": "Using universal domain: All humans are mortal.", "predicates": {"F(x)": "x is a humans", "G(x)": "x are mortal"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Every person has someone they love. (Domain: people)", "predicates": {"F(x,y)": "x loves y"}, "correct_answer": "AxEyF(x,y)"}, {"description": "Either a is G or c is G", "predicates": {"G(a)": "a has property G", "G(c)": "c has property G"}, "correct_answer": "G(a)|G(c)"}], "answer_format": "[[answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Using universal domain: Some turtles have hard shells.\nPredicates:\n- F(x): x is a turtles\n- G(x): x have hard shells\n\nProblem 2: Every person has someone they love. (Domain: people)\nPredicates:\n- F(x,y): x loves y\n\nProblem 3: Using universal domain: Some rabbits have long ears.\nPredicates:\n- F(x): x is a rabbits\n- G(x): x have long ears\n\nProblem 4: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Using universal domain: Some turtles have hard shells.", "predicates": {"F(x)": "x is a turtles", "G(x)": "x have hard shells"}, "correct_answer": "Ex(F(x)&G(x))"}, {"description": "Every person has someone they love. (Domain: people)", "predicates": {"F(x,y)": "x loves y"}, "correct_answer": "AxEyF(x,y)"}, {"description": "Using universal domain: Some rabbits have long ears.", "predicates": {"F(x)": "x is a rabbits", "G(x)": "x have long ears"}, "correct_answer": "Ex(F(x)&G(x))"}, {"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}], "answer_format": "[[answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Every person has someone they love. (Domain: people)\nPredicates:\n- F(x,y): x loves y\n\nProblem 2: Symbolize: Some humans are smarter than all animals.\nPredicates:\n- F(x): x is a humans\n- G(y): y is a animals\n- H(x,y): x is smarter than y\n\nProblem 3: If d is F then c is F\nPredicates:\n- F(c): c has property F\n- F(d): d has property F\n\nProblem 4: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Every person has someone they love. (Domain: people)", "predicates": {"F(x,y)": "x loves y"}, "correct_answer": "AxEyF(x,y)"}, {"description": "Symbolize: Some humans are smarter than all animals.", "predicates": {"F(x)": "x is a humans", "G(y)": "y is a animals", "H(x,y)": "x is smarter than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}, {"description": "If d is F then c is F", "predicates": {"F(d)": "d has property F", "F(c)": "c has property F"}, "correct_answer": "F(d)⇒F(c)"}, {"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}], "answer_format": "[[answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Using universal domain: Some apples are organic.\nPredicates:\n- F(x): x is a apples\n- G(x): x are organic\n\nProblem 2: Neither c nor d is F\nPredicates:\n- F(c): c has property F\n- F(d): d has property F\n\nProblem 3: Using universal domain: Some rabbits have long ears.\nPredicates:\n- F(x): x is a rabbits\n- G(x): x have long ears\n\nProblem 4: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProblem 5: Either a is G or d is G\nPredicates:\n- G(a): a has property G\n- G(d): d has property G\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Using universal domain: Some apples are organic.", "predicates": {"F(x)": "x is a apples", "G(x)": "x are organic"}, "correct_answer": "Ex(F(x)&G(x))"}, {"description": "Neither c nor d is F", "predicates": {"F(c)": "c has property F", "F(d)": "d has property F"}, "correct_answer": "F(c)&F(d)"}, {"description": "Using universal domain: Some rabbits have long ears.", "predicates": {"F(x)": "x is a rabbits", "G(x)": "x have long ears"}, "correct_answer": "Ex(F(x)&G(x))"}, {"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Either a is G or d is G", "predicates": {"G(a)": "a has property G", "G(d)": "d has property G"}, "correct_answer": "G(a)|G(d)"}], "answer_format": "[[answer;answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Symbolize: Some humans are smarter than all animals.\nPredicates:\n- F(x): x is a humans\n- G(y): y is a animals\n- H(x,y): x is smarter than y\n\nProblem 2: Using universal domain: All humans breathe.\nPredicates:\n- F(x): x is a humans\n- G(x): x breathe\n\nProblem 3: Using universal domain: Some apples are organic.\nPredicates:\n- F(x): x is a apples\n- G(x): x are organic\n\nProblem 4: Either c is F or a is F\nPredicates:\n- F(a): a has property F\n- F(c): c has property F\n\nProblem 5: If d is G then b is G\nPredicates:\n- G(b): b has property G\n- G(d): d has property G\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Symbolize: Some humans are smarter than all animals.", "predicates": {"F(x)": "x is a humans", "G(y)": "y is a animals", "H(x,y)": "x is smarter than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}, {"description": "Using universal domain: All humans breathe.", "predicates": {"F(x)": "x is a humans", "G(x)": "x breathe"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Using universal domain: Some apples are organic.", "predicates": {"F(x)": "x is a apples", "G(x)": "x are organic"}, "correct_answer": "Ex(F(x)&G(x))"}, {"description": "Either c is F or a is F", "predicates": {"F(c)": "c has property F", "F(a)": "a has property F"}, "correct_answer": "F(c)|F(a)"}, {"description": "If d is G then b is G", "predicates": {"G(d)": "d has property G", "G(b)": "b has property G"}, "correct_answer": "G(d)⇒G(b)"}], "answer_format": "[[answer;answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Either d is F or a is F\nPredicates:\n- F(a): a has property F\n- F(d): d has property F\n\nProblem 2: Using universal domain: All students study hard.\nPredicates:\n- F(x): x is a students\n- G(x): x study hard\n\nProblem 3: Symbolize: Some students are older than all teachers.\nPredicates:\n- F(x): x is a students\n- G(y): y is a teachers\n- H(x,y): x is older than y\n\nProblem 4: Every person has someone they love. (Domain: people)\nPredicates:\n- F(x,y): x loves y\n\nProblem 5: Using universal domain: All birds fly.\nPredicates:\n- F(x): x is a birds\n- G(x): x fly\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Either d is F or a is F", "predicates": {"F(d)": "d has property F", "F(a)": "a has property F"}, "correct_answer": "F(d)|F(a)"}, {"description": "Using universal domain: All students study hard.", "predicates": {"F(x)": "x is a students", "G(x)": "x study hard"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Symbolize: Some students are older than all teachers.", "predicates": {"F(x)": "x is a students", "G(y)": "y is a teachers", "H(x,y)": "x is older than y"}, "correct_answer": "Ex(F(x)&Ay(G(y)⇒H(x,y)))"}, {"description": "Every person has someone they love. (Domain: people)", "predicates": {"F(x,y)": "x loves y"}, "correct_answer": "AxEyF(x,y)"}, {"description": "Using universal domain: All birds fly.", "predicates": {"F(x)": "x is a birds", "G(x)": "x fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}], "answer_format": "[[answer;answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Neither c nor a is G\nPredicates:\n- G(a): a has property G\n- G(c): c has property G\n\nProblem 2: Using universal domain: All humans are mortal.\nPredicates:\n- F(x): x is a humans\n- G(x): x are mortal\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Neither c nor a is G", "predicates": {"G(c)": "c has property G", "G(a)": "a has property G"}, "correct_answer": "G(c)&G(a)"}, {"description": "Using universal domain: All humans are mortal.", "predicates": {"F(x)": "x is a humans", "G(x)": "x are mortal"}, "correct_answer": "Ax(F(x)⇒G(x))"}], "answer_format": "[[answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Using universal domain: Some rabbits have long ears.\nPredicates:\n- F(x): x is a rabbits\n- G(x): x have long ears\n\nProblem 2: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProblem 3: Using universal domain: Some rabbits have long ears.\nPredicates:\n- F(x): x is a rabbits\n- G(x): x have long ears\n\nProblem 4: Using universal domain: All birds fly.\nPredicates:\n- F(x): x is a birds\n- G(x): x fly\n\nProblem 5: Neither d nor b is G\nPredicates:\n- G(b): b has property G\n- G(d): d has property G\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Using universal domain: Some rabbits have long ears.", "predicates": {"F(x)": "x is a rabbits", "G(x)": "x have long ears"}, "correct_answer": "Ex(F(x)&G(x))"}, {"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Using universal domain: Some rabbits have long ears.", "predicates": {"F(x)": "x is a rabbits", "G(x)": "x have long ears"}, "correct_answer": "Ex(F(x)&G(x))"}, {"description": "Using universal domain: All birds fly.", "predicates": {"F(x)": "x is a birds", "G(x)": "x fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Neither d nor b is G", "predicates": {"G(d)": "d has property G", "G(b)": "b has property G"}, "correct_answer": "G(d)&G(b)"}], "answer_format": "[[answer;answer;answer;answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: Using universal domain: All humans breathe.\nPredicates:\n- F(x): x is a humans\n- G(x): x breathe\n\nProblem 2: Every person has someone they love. (Domain: people)\nPredicates:\n- F(x,y): x loves y\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "Using universal domain: All humans breathe.", "predicates": {"F(x)": "x is a humans", "G(x)": "x breathe"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Every person has someone they love. (Domain: people)", "predicates": {"F(x,y)": "x loves y"}, "correct_answer": "AxEyF(x,y)"}], "answer_format": "[[answer;answer]]"}}
{"data_source": "KorLogicPredicateLogicFormalization", "prompt": "In first-order logic, symbolize the following propositions using the given predicates.\nStrictly follow these notation rules:\n- Universal Quantifier: Ax (for all x)\n- Existential Quantifier: Ex (there exists x)\n- Logical Connectives: & (and), | (or), ⇒ (implies), (not)\n- Predicate format: Use capitalized letters with variables (e.g., F(x), G(x,y))\n- 0-ary predicates must use constants (e.g., F(a), G(b,c))\n\n\nProblem 1: If c is F then a is F\nPredicates:\n- F(a): a has property F\n- F(c): c has property F\n\nProblem 2: Using universal domain: All birds fly.\nPredicates:\n- F(x): x is a birds\n- G(x): x fly\n\nProblem 3: Using universal domain: All prime numbers are even.\nPredicates:\n- F(x): x is a prime numbers\n- G(x): x are even\n\nProblem 4: No humans can fly. (Using universal domain)\nPredicates:\n- F(x): x is human\n- G(x): x can fly\n\nProvide answers in [[answer1;answer2;...]] format exactly as required.", "ground_truth": {"problems": [{"description": "If c is F then a is F", "predicates": {"F(c)": "c has property F", "F(a)": "a has property F"}, "correct_answer": "F(c)⇒F(a)"}, {"description": "Using universal domain: All birds fly.", "predicates": {"F(x)": "x is a birds", "G(x)": "x fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "Using universal domain: All prime numbers are even.", "predicates": {"F(x)": "x is a prime numbers", "G(x)": "x are even"}, "correct_answer": "Ax(F(x)⇒G(x))"}, {"description": "No humans can fly. (Using universal domain)", "predicates": {"F(x)": "x is human", "G(x)": "x can fly"}, "correct_answer": "Ax(F(x)⇒G(x))"}], "answer_format": "[[answer;answer;answer;answer]]"}}