Ethereum Yellow Paper: Please see equation 220 and 221.
On equation 220, we obtain the transaction that can be sent to the network and will be tracked by a 256 bit transaction-id. Its right most 160-bits is equalled to S(T) which is the defined as the sender function S of the transaction.
My question is related to Equation 221 which is an assertion about: :
The assertion that the sender of a signed transaction equals the address of the signer should be self-evident
[Q] Why and how the sender of a signed transaction(S(T) on the eq. 220) equals the address of the signer (A(pr)) ? Is there any well explained documentation related to this.
Could we conclude the following statement:
B96...255(KEC(ECDSARECOVER(h(T),Tw,Tr,Ts))) == B96...255((KEC(ECDSAPUBKEY(pr)))
Thank you for your valuable time and help.

S(T)stands for, is it Ethereum address of the sender, which is actually the 160-bit we obtain on eq. 215? SoKEC( ECDSARECOVER(h(T),Tw,Tr,Ts)) == KEC(ECDSAPUBKEY(pr))you could see on my updated Q?@Ismael – alper Dec 16 '17 at 13:55ECDSARECOVER(h(T),Tw,Tr,Ts))is the publicKey of the signer and from that we can obtain signer's 160-bit Ethereum-Address, right? @Ismael. – alper Dec 16 '17 at 14:03KEC(somePublicKey)should generate a unique value for each give public key? @Ismael – alper Dec 16 '17 at 14:07KEC(somePublicKeycan generate a unique value but that right-most 160 bit could be same which leads to the same address. Overall this is should be correctB96...255(KEC(ECDSARECOVER(h(T),Tw,Tr,Ts))) == B96...255((KEC(ECDSAPUBKEY(pr))), right? @Ismael – alper Dec 16 '17 at 14:10