How to use the mathy.agent.curriculum.problems.simplify_multiple_terms function in mathy

To help you get started, we’ve selected a few mathy examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github justindujardin / mathy / mathy / agent / curriculum / level1 / purple_belt.py View on Github external
            problem_fn=lambda: simplify_multiple_terms(8, powers_proability=0.85, op=None),
            problem_type=MODE_SIMPLIFY_POLYNOMIAL,
github justindujardin / mathy / mathy / agent / curriculum / level1 / purple_belt.py View on Github external
            problem_fn=lambda: simplify_multiple_terms(5, op=None),
            problem_type=MODE_SIMPLIFY_POLYNOMIAL,
github justindujardin / mathy / mathy / agent / curriculum / level1 / white_belt.py View on Github external
            problem_fn=lambda: simplify_multiple_terms(3),
            problem_type=MODE_SIMPLIFY_POLYNOMIAL,
github justindujardin / mathy / mathy / agent / curriculum / level1 / yellow_belt.py View on Github external
            problem_fn=lambda: simplify_multiple_terms(6, powers_proability=0.85),
            problem_type=MODE_SIMPLIFY_POLYNOMIAL,
github justindujardin / mathy / mathy / agent / curriculum / level1 / white_belt.py View on Github external
            problem_fn=lambda: simplify_multiple_terms(4),
            problem_type=MODE_SIMPLIFY_POLYNOMIAL,
github justindujardin / mathy / mathy / agent / curriculum / level1 / green_belt.py View on Github external
            problem_fn=lambda: simplify_multiple_terms(8, powers_proability=0.85),
            problem_type=MODE_SIMPLIFY_POLYNOMIAL,
github justindujardin / mathy / mathy / agent / curriculum / level1 / yellow_belt.py View on Github external
            problem_fn=lambda: simplify_multiple_terms(5, powers_proability=0.85),
            problem_type=MODE_SIMPLIFY_POLYNOMIAL,
github justindujardin / mathy / mathy / agent / curriculum / level1 / green_belt.py View on Github external
            problem_fn=lambda: simplify_multiple_terms(9, powers_proability=0.85),
            problem_type=MODE_SIMPLIFY_POLYNOMIAL,
github justindujardin / mathy / mathy / agent / curriculum / level1 / purple_belt.py View on Github external
            problem_fn=lambda: simplify_multiple_terms(6, powers_proability=0.85, op=None),
            problem_type=MODE_SIMPLIFY_POLYNOMIAL,
github justindujardin / mathy / mathy / agent / curriculum / level1 / dev.py View on Github external
            problem_fn=lambda: simplify_multiple_terms(2),
            problem_type=MODE_SIMPLIFY_POLYNOMIAL,