I want to calculate how many DNA molecules in theory were created during a PCR reaction with a known number of cycles and known amount of starting material.
For simplicity, lets say we initially have one double stranded template and therefore, we start with 2 copies of our gene. After one round we theoretically have 4, then 8 and so on.
That would be calculated like this: y=x * 2^(n)
with x the number of starting molecules and n the number of cycles and y the number of final molecules.
However, in reality, each elongation in the PCR is not 100% effective, rather 65-90%.
Now comes my question: How can I calculate y when each round has a certain efficiency below 100%?
Maybe like this? --> y=x* 2^(n) * z^(n)
with z being the efficiency, for example for 65% -->0.65
Thank you