The recovered private exponent decrypts the toy ciphertext.
highlighted = computed this step
Use recovered d to decrypt
The ciphertext c=13 is raised to recovered d=27 modulo n.
m=cdmodn
The plaintext returns
The decryption ladder result is plaintext m=7.
13dmod55=7
It matches the earlier encryption
The public operation maps plaintext 7 back to ciphertext 13.
7emod55=13
Honesty boundary
NOTE: toy tiny RSA only; real RSA uses enormous moduli and padding; not a production attack guide; not side-channel, oracle, implementation, quantum, or real key-size guidance.