Skip to content
This repository was archived by the owner on Aug 29, 2024. It is now read-only.
This repository was archived by the owner on Aug 29, 2024. It is now read-only.

cancel out subtraction with same term better #221

Open
@evykassirer

Description

@evykassirer

for collect and combine like terms, addition, you'd see steps like this right now

y + 2x - 2x
y + (2-2)x
y + 0x
y + 0
y

it should instead just do

y + 2x - 2x
(maybe y + 0?)
y

you see this a lot in equation solving code, not totally sure the best place to fix it but opening an issue cause it's really not great pedagogically haha

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions