DCT, FFT, Parallel Prefix-Sum and other common transformations
that require significant programming effort in other ISAs.
+**What is missing from Power Scalar ISA that a Vector ISA needs?**
+
+Remarkably, very little.
+
+* The traditional `iota` instruction may be
+ synthesised with an overlapping add, that stacks up incrementally
+ and sequentially. Although it requires two instructions, one to
+ start the sum-chain, the technique has the advantage of allowing
+ increments by arbitrary amounts, and is not limited to addition,
+ either.
+* Big-integer addition (arbitrary-precision arithmetic) is an
+ emergent characteristic the carry-in, carry-out capability of
+ Power ISA `adde` instruction. `sv.adde` naturally emerges from the
+ sequential chaining of these scalar instructions.
+*