You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey there! Recently got into complex bases, and began to find (-1 + i) fascinating since it can be represented in binary.
I was curious if you have an implementation for adding numbers together? I've got Python code that allows me to go back and forth between CBNS and base10 representations, but I'm having trouble adding numbers together. So far, I can do trivial additions (such as 1 + 1; 1+1j + -1j, etc) but am struggling when I end up with several overflow carries.
Hi Alex!
A pure math version (arithmetics) was also one of the important stuffs we wanted to have during the project but we got no luck. We didn't have time to figure it out ourselves, and unfortunately, there were too little relevant info/literature about this topic. Maybe you can refer to the last 2 literatures we cited in our paper. Those are very short papers but that's what we could find and maybe you will get some ideas from them.
I wish you good luck! Thanks for reaching out and I would like to know if you have any progress or updates on this :)
Hey there! Recently got into complex bases, and began to find (-1 + i) fascinating since it can be represented in binary.
I was curious if you have an implementation for adding numbers together? I've got Python code that allows me to go back and forth between CBNS and base10 representations, but I'm having trouble adding numbers together. So far, I can do trivial additions (such as 1 + 1; 1+1j + -1j, etc) but am struggling when I end up with several overflow carries.
If you're curious, my python code is as follows:
And here's the specific issue I'm having. I thought I had it figured out, but then immediately came up with a counter example.
What I thought worked great:
What immediately broke the thought process:
Any thoughts you have would be greatly appreciated.
The text was updated successfully, but these errors were encountered: