I am trying to write a mathematica code to accomplish the following:
For a given $n$, consider $(ab)^n$, which is a string of the form $\underbrace{ababab...ab}_{n\text{ times}}$.
I want to replace $ba$ with $ab+1$, and then expand. For instance, if $n=2$, then we get abab->a(ab+1)b=aabb+ab
I have been having a very hard time writing code for this. Especially, manipulating strings using Mathematica has proved to be extremely difficult.
Any ideas how I could write this code?