Expand description
§Vertical Multiplication Steps
§Decimal Multiplication
BigInt::from(12), &BigInt::from(345), 10) 12
× 345
--------
= 60
+ 48.
+ 36..
--------
= 4140§Hexadecimal Multiplication
BigInt::from(12), &BigInt::from(345), 16) c
× 159
-------
= 6c
+ 3c.
+ c..
-------
= 102c§Binary Multiplication
BigInt::from(12), &BigInt::from(345), 2) 1100
× 101011001
----------------
= 1100
+ 0.
+ 0..
+ 1100...
+ 1100....
+ 0.....
+ 1100......
+ 0.......
+ 1100........
----------------
= 1000000101100Structs§
- Multiplication
Steps - Get digits of a number in reverse order
- Shift
Add - Get digits of a number in reverse order
Functions§
- v_mul
- Vertical multiplication
- v_
mul_ detailed - Vertical multiplication in details