Just curious... Did you implement each app natively? I.e. Swift and Kotlin? Or were you able to use a cross platform framework like Flutter?
Show HN: Wyrm – Solve algebra by touch, built on an open-source soundness engine
11–20 of 28 posts
Re: Show HN: Wyrm – Solve algebra by touch, built on an open-source soundness engine
#12I watched the video. I think I've been wanting something like this recently but there's not really a name for this sort of thing that I know of. Relatedly, I've been working on a step-by-step solver/calculator but I just use sympy (via pyodide) + mathlive. But I'm starting to see the limitations of running Python in the browser and am starting to look at js libraries now.
The underlying math engine is written in typescript and is open source: https://github.com/dicroce/wyrm_math Probably it's most important feature for applications like this is that the id's of elements in the equations are stable (meaning, if an X has an id of 123 and a transformation moves it to the other side of the equals sign, it still has id 123... this allows you animate between states if you wish).
On the library. It's sounds really cool. I'm going to look at it pretty soon.
Re: Show HN: Wyrm – Solve algebra by touch, built on an open-source soundness engine
#13Re: Show HN: Wyrm – Solve algebra by touch, built on an open-source soundness engine
#14Re: Show HN: Wyrm – Solve algebra by touch, built on an open-source soundness engine
#15That said, the game doesn't let you do arbitrary equations, so you cap out when you beat the game. Excited to try this app out!
Re: Show HN: Wyrm – Solve algebra by touch, built on an open-source soundness engine
#16Re: Show HN: Wyrm – Solve algebra by touch, built on an open-source soundness engine
#17Re: Show HN: Wyrm – Solve algebra by touch, built on an open-source soundness engine
#18It keeps trying to either subtract x^3, or divide by x. I can't get it to create a sqrt no matter what I drag or where.
Edit: it seems to create a sqrt only if I drag one of the x-s over to the other side first in order to make one side only x^2, but then I get a sqrt(8/x) which I can't do anything at all with.
In x^-1=2, I can get to 1=2x but I can't get it to simplify any further. (Edit: I was able to end up with a fraction of -1/-2 which I guess is correct...)
Re: Show HN: Wyrm – Solve algebra by touch, built on an open-source soundness engine
#19It doesn't seem like roots can be performed in the web version. Specifically, both x^3=8 and (x^2)x=8 seem unsolvable. It keeps trying to either subtract x^3, or divide by x. I can't get it to create a sqrt no matter what I drag or where. Edit: it seems to create a sqrt only if I drag one of the x-s over to the other side first in order to make one side only x^2, but then I get a sqrt(8/x) which I can't do anything a…
Re: Show HN: Wyrm – Solve algebra by touch, built on an open-source soundness engine
#20Earlier quoted context omitted.
The underlying math engine is written in typescript and is open source: https://github.com/dicroce/wyrm_math Probably it's most important feature for applications like this is that the id's of elements in the equations are stable (meaning, if an X has an id of 123 and a transformation moves it to the other side of the equals sign, it still has id 123... this allows you animate between states if you wish).
I tried the demo. One thing I've noticed is it's sometimes hard to know what operation clicking or dragging something will do (or has done sometimes). I'm not sure what would help other than showing like a pie menu before carrying out the operation. On the library. It's sounds really cool. I'm going to look at it pretty soon.