Skip to main content

What is the equation for calculating percentage yield with aspirin made with salicylic acid and pyridine?

Aspirin or acetylsalicylic acid is made by reacting salicylic acid with a base. There are various ways to synthesize aspirin (but the method of calculating the percent yield is the same for any chemical reaction). One way is to react salicylic acid with acetic anhydride, a base, in the presence of pyridine as a catalayst. In brief, pyridine hydrogen bonds with the phenolic hydrogen, thus activating it for acetylation.  The chemical equation for this is as follows:


`2C_7H_6O_3 + C_4H_6O_3 -> 2C_9H_8O_4 + H_2O ` , where the chemical species are salicylic acid, acetic anhydride, aspirin, and water, respectively. Note that pyridine is not in the balanced chemical equation since it only acts as a catalyst and is not consumed in the chemical reaction.


Percent yield is a parameter used to determine efficiency of chemical reactions. It is very important in industrial and pharmaceutical chemical industries - in calculating cost-benefit of a reaction and synthesis of a drug, for instance, or in organic chemistry labs in determining the efficiency of their synthesis route. Percent yield is calculated as follows:


%yield = (actual yield / theoretical yield) x 100.


Actual yield is the amount of product empirically produced after conducting the reaction. Meanwhile, theoretical yield is the yield obtained by stoichiometrically calculating the amount to be produced using the chemical equation using the amount of starting materials provided.


------ An example


For instance, if we start with 100 g of salysilic acid (SA for simplicity, and I'll use A for aspirin) (and enough acetic anhydride), we can calculate the expected amount of aspirin produced using the chemical equation above.


mol aspirin produced = 100g SA / 138.121g/mol SA * 2 mol A / 2 mol SA = 0.76 mol of aspirin produced.


This is equivalent to 0.76 mol * 180.157g/mol = 137 g of aspirin produced theoretically.


If you performed the same reaction in a lab and was able to retrieve 100 g of aspirin, your theoretical yield will be: 100/137 * 100 = 73%.

Comments

Popular posts from this blog

Is there a word/phrase for "unperformant"?

As a software engineer, I need to sometimes describe a piece of code as something that lacks performance or was not written with performance in mind. Example: This kind of coding style leads to unmaintainable and unperformant code. Based on my Google searches, this isn't a real word. What is the correct way to describe this? EDIT My usage of "performance" here is in regard to speed and efficiency. For example, the better the performance of code the faster the application runs. My question and example target the negative definition, which is in reference to preventing inefficient coding practices. Answer This kind of coding style leads to unmaintainable and unperformant code. In my opinion, reads more easily as: This coding style leads to unmaintainable and poorly performing code. The key to well-written documentation and reports lies in ease of understanding. Adding poorly understood words such as performant decreases that ease. In addressing the use of such a poorly ...

A man has a garden measuring 84 meters by 56 meters. He divides it into the minimum number of square plots. What is the length of the square plots?

We wish to divide this man's garden into the minimum number of square plots possible. A square has all four sides with the same length.Our garden is a rectangle, so the answer is clearly not 1 square plot. If we choose the wrong length for our squares, we may end up with missing holes or we may not be able to fit our squares inside the garden. So we have 84 meters in one direction and 56 meters in the other direction. When we start dividing the garden in square plots, we are "filling" those lengths in their respective directions. At each direction, there must be an integer number of squares (otherwise, we get holes or we leave the garden), so that all the square plots fill up the garden nicely. Thus, our job here is to find the greatest common divisor of 84 and 56. For this, we prime factor both of them: `56 = 2*2*2*7` `84 = 2*2*3*7` We can see that the prime factors and multiplicities in common are `2*2*7 = 28` . This is the desired length of the square plots. If you wi...