Prediction of Organic Reaction Outcomes. Using Machine Learning

Size: px
Start display at page:

Download "Prediction of Organic Reaction Outcomes. Using Machine Learning"

Transcription

1 Prediction of Organic Reaction Outcomes Using Machine Learning Connor W. Coley, Regina Barzilay, Tommi S. Jaakkola, William H. Green, Supporting Information (SI) Klavs F. Jensen Approach Section S.. Data By design, our training method assumes that the recorded product in a reaction example is the primary outcome. This is certainly true for examples with greater than 50% yield. This holds for most examples. However, because we do not have reliable yield information for many of the reactions in the database, this assumption cannot be guaranteed for all examples. In the absence of full speciation information (e.g., yield for side products, by products, intended product), this is a necessary assumption to make use of experimental data. Section S.2. Forward Enumeration When databases of reaction examples were first being developed (e.g., Reaxys, CASREACT, SPRESI), researchers began developing algorithms to automatically extract the essence of the transformation and generalize it as a reaction template. The software developed by Law et al., Route Designer, 7 works by identifying a reaction core containing all atoms with a change in connectivity and then heuristically extending this core to contain the chemically relevant environment; multiple generalized rules are then merged into a final reaction rule.

2 InfoChem s ICSynth uses a similar approach, but defines multiple templates with varying degrees of specificity for each reaction example. 8 The algorithm to generate forward synthesis templates is as follows:. Load the reaction SMILES string into RDKit as atom-mapped molecule objects representing the reactants and products. 2. Based on the atom map number, identify which atoms have changed between the reactants and products by examining their (a) SMARTS symbol, (b) atomic number, (c) total number of hydrogens, (d) formal charge, (e) degree, (f) number of radical electrons, and (g) bond-neighbor pairs including the atomic number and atom map number. Any changed atoms are part of the reaction core and must be included in the final reaction template. 3. Generate SMARTS labels for each atom in the reaction core. The default in this case is to use the SMILES fragment, as SMILES fragments can be used as SMARTS patterns (although they only match that exact fragment). Adjustments are made to the SMILES fragment to make the number of hydrogens and formal charge explicit. For example, a quartenary carbon with no hydrogens may have the SMILES representation [C:], but the SMARTS [C:] will match any aliphatic carbon with any number of hydrogens. We instead replace this symbol with[c;h0;+0:] to ensure that a matched carbon atom has the correct number of hydrogen atoms (zero). 4. Examine each atom in the reactant molecule(s) that is immediately adjacent to the reaction core. If that atom is atom-mapped, then it must appear in the products (i.e., it is not a leaving group). These atoms are fully generalized to SMARTS wildcards to match any heavy atom: *. The atom map number is preserved, so, for example, the SMARTS fragment for [CH:2] would be generalized to [*:2]. Any atom-map numbers from the reactants added in this step must also be added for the products. 2

3 If the neighbor atom is not atom-mapped, then it is part of a leaving group. These atoms are generalized based on their atomic number and aromaticity. Aliphatic carbons are all converted to the corresponding SMARTS fragment C, aromatic carbons are all converted to the SMARTS fragment c, and heteroatoms are converted to the SMARTS fragment #AN, where AN is the atomic number of that heteroatom. In this manner, all leaving groups beginning with the same atom type, e.g., an aliphatic carbon, will appear identical. 5. Generate an overall SMARTS string for the reaction. This is done using RDKit s MolFragmentToSmiles function with atom symbols replaced with custom SMARTS fragments as described above. All bonds are made explicit; for example, the pattern CC would be converted to C-C so that it cannot match an alkene C=C. 6. Canonicalize the template. This step has not been fully refined. RDKit s MolFragmentToSmiles calculates a canonical atom ordering (because SMILES strings are not unique), but this is done without considering the custom atom symbols we define. Additionally, the original atom-mapping number of the reaction example will affect the atom ordering. In one example, the reaction core might correspond to atom maps 4, 5, and 6, while a similar reaction with an identical reaction core could have atom maps 32, 34, and 33. We copy atom-mapped templates to unmapped templates and determine the canonical ordering in the absence of atom map numbers, after which we re-assign atom map numbers from left-to-right starting at one. The actual SMARTS fragments corresponding to the top ten forward templates (including the five templates in Figure 2) are listed below in Table S. Reaction templates follow a Zeta distribution in terms of popularity as shown in S, where the plot of frequency against rank is linear on a log-log plot. The implication of this is that relatively few templates cover a decent breadth of chemistry, but much of chemistry can only be described by very unusual reaction templates. To achieve 00% coverage, all >00,000 templates would be required. 3

4 Table S: Top 0 most popular reaction templates extracted from. million USPTO reactions. Count refers to the number of reaction examples which produced that template. Rank Count SMARTS 4076 [*:]-[O;H0;+0:2]-[C]»[*:]-[OH;+0:2] [#8]-[N+;H0:](=[#8])-[*:2]»[*:2]-[NH2;+0:] [*:]-[C;H0;+0:2](=[O;H0;+0:3])-[O;H0;+0:4]-[C]»[*:]-[C;H0;+0:2](=[O;H0;+0:4])-[OH;+0:3] [*:]-[N;H0;+0:2](-[*:3])-[C]»[*:]-[NH;+0:2]-[*:3] [*:]-[NH;+0:2]-[C]»[*:]-[NH2;+0:2] 6 69 [#8]-[C;H0;+0:](-[*:2])=[*:3].[*:4]-[NH2;+0:5]»[*:2]-[C;H0;+0:](=[*:3])-[NH;+0:5]-[*:4] 7 07 [#8]=[C;H0;+0:](-[*:2])-[OH;+0:3].[*:4]-[NH2;+0:5]»[*:2]-[C;H0;+0:](=[O;H0;+0:3])-[NH;+0:5]-[*:4] [#8]=[C;H0;+0:](-[*:2])-[OH;+0:3].[*:4]-[NH2;+0:5]»[*:4]-[NH;+0:5]-[C;H0;+0:](-[*:2])=[O;H0;+0:3] 9 93 [#7]-[c;H0;+0:](:[*:2]):[*:3].[*:4]-[NH2;+0:5]»[*:4]-[NH;+0:5]-[c;H0;+0:](:[*:2]):[*:3] [#7]-[c;H0;+0:](:[*:2]):[*:3].[*:4]-[NH2;+0:5]»[*:2]:[c;H0;+0:](:[*:3])-[NH;+0:5]-[*:4] 0 - Frequency of occurrence [-] Rank [-] Figure S: Normalized reaction template popularity versus rank. The primary factor in the decision to truncate to the most popular templates (with at least 50 reaction examples) was the computational cost. Application of templates is computationally expensive due to the underlying subgraph isomorphism problem, despite RDKitâĂŹs use of Boost graph objects and the VF2 algorithm. As shown in Figure S, the marginal benefit of including additional templates decreases rapidly with template rank. The large number of additional templates required for a small gain in coverage carries a significant computational cost to the overall workflow. A timing test for an expanded template set is shown in Figure S2. An alternate means of generating candidate products that does not involve subgraph isomorphism would greatly accelerate the model. The number of reactant atoms per reaction in the 5,000-member dataset is shown in Figure S3. 4

5 CPU time [s] Number of reactant atoms [-] Figure S2: Timing test showing computational cost of matching forward reaction templates to reactants. Results are shown for,240 reactant sets and 62,946 templates; the total; the total CPU time was 82 hours Count [-] Number of reactant atoms per reaction [-] Figure S3: Histogram of the number of heavy (non-hydrogen) atoms in each of the 5,000 reaction examples. 5

6 Section S.3. Candidate Ranking Model In our featurization, we include rapidly-calculable structural and electronic features that reflect the local chemical environment first and foremost, but can reflect the surrounding molecular context. They are described below and tabulated in Table S2. Crippen contribution to logp is an estimate of an atom s contribution to a molecular partition coefficient. The partition coefficient is defined as the equilibrium concentration ratio of a neutral compound in -octanol as compared to water. Crippen contribution to Molar Refractivity is an estimate of an atom s contribution to a molecular MR value. A moleule s MR depends on its size, density, and index of refraction, which tends to correplate with its polarizability. The Total Polar Surface Area (TPSA) contribution is an estimate of an atom s contribution to a molecule s TPSA. The TPSA is calculated by estimating a 3D conformer using force field models, replacing atom centers with overlapping hard spheres with radii proportional to their van der Waals radii, and summing over the exposed areas corresponding to polar atoms (e.g., oxygen, nitrogen). The Labute Approximate Surface Area contribution 9 is an estimate of an atom s contribution to the overall surface area. It is estimated using the same hard-sphere approach as as the TPSA, but does not consider atomic polarity. This atom-level feature provides an indication of steric hinderance or the degree to which an atom is exposed and available to react. The EState Index 20 is an electronic/topological atom-level descriptor that combines information about that atom s intrinsic EState value (calculated from the number of pi and lone-pair electrons), contributions from its immediate neighbors, and contributions from non-bonded atoms elsewhere in the molecule. 6

7 The Gasteiger partial charge 2,22 is the estimated partial charge on each atom in a molecule. Intrinsic electronegativities are used to initialize values in a molecule, but atom-level values are iteratively updated to allow for the propagation of electron donating/withdrawing effects to neighbors, across conjugated bonds, or across aromatic rings. The Gasteiger hydrogen partial charge is a similar estimate of the total charge on the hydrogens - explicit or implicit - bonded to each heavy atom. The atomic number is encoded as a one-hot vector consisting of all zeros except at the index where the atomic number matches the value in a set of choices. The atomic number choices are 5, 6, 7, 8, 9, 5, 6, 7, 35, 53, and other. The number of neighbors (not including hydrogens) is similarly one-hot encoded from the choices 0,, 2, 3, 4, 5. The number of hydrogen atoms attached to each heavy atom is similarly one-hot encoded from the choices 0,, 2, 3, 4. The formal charge of an atom is represented numerically. Whether or not the atom is in a ring is represented numerically as a or 0. Whether or not the atom is in an aromatic ring is represented numerically as a or 0. The bond order is represented as a one-hot vector from the list of choices single, aromatic, double, or triple. As described in the main text, loss or gain of a hydrogen is represented by the features of that reactant atom alone, a i R 32. Loss or gain of a bond is represented by a concatenation of reactant atom features and product bond features [a i,b ij,a j ] R 68. As an example of this type of representation, consider a simpler set of attributes where atoms are represented by the R 6 vectoris_c, is_n, is_o, is_cl, num_hs, num_neighbors and bonds are represented 7

8 Table S2: Atom- and bond-level features used to describe edits that occur at the reaction core. Atom index Label 0 Crippen contribution to logp Crippen contribution to Molar Refractivity 2 Total Polar Surface Area contribution 3 Labute Approximate Surface Area contribution 4 EState Index 5 Gasteiger partial charge 6 Gasteiger hydrogen partial charge 7-7 Atomic number (one-hot) 8-23 Number of neighbors (one-hot) Number of hydrogens (one-hot) 29 Formal charge 30 Is in ring 3 Is aromatic Bond index Label 0-3 Bond order (one-hot) the R 4 vector is_single, is_aromatic, is_double, is_triple. We look to an example reaction shown in Figure S4. NH O Cl O 3 2 Cl Cl O 2 N O Cl Cl Figure S4: Example reaction with which to demonstrate the edit-based representation. For the reaction in Figure S4, there are three edits:. Atom loses a hydrogen 2. A bond between atoms 2 and 3 is lost 3. A bond between atoms and 2 is gained 8

9 We then construct vectors a, a 2, and a 3 describing the features of each atom involved in reaction [ ] a = [ ] a 2 = [ ] a 3 = () (2) (3) and likewise for each bond [ ] b 2 = [ ] b 23 = (4) (5) The representations are then used to generate a score, s, for this candidate. Features are passed through the neural networks tailored to each edit type, summed in their intermediate vector representations, and passed through one final network. For simplicitly, we refer to these functions f H lost, f H gain, f Bond lost, f Bond gain, and f Overall. Hence, s = f Overall (f H lost (a )+f Bond lost ([a 2,b 23,b 3 ])+f Bond gain ([a,b 2,b 2 ])) (6) While this representation does not look very meaningful to a human, it fully specifies the candidate reaction as an sp 2 carbon is aminated by a secondary amine upon loss of chlorine. Once the model generates the score, s, that score can be compared against all other candidates in a softmax layer to produce a probability: p = exp(s) Ncandidates j= exp(s j ) The machine learning models are trained to solve something akin to a classification problem: given hundreds of possible classes (candidate reactions) predict the true class (recorded reaction), which is known to be one of those candidates. Even though each reaction example (7) 9

10 will have a different set of classes, this framework allows us to use the categorical crossentropy as the loss function (objective) during training. This objective function is defined as the negative logarithm of the probability assigned to the true class (or true outcome): minl = min ( log(p true ) ) (8) Weights were optimized using an Adadelta optimizer 23 with a fixed learning rate of 0.0 for 200 epochs with minibatches of 20 reaction examples. No regularization was used in the reported models. Cross-validation performance in the edit-based model was insensitive to the number of training epochs (i.e., was not prone to overfitting), so an inner validation set was not used for early stopping. The training time for the hybrid model (85 epochs) was selected as a compromise between the baseline model s tendency to overfit and the edit-based model s need to train for longer. Fundamentally, the machine learning model is a candidate ranking model. Ranking models can be trained using categorical crossentropy to maximize the probability assigned to the top rank- outcome, but this is not particularly discriminative. A minor change in probability can change the rank but leaves the categorical crossentropy nearly the same. A more effective approach for training ranking models can be the use of a max-margin rank loss. Candidates that are similar to the target are encouraged to have higher scores, while candidates that are dissimilar to the target are encouraged to have lower scores. This approach necessitates development of a distance function between candidates to assess similarity. It is not easy to imagine what such a function would look like: traditional molecular similarity (e.g., between products) does not measure the similarity between candidate reactions. For example, consider a large molecule with an aldehyde group. This group could be reduced to the alcohol or oxidized to the carboxylic acid. Those two candidate products are similar in structure, but very dissimilar in the reactivity that would produce them. 0

11 Figure S5: Baseline model architecture for scoring candidate reactions. Note that the candidate representation is fundamentally different from the edit-based representation; it is the Morgan fingerprint of the candidate product Table S3: Parameters required in the neural network for the edit-based model. Layer name Input dimension Output dimension # Parameters Hs_lost_hidden Hs_lost_hidden Hs_lost_hidden Hs_gain_hidden Hs_gain_hidden Hs_gain_hidden Bonds_lost_hidden Bonds_lost_hidden Bonds_lost_hidden Bonds_gain_hidden Bonds_gain_hidden Bonds_gain_hidden Summed_hidden Output 50 5 Total 4400 Table S4: Parameters required in the neural network for the baseline model. Layer name Input dimension Output dimension # Parameters Hidden Output 50 5 Total 530

12 Results Count [-] Number of candidates per reaction [-] Figure S6: Histogram showing the number of product candidates for each of 5,000 reactant sets where the true product was found using the most popular,689 forward templates. We examine model performance as a function of the number of candidates in Figure S. The mean accuracy for examples within each bin shows a very weak trend (if any) with the number of candidates. Because all models are successful at discriminating likely products regardless of the size of the candidate set, this suggests that the scope of the model should be extendable by increasing the template set without a significant loss in performance. 2

13 a Loss (categorical crossentropy) [-] Training Validation Epoch [-] b Accuracy [-] Training Validation Num. epochs [-] Figure S7: (a) Loss and (b) accuracy during training for the edit-based model. Data from all five CV folds are superimposed. a Loss (categorical crossentropy) [-] Training Validation Epoch [-] b Accuracy [-] Training Validation Num. epochs [-] Figure S8: (a) Loss and (b) accuracy during training for the baseline model. Data from all five CV folds are superimposed. 3

14 a Loss (categorical crossentropy) [-] Training Validation Epoch [-] b Accuracy [-] Training Validation Num. epochs [-] Figure S9: (a) Loss and (b) accuracy during training for the hybrid model. Data from all five CV folds are superimposed. Hybrid model Figure S0: Histogram of model prediction confidence on the test sets to accompany Figure 5. 4

15 .0 Mean accuracy [-] Baseline model ( avg.) Edit-based model ( avg.) Hybrid model ( avg.) Number of candidates, binned [-] Figure S: Model accuracy as a function of the number of candidate products for each example, binned in intervals of 00. 5

16 Section S2.. Similarity Comparison Figure S2: Averaged predicted (a) rank and (b) probability of the recorded product as a function of the averaged top 00 similarity scores among other products in the dataset, binned in intervals of Shaded intervals correspond to ± one sample standard deviation calculated for each bin. We probe model generalizability by examining model performance as a function of recorded product similarity to other products in the USPTO dataset for the three models. The Sorensen-Dice coefficient calculated using Morgan circular fingerprints of radius 3 is used as implemented in RDKit to compare product similarity. The domain of applicability is assessed by examining the predicted rank and predicted probability of each reaction as a 6

17 function of the product s distance to the rest of the data set. The average of the top 00 similarity coefficients appearing in the full dataset is used as a crude measure of this distance. The reactions with unusual recorded products (i.e., low average top-00 similarity scores) are expected to have larger prediction errors. These absolute errors are binned, averaged, and displayed in Figure S2; the sample standard deviation for each bin is used to calculate the upper and lower bounds for the shaded interval. All models exhibit a positive correlation between performance and candidate similarity within the dataset. As discussed earlier, the baseline model is making predictions solely based on what products tend to look like, while the edit-based model is not able to see what the candidate products look like and is forced to examine only the reaction center. The existence of a trend for the edit-based model indicates that similar products tend to be formed through similar transformations. Along the same lines, if there are many similar products in the training dataset then the model will have more information about reactions leading to those types of products (and reactants with similar functional groups). In the hybrid model, explicit inclusion of product fingerprints does not substantially change the trends observed in Figure S2 for the edit-based model. Section S2.2. Input Feature Analysis As stated in the main text, the ablation experiments determine how significantly model performance suffers when a trained model is evaluated while masking certain input features. It does not determine how the model might have coped had that feature been absent during training. However, because models are trained using the Adadelta optimizer, similar to gradient descent with a dynamic learning rate, models will learn to depend on features that provide the most immediately useful information in a greedy fashion. 7

Supporting Information

Supporting Information Supporting Information Convolutional Embedding of Attributed Molecular Graphs for Physical Property Prediction Connor W. Coley a, Regina Barzilay b, William H. Green a, Tommi S. Jaakkola b, Klavs F. Jensen

More information

Convolutional Embedding of Attributed Molecular Graphs for Physical Property Prediction

Convolutional Embedding of Attributed Molecular Graphs for Physical Property Prediction Convolutional Embedding of Attributed Molecular Graphs for Physical Property Prediction The MIT Faculty has made this article openly available. Please share how this access benefits you. Your story matters.

More information

CSE 417T: Introduction to Machine Learning. Final Review. Henry Chai 12/4/18

CSE 417T: Introduction to Machine Learning. Final Review. Henry Chai 12/4/18 CSE 417T: Introduction to Machine Learning Final Review Henry Chai 12/4/18 Overfitting Overfitting is fitting the training data more than is warranted Fitting noise rather than signal 2 Estimating! "#$

More information

Structure Determination. How to determine what compound that you have? One way to determine compound is to get an elemental analysis

Structure Determination. How to determine what compound that you have? One way to determine compound is to get an elemental analysis Structure Determination How to determine what compound that you have? ne way to determine compound is to get an elemental analysis -basically burn the compound to determine %C, %H, %, etc. from these percentages

More information

ORGANIC - BROWN 8E CH.1 - COVALENT BONDING AND SHAPES OF MOLECULES

ORGANIC - BROWN 8E CH.1 - COVALENT BONDING AND SHAPES OF MOLECULES !! www.clutchprep.com CONCEPT: WHAT IS ORGANIC CHEMISTRY? Organic Chemistry is the chemistry of life. It consists of the study of molecules that are (typically) created and used by biological systems.

More information

ORGANIC - EGE 5E CH. 2 - COVALENT BONDING AND CHEMICAL REACTIVITY

ORGANIC - EGE 5E CH. 2 - COVALENT BONDING AND CHEMICAL REACTIVITY !! www.clutchprep.com CONCEPT: HYBRID ORBITAL THEORY The Aufbau Principle states that electrons fill orbitals in order of increasing energy. If carbon has only two unfilled orbitals, why does it like to

More information

Chapter 9 Aldehydes and Ketones Excluded Sections:

Chapter 9 Aldehydes and Ketones Excluded Sections: Chapter 9 Aldehydes and Ketones Excluded Sections: 9.14-9.19 Aldehydes and ketones are found in many fragrant odors of many fruits, fine perfumes, hormones etc. some examples are listed below. Aldehydes

More information

CHEM 109A Organic Chemistry

CHEM 109A Organic Chemistry CHEM 109A Organic Chemistry https://labs.chem.ucsb.edu/zakarian/armen/courses.html Chapter 2 Acids and Bases Central to Understanding Organic Chemistry Draw the conjugate acid of each of the following:

More information

Table 8.2 Detailed Table of Characteristic Infrared Absorption Frequencies

Table 8.2 Detailed Table of Characteristic Infrared Absorption Frequencies Table 8.2 Detailed Table of Characteristic Infrared Absorption Frequencies The hydrogen stretch region (3600 2500 cm 1 ). Absorption in this region is associated with the stretching vibration of hydrogen

More information

To learn how to use molecular modeling software, a commonly used tool in the chemical and pharmaceutical industry.

To learn how to use molecular modeling software, a commonly used tool in the chemical and pharmaceutical industry. NAME: Lab Day/Time: Molecular Modeling BV 1/2009 Purpose The purposes of this experiment are: To learn how to use molecular modeling software, a commonly used tool in the chemical and pharmaceutical industry.

More information

How to add your reactions to generate a Chemistry Space in KNIME

How to add your reactions to generate a Chemistry Space in KNIME How to add your reactions to generate a Chemistry Space in KNIME Introduction to CoLibri This tutorial is supposed to show how normal drawings of reactions can be easily edited to yield precise reaction

More information

p Bonds as Electrophiles

p Bonds as Electrophiles Chapter 7 p Bonds as Electrophiles REACTIONS OF CARBONYLS AND RELATED FUNCTIONAL GROUPS Copyright 2018 by Nelson Education Limited 1 7.2.1 Orbital structure of the carbonyl group Because oxygen is more

More information

MCAT Organic Chemistry Problem Drill 10: Aldehydes and Ketones

MCAT Organic Chemistry Problem Drill 10: Aldehydes and Ketones MCAT rganic Chemistry Problem Drill 10: Aldehydes and Ketones Question No. 1 of 10 Question 1. Which of the following is not a physical property of aldehydes and ketones? Question #01 (A) Hydrogen bonding

More information

Chapter 12 Mass Spectrometry and Infrared Spectroscopy

Chapter 12 Mass Spectrometry and Infrared Spectroscopy Organic Chemistry, 6 th Edition L. G. Wade, Jr. Chapter 12 Mass Spectrometry and Infrared Spectroscopy Jo Blackburn Richland College, Dallas, TX Dallas County Community College District 2006, Prentice

More information

75. A This is a Markovnikov addition reaction. In these reactions, the pielectrons in the alkene act as a nucleophile. The strongest electrophile will

75. A This is a Markovnikov addition reaction. In these reactions, the pielectrons in the alkene act as a nucleophile. The strongest electrophile will 71. B SN2 stands for substitution nucleophilic bimolecular. This means that there is a bimolecular rate-determining step. Therefore, the reaction will follow second-order kinetics based on the collision

More information

2. Separate the ions based on their mass to charge (m/e) ratio. 3. Measure the relative abundance of the ions that are produced

2. Separate the ions based on their mass to charge (m/e) ratio. 3. Measure the relative abundance of the ions that are produced I. Mass spectrometry: capable of providing both quantitative and qualitative information about samples as small as 100 pg (!) and with molar masses in the 10 4-10 5 kdalton range A. The mass spectrometer

More information

Infrared Spectroscopy: How to use the 5 zone approach to identify functional groups

Infrared Spectroscopy: How to use the 5 zone approach to identify functional groups Infrared Spectroscopy: How to use the 5 zone approach to identify functional groups Definition: Infrared Spectroscopy is the study of the Infrared Spectrum. An Infrared Spectrum is the plot of photon energy

More information

Loudon Chapter 17 Review: Allylic/Benzylic Reactivity

Loudon Chapter 17 Review: Allylic/Benzylic Reactivity Chapter 17 is all about reactions that happen at the position one away from an aromatic ring, or one away from a double bond. These are called the benzylic and allylic positions respectively. Benzyl and

More information

Computation of Octanol-Water Partition Coefficients by Guiding an Additive Model with Knowledge

Computation of Octanol-Water Partition Coefficients by Guiding an Additive Model with Knowledge SUPPORTING INFORMATION Computation of Octanol-Water Partition Coefficients by Guiding an Additive Model with Knowledge Tiejun Cheng, Yuan Zhao, Xun Li, Fu Lin, Yong Xu, Xinglong Zhang, Yan Li and Renxiao

More information

MULTIPLE CHOICE 2 points each

MULTIPLE CHOICE 2 points each Name: Date: Score: / 110 Chapter 1/ TEST 1 OPEN BOOK KEY Organic Chemistry MULTIPLE CHOICE 2 points each 1. An atom of which element would have an electron configuration of 1s 2 2s 2 2p 6 3s 2 3p 1? a.

More information

Organic Chemistry. Introduction to Organic Molecules and Functional Groups

Organic Chemistry. Introduction to Organic Molecules and Functional Groups For updated version, please click on http://ocw.ump.edu.my Organic Chemistry Introduction to Organic Molecules and Functional Groups by Dr. Seema Zareen & Dr. Izan Izwan Misnon Faculty Industrial Science

More information

A noble gas electronic configuration is highly desirable energetically

A noble gas electronic configuration is highly desirable energetically Chemistry 261 Fall 2018 Lecture 1 Emphasis 1. Organic chemistry is based on the chemistry of carbon, Z = 6, 1s 2 2s 2 2p 2. As you will recall, the 1s 2 electrons are buried, leaving the 2s 2 and 2p 2

More information

LECTURE #14 Thurs., Oct.20, Midterm exam: Tues.Oct.25 during class Ch.1, , 7.10, 2, Sections

LECTURE #14 Thurs., Oct.20, Midterm exam: Tues.Oct.25 during class Ch.1, , 7.10, 2, Sections CHEM 221 section 01 LECTURE #14 Thurs., Oct.20, 2005 Midterm exam: Tues.Oct.25 during class Ch.1, 7.2-7.5, 7.10, 2, 3.1-3.5 ASSIGNED READINGS: TODAY S CLASS: NEXT LECTURE: Sections 4.7-4.10 finish Ch.4,

More information

CHCl (vinyl chloride, part of new car smell )

CHCl (vinyl chloride, part of new car smell ) ame Key 1) (20 points) Draw a Lewis dot structure for each of the following molecules; show all lone pairs. Indicate the hybridization at all atoms except hydrogen, chlorine, and fluorine. (a) 2 (b) C

More information

Campbell Biology, 11e (Urry) Chapter 2 The Chemical Context of Life. 2.1 Multiple-Choice Questions

Campbell Biology, 11e (Urry) Chapter 2 The Chemical Context of Life. 2.1 Multiple-Choice Questions Campbell Biology, 11e (Urry) Chapter 2 The Chemical Context of Life 2.1 Multiple-Choice Questions 1) About 25 of the 92 natural elements are known to be essential to life. Which 4 of these 25 elements

More information

Essential Organic Chemistry. Chapter 9

Essential Organic Chemistry. Chapter 9 Essential Organic Chemistry Paula Yurkanis Bruice Chapter 9 Substitution and Elimination Reactions of Alkyl Halides 9.1 How Alkyl Halides React Substitution Reactions One group takes the place of another.

More information

ORGANIC - CLUTCH CH. 3 - ACIDS AND BASES.

ORGANIC - CLUTCH CH. 3 - ACIDS AND BASES. !! www.clutchprep.com CONCEPT: OVERVIEW OF CHEMICAL REACTIONS There are 4 types of common chemical reactions that we need to be familiar with in organic chemistry 1. Acid-Base Reactions: Two molecules

More information

Chem 1075 Chapter 19 Organic Chemistry Lecture Outline

Chem 1075 Chapter 19 Organic Chemistry Lecture Outline Chem 1075 Chapter 19 Organic Chemistry Lecture Outline Slide 2 Introduction Organic chemistry is the study of and its compounds. The major sources of carbon are the fossil fuels: petroleum, natural gas,

More information

Loudon Chapter 15 Review: Dienes and Aromaticity Jacquie Richardson, CU Boulder Last updated 1/28/2019

Loudon Chapter 15 Review: Dienes and Aromaticity Jacquie Richardson, CU Boulder Last updated 1/28/2019 This chapter looks at the behavior of carbon-carbon double bonds when several of them are in the same molecule. There are several possible ways they can be grouped. Conjugated dienes have a continuous

More information

More information can be found in Chapter 12 in your textbook for CHEM 3750/ 3770 and on pages in your laboratory manual.

More information can be found in Chapter 12 in your textbook for CHEM 3750/ 3770 and on pages in your laboratory manual. CHEM 3780 rganic Chemistry II Infrared Spectroscopy and Mass Spectrometry Review More information can be found in Chapter 12 in your textbook for CHEM 3750/ 3770 and on pages 13-28 in your laboratory manual.

More information

Synthesis Using Aromatic Materials

Synthesis Using Aromatic Materials Chapter 10 Synthesis Using Aromatic Materials ELECTROPHILIC AROMATIC SUBSTITUTION AND DIRECTED ORTHO METALATION Copyright 2018 by Nelson Education Limited 1 10.2 p Bonds Acting as Nucleophiles Copyright

More information

Symmetric Stretch: allows molecule to move through space

Symmetric Stretch: allows molecule to move through space BACKGROUND INFORMATION Infrared Spectroscopy Before introducing the subject of IR spectroscopy, we must first review some aspects of the electromagnetic spectrum. The electromagnetic spectrum is composed

More information

Using NMR and IR Spectroscopy to Determine Structures Dr. Carl Hoeger, UCSD

Using NMR and IR Spectroscopy to Determine Structures Dr. Carl Hoeger, UCSD Using NMR and IR Spectroscopy to Determine Structures Dr. Carl Hoeger, UCSD The following guidelines should be helpful in assigning a structure from NMR (both PMR and CMR) and IR data. At the end of this

More information

Dr. Mohamed El-Newehy

Dr. Mohamed El-Newehy By Dr. Mohamed El-Newehy Chemistry Department, College of Science, King Saud University http://fac.ksu.edu.sa/melnewehy Aldehydes and Ketones 1 Structure of Aldehydes and Ketones - Aldehydes and ketones

More information

Learning Guide for Chapter 17 - Dienes

Learning Guide for Chapter 17 - Dienes Learning Guide for Chapter 17 - Dienes I. Isolated, conjugated, and cumulated dienes II. Reactions involving allylic cations or radicals III. Diels-Alder Reactions IV. Aromaticity I. Isolated, Conjugated,

More information

12.1 The Nature of Organic molecules

12.1 The Nature of Organic molecules 12.1 The Nature of Organic molecules Organic chemistry: : The chemistry of carbon compounds. Carbon is tetravalent; it always form four bonds. Prentice Hall 2003 Chapter One 2 Organic molecules have covalent

More information

Amines Reading Study Problems Key Concepts and Skills Lecture Topics: Amines: structure and nomenclature

Amines Reading Study Problems Key Concepts and Skills Lecture Topics: Amines: structure and nomenclature Amines Reading: Wade chapter 19, sections 19-1-19-19 Study Problems: 19-37, 19-39, 19-40, 19-41, 19-44, 19-46, 19-47, 19-48, 19-51, 19-54 Key Concepts and Skills: Explain how the basicity of amines varies

More information

Learning Organic Chemistry

Learning Organic Chemistry Objective 1 Represent organic molecules with chemical formulas, expanded formulas, Lewis structures, skeletal structures. Determine shape (VSEPR), bond polarity, and molecule polarity. Identify functional

More information

Molecular Graphics. Molecular Graphics Expt. 1 1

Molecular Graphics. Molecular Graphics Expt. 1 1 Molecular Graphics Expt. 1 1 Molecular Graphics The study of organic chemistry has for more than a century and a half focussed on the relationship between the structure of an organic molecule (its three-dimensional

More information

How to Interpret an Infrared (IR) Spectrum

How to Interpret an Infrared (IR) Spectrum How to Interpret an Infrared (IR) Spectrum Infrared (IR) Spectroscopy allows the identification of particular bonds present within molecules. In this class we have simplified IR analysis by only focusing

More information

Covalent bonds can have ionic character These are polar covalent bonds

Covalent bonds can have ionic character These are polar covalent bonds Polar Covalent Bonds: Electronegativity Covalent bonds can have ionic character These are polar covalent bonds Bonding electrons attracted more strongly by one atom than by the other Electron distribution

More information

16. Chemistry of Benzene: Electrophilic Aromatic Substitution. Based on McMurry s Organic Chemistry, 7 th edition

16. Chemistry of Benzene: Electrophilic Aromatic Substitution. Based on McMurry s Organic Chemistry, 7 th edition 16. Chemistry of Benzene: Electrophilic Aromatic Substitution Based on McMurry s Organic Chemistry, 7 th edition Substitution Reactions of Benzene and Its Derivatives Benzene is aromatic: a cyclic conjugated

More information

Chapter 2. The Chemical Context of Life

Chapter 2. The Chemical Context of Life Chapter 2 The Chemical Context of Life 1 Matter Takes up space and has mass Exists as elements (pure form) and in chemical combinations called compounds 2 Elements Can t be broken down into simpler substances

More information

Mass Spectrometry. Introduction EI-MS and CI-MS Molecular mass & formulas Principles of fragmentation Fragmentation patterns Isotopic effects

Mass Spectrometry. Introduction EI-MS and CI-MS Molecular mass & formulas Principles of fragmentation Fragmentation patterns Isotopic effects Mass Spectrometry Introduction EI-MS and CI-MS Molecular mass & formulas Principles of fragmentation Fragmentation patterns Isotopic effects 1 Introduction to MS Mass spectrometry is the method of analysis

More information

Properties of Amines

Properties of Amines Properties of Amines 1. Boiling Point and Water Solubility It is instructive to compare the boiling points and water solubility of amines with those of corresponding alcohols and ethers. The dominant factor

More information

REALLY, REALLY STRONG BASES. DO NOT FORGET THIS!!!!!

REALLY, REALLY STRONG BASES. DO NOT FORGET THIS!!!!! CHEM 345 Problem Set 4 Key Grignard (RMgX) Problem Set You will be using Grignard reagents throughout this course to make carbon-carbon bonds. To use them effectively, it will require some knowledge from

More information

EXPT. 7 CHARACTERISATION OF FUNCTIONAL GROUPS USING IR SPECTROSCOPY

EXPT. 7 CHARACTERISATION OF FUNCTIONAL GROUPS USING IR SPECTROSCOPY EXPT. 7 CHARACTERISATION OF FUNCTIONAL GROUPS USING IR SPECTROSCOPY Structure 7.1 Introduction Objectives 7.2 Principle 7.3 Requirements 7.4 Strategy for the Interpretation of IR Spectra 7.5 Practice Problems

More information

Organic Chemistry. Second Edition. Chapter 19 Aromatic Substitution Reactions. David Klein. Klein, Organic Chemistry 2e

Organic Chemistry. Second Edition. Chapter 19 Aromatic Substitution Reactions. David Klein. Klein, Organic Chemistry 2e Organic Chemistry Second Edition David Klein Chapter 19 Aromatic Substitution Reactions Copyright 2015 John Wiley & Sons, Inc. All rights reserved. Klein, Organic Chemistry 2e 19.1 Introduction to Electrophilic

More information

Research Article. Chemical compound classification based on improved Max-Min kernel

Research Article. Chemical compound classification based on improved Max-Min kernel Available online www.jocpr.com Journal of Chemical and Pharmaceutical Research, 2014, 6(2):368-372 Research Article ISSN : 0975-7384 CODEN(USA) : JCPRC5 Chemical compound classification based on improved

More information

COURSE OBJECTIVES / OUTCOMES / COMPETENCIES.

COURSE OBJECTIVES / OUTCOMES / COMPETENCIES. COURSE OBJECTIVES / OUTCOMES / COMPETENCIES. By the end of the course, students should be able to do the following: See Test1-4 Objectives/Competencies as listed in the syllabus and on the main course

More information

CHEM 241 UNIT 5: PART A DETERMINATION OF ORGANIC STRUCTURES BY SPECTROSCOPIC METHODS [MASS SPECTROMETRY]

CHEM 241 UNIT 5: PART A DETERMINATION OF ORGANIC STRUCTURES BY SPECTROSCOPIC METHODS [MASS SPECTROMETRY] CHEM 241 UNIT 5: PART A DETERMINATION OF ORGANIC STRUCTURES BY SPECTROSCOPIC METHODS [MASS SPECTROMETRY] 1 Introduction Outline Mass spectrometry (MS) 2 INTRODUCTION The analysis of the outcome of a reaction

More information

Chapter 2: Acids and Bases

Chapter 2: Acids and Bases 1. Which of the following statements is a correct definition for a Brønsted-Lowry acid? A) Proton acceptor C) Electron pair acceptor B) Electron pair donor D) Proton donor 2. Which of the following statements

More information

Organic Chemistry Peer Tutoring Department University of California, Irvine

Organic Chemistry Peer Tutoring Department University of California, Irvine Organic Chemistry Peer Tutoring Department University of California, Irvine Arash Khangholi (akhangho@uci.edu) Cassandra Amezquita (camezqu1@uci.edu) Jiana Machhor (jmachhor@uci.edu) OCHEM 51A Professor

More information

CHEMISTRY 332 SUMMER 08 EXAM I June 26-28, 2008

CHEMISTRY 332 SUMMER 08 EXAM I June 26-28, 2008 First Three Letters of Last Name NAME Network ID CHEMISTRY 332 SUMMER 08 EXAM I June 26-28, 2008 The following materials are permissible during the exam: molecular model kits, course notes (printed, electronic,

More information

CHEMICAL BONDING. Valence Electrons. Chapter Ten

CHEMICAL BONDING. Valence Electrons. Chapter Ten CHEMICAL BONDING Chapter Ten Valence Electrons! The electrons occupying the outermost energy level of an atom are called the valence electrons; all other electrons are called the core electrons.! The valence

More information

antidisestablishmenttarianism an-ti-dis-es-tab-lish-ment-ta-ri-an-ism

antidisestablishmenttarianism an-ti-dis-es-tab-lish-ment-ta-ri-an-ism What do you do when you encounter a very long, difficult word? 1 antidisestablishmenttarianism break it up into syllables: an-ti-dis-es-tab-lish-ment-ta-ri-an-ism meaning: antidisestablishmenttarianism

More information

Structure and Bonding of Organic Molecules

Structure and Bonding of Organic Molecules Chem 220 Notes Page 1 Structure and Bonding of Organic Molecules I. Types of Chemical Bonds A. Why do atoms forms bonds? Atoms want to have the same number of electrons as the nearest noble gas atom (noble

More information

What Do Neural Networks Do? MLP Lecture 3 Multi-layer networks 1

What Do Neural Networks Do? MLP Lecture 3 Multi-layer networks 1 What Do Neural Networks Do? MLP Lecture 3 Multi-layer networks 1 Multi-layer networks Steve Renals Machine Learning Practical MLP Lecture 3 7 October 2015 MLP Lecture 3 Multi-layer networks 2 What Do Single

More information

EXPT. 9 DETERMINATION OF THE STRUCTURE OF AN ORGANIC COMPOUND USING UV, IR, NMR AND MASS SPECTRA

EXPT. 9 DETERMINATION OF THE STRUCTURE OF AN ORGANIC COMPOUND USING UV, IR, NMR AND MASS SPECTRA EXPT. 9 DETERMINATION OF THE STRUCTURE OF AN ORGANIC COMPOUND USING UV, IR, NMR AND MASS SPECTRA Structure 9.1 Introduction Objectives 9.2 Principle 9.3 Requirements 9.4 Strategy for the Structure Elucidation

More information

ORGANIC - BROWN 8E CH.4 - ACIDS AND BASES.

ORGANIC - BROWN 8E CH.4 - ACIDS AND BASES. !! www.clutchprep.com CONCEPT: FREE ENERGY DIAGRAMS Atoms save energy by forming bonds. Free energy diagrams show overall changes in potential energy during reactions. Free energy diagrams give us information

More information

General Infrared Absorption Ranges of Various Functional Groups

General Infrared Absorption Ranges of Various Functional Groups General Infrared Absorption Ranges of Various Functional Groups Frequency Range Bond Type of Compound cm -1 Intensity C Alkanes 2850-2970 Strong 1340-1470 Strong C Alkenes 3010-3095 Medium 675-995 Strong

More information

OAT Organic Chemistry - Problem Drill 19: NMR Spectroscopy and Mass Spectrometry

OAT Organic Chemistry - Problem Drill 19: NMR Spectroscopy and Mass Spectrometry OAT Organic Chemistry - Problem Drill 19: NMR Spectroscopy and Mass Spectrometry Question No. 1 of 10 Question 1. Which statement concerning NMR spectroscopy is incorrect? Question #01 (A) Only nuclei

More information

Classes of Organic Compounds

Classes of Organic Compounds Unit 1 Functional Groups Depicting Structures of rganic ompounds Lewis Structures ondensed structural formulas Line angle drawings 3-dimensional structures Resonance Structures Acid-Base Reactions urved

More information

Lecture 13A 05/11/12. Amines. [Sn2; Hofmann elimination; reduction of alkyl azides, amides, nitriles, imines; reductive amination; Gabriel synthesis]

Lecture 13A 05/11/12. Amines. [Sn2; Hofmann elimination; reduction of alkyl azides, amides, nitriles, imines; reductive amination; Gabriel synthesis] Lecture 13A 05/11/12 Amines [Sn2; ofmann elimination; reduction of alkyl azides, amides, nitriles, imines; reductive amination; Gabriel synthesis] Curtius and ofmann rearrangements Both of these, in principle,

More information

Chapter 8. Acidity, Basicity and pk a

Chapter 8. Acidity, Basicity and pk a Chapter 8 Acidity, Basicity and pk a p182 In this reaction water is acting as a base, according to our definition above, by accepting a proton from HCl which in turn is acting as an acid by donating a

More information

Chapter 2. Molecular Representations

Chapter 2. Molecular Representations hapter 2. Molecular Representations 3 () 3 ( 3 ) 2 3 3 3 8 Lewis (Kekule) structure ondensed and par6ally condensed structure Skeletal (bond- line) structure Molecular formula Amoxicillin a widely prescribed

More information

Comparison of Shannon, Renyi and Tsallis Entropy used in Decision Trees

Comparison of Shannon, Renyi and Tsallis Entropy used in Decision Trees Comparison of Shannon, Renyi and Tsallis Entropy used in Decision Trees Tomasz Maszczyk and W lodzis law Duch Department of Informatics, Nicolaus Copernicus University Grudzi adzka 5, 87-100 Toruń, Poland

More information

Unit title: Chemistry for Applied Biologists

Unit title: Chemistry for Applied Biologists Unit title: Chemistry for Applied Biologists Unit code: K/601/0292 QCF level: 5 Credit value: 15 Aim This unit covers bonding, thermodynamics, reaction rates, equilibrium, oxidation and reduction and organic

More information

Carbon Compounds. Chemical Bonding Part 2

Carbon Compounds. Chemical Bonding Part 2 Carbon Compounds Chemical Bonding Part 2 Introduction to Functional Groups: Alkanes! Alkanes Compounds that contain only carbons and hydrogens, with no double or triple bonds.! Alkyl Groups A part of a

More information

Analysis of NMR Spectra Part 2

Analysis of NMR Spectra Part 2 Analysis of NMR Spectra Part 2-1- Analysis of NMR Spectra Part 2 "Things should be made as simple as possible, but not any simpler." Albert Einstein 1.1 Review of Basic NMR Concepts NMR analysis is a complex

More information

First Midterm Exam Monday, October 16, You may use model kits but no other material with chemical information without instructor approval.

First Midterm Exam Monday, October 16, You may use model kits but no other material with chemical information without instructor approval. CH 334 Form A First Midterm Exam Monday, October 16, 2017 Name KEY You may use model kits but no other material with chemical information without instructor approval. Please do not use any electronic devices

More information

Infrared Spectroscopy

Infrared Spectroscopy Infrared Spectroscopy Introduction Spectroscopy is an analytical technique which helps determine structure. It destroys little or no sample. The amount of light absorbed by the sample is measured as wavelength

More information

Learning Guide for Chapter 11 - Alkenes I

Learning Guide for Chapter 11 - Alkenes I Learning Guide for Chapter 11 - Alkenes I I. Introduction to alkenes - p 1 bond structure, classifying alkenes, reactivity, physical properties, occurrences and uses, spectroscopy, stabilty II. Unsaturation

More information

PAPER No. 5:Organic Chemistry-2(Reaction Mechanism-1) MODULE No. 6: Generation, Structure, Stability and Reactivity of Carbocations

PAPER No. 5:Organic Chemistry-2(Reaction Mechanism-1) MODULE No. 6: Generation, Structure, Stability and Reactivity of Carbocations Subject Chemistry Paper No and Title Module No and Title Module Tag Paper No. 5: Organic Chemistry-II (Reaction Mechanism-1) Generation, Structure, Stability and Reactivity of Carbocations CHE_P5_M6 TABLE

More information

K + 09/04/2018. Structure of Organic Molecules. Ionic bond. The compound potassium fluoride consists of potassium (K+) ions and fluoride (F-) ions

K + 09/04/2018. Structure of Organic Molecules. Ionic bond. The compound potassium fluoride consists of potassium (K+) ions and fluoride (F-) ions Structure of rganic Molecules Ref. books: 1. A text book of rganic Chemistry - B.S. Bahl and Arun Bahl 2. rganic Chemistry - R.T. Morrison and R. N. Boyd Atom: The smallest part of an element that can

More information

Nuggets of Knowledge for Chapter 17 Dienes and Aromaticity Chem 2320

Nuggets of Knowledge for Chapter 17 Dienes and Aromaticity Chem 2320 Nuggets of Knowledge for Chapter 17 Dienes and Aromaticity Chem 2320 I. Isolated, cumulated, and conjugated dienes A diene is any compound with two or C=C's is a diene. Compounds containing more than two

More information

Chapter 12 Alcohols from Carbonyl Compounds: Oxidation-Reduction and Organometallic Compounds

Chapter 12 Alcohols from Carbonyl Compounds: Oxidation-Reduction and Organometallic Compounds Chapter 12 Alcohols from Carbonyl Compounds: Oxidation-Reduction and Organometallic Compounds Introduction Several functional groups contain the carbonyl group Carbonyl groups can be converted into alcohols

More information

Molecular Geometry: VSEPR model stand for valence-shell electron-pair repulsion and predicts the 3D shape of molecules that are formed in bonding.

Molecular Geometry: VSEPR model stand for valence-shell electron-pair repulsion and predicts the 3D shape of molecules that are formed in bonding. Molecular Geometry: VSEPR model stand for valence-shell electron-pair repulsion and predicts the 3D shape of molecules that are formed in bonding. Sigma and Pi Bonds: All single bonds are sigma(σ), that

More information

Chemical Reaction Databases Computer-Aided Synthesis Design Reaction Prediction Synthetic Feasibility

Chemical Reaction Databases Computer-Aided Synthesis Design Reaction Prediction Synthetic Feasibility Chemical Reaction Databases Computer-Aided Synthesis Design Reaction Prediction Synthetic Feasibility Dr. Wendy A. Warr http://www.warr.com Warr, W. A. A Short Review of Chemical Reaction Database Systems,

More information

Chimica Farmaceutica

Chimica Farmaceutica Chimica Farmaceutica Drug Targets Why should chemicals, some of which have remarkably simple structures, have such an important effect «in such a complicated and large structure as a human being? The answer

More information

Classifying Organic Chemical Reactions

Classifying Organic Chemical Reactions Chemical Reactivity Organic chemistry encompasses a very large number of compounds ( many millions ), and our previous discussion and illustrations have focused on their structural characteristics. Now

More information

12. Structure Determination: Mass Spectrometry and Infrared Spectroscopy

12. Structure Determination: Mass Spectrometry and Infrared Spectroscopy 12. Structure Determination: Mass Spectrometry and Infrared Spectroscopy Determining the Structure of an Organic Compound The analysis of the outcome of a reaction requires that we know the full structure

More information

Chapter 1: Atomic and Molecular Structure

Chapter 1: Atomic and Molecular Structure Chapter 1: Atomic and Molecular Structure LEARNING OBJECTIVES Determine the number of valence and/or core electrons for an atom or ion. Multiple Choice: 1, 6, 11 Interpret the electron configuration and

More information

CARBONYL COMPOUNDS: OXIDATION-REDUCTION REACTION

CARBONYL COMPOUNDS: OXIDATION-REDUCTION REACTION CARBONYL COMPOUNDS: OXIDATION-REDUCTION REACTION Introduction Several functional groups contain the carbonyl group Carbonyl groups can be converted into alcohols by various reactions Structure of the Carbonyl

More information

Glendale Community College, AZ

Glendale Community College, AZ Glendale Community College, AZ Mrs. Sandy Gruin n BS in chemistry from Bowling Green State University n MS in Biochemistry from Montana State University n NIH research grant University of Pennsylvania

More information

ORGANIC - BRUICE 8E CH MASS SPECT AND INFRARED SPECTROSCOPY

ORGANIC - BRUICE 8E CH MASS SPECT AND INFRARED SPECTROSCOPY !! www.clutchprep.com CONCEPT: PURPOSE OF ANALYTICAL TECHNIQUES Classical Methods (Wet Chemistry): Chemists needed to run dozens of chemical reactions to determine the type of molecules in a compound.

More information

Text Mining. Dr. Yanjun Li. Associate Professor. Department of Computer and Information Sciences Fordham University

Text Mining. Dr. Yanjun Li. Associate Professor. Department of Computer and Information Sciences Fordham University Text Mining Dr. Yanjun Li Associate Professor Department of Computer and Information Sciences Fordham University Outline Introduction: Data Mining Part One: Text Mining Part Two: Preprocessing Text Data

More information

16. Chemistry of Benzene: Electrophilic Aromatic Substitution جانشینی الکتروندوستی آروماتیک شیمی آلی 2

16. Chemistry of Benzene: Electrophilic Aromatic Substitution جانشینی الکتروندوستی آروماتیک شیمی آلی 2 16. Chemistry of Benzene: Electrophilic Aromatic Substitution جانشینی الکتروندوستی آروماتیک شیمی آلی 2 Dr M. Mehrdad University of Guilan, Department of Chemistry, Rasht, Iran m-mehrdad@guilan.ac.ir Based

More information

Synthesis of Nitriles a. dehydration of 1 amides using POCl 3 : b. SN2 reaction of cyanide ion on halides:

Synthesis of Nitriles a. dehydration of 1 amides using POCl 3 : b. SN2 reaction of cyanide ion on halides: I. Nitriles Nitriles consist of the CN functional group, and are linear with sp hybridization on C and N. Nitriles are non-basic at nitrogen, since the lone pair exists in an sp orbital (50% s character

More information

CHEMICAL BONDS. Determining Percentage Composition, Empirical, and Molecular Formulas for Compounds:

CHEMICAL BONDS. Determining Percentage Composition, Empirical, and Molecular Formulas for Compounds: CHEMICAL BONDS Chemical Bonds: The strong electrostatic forces of attraction holding atoms together in a unit are called chemical bonds (EU 2.C). Reflect a balance in the attractive and repulsive forces

More information

Hour Examination # 1

Hour Examination # 1 CHEM 2410 Organic Chemistry 1 Fall 2017 Exam # 1 Problem Booklet Page 1 of 11 CHEM 2410 Organic Chemistry 1 Fall 2017 Exam Booklet No. Instructors: Paul Bracher & Erin Whitteck Hour Examination # 1 Wednesday,

More information

Chapter 8 Chemical Bonding

Chapter 8 Chemical Bonding Chapter 8 Chemical Bonding Types of Bonds Ionic Bonding Covalent Bonding Shapes of Molecules 8-1 Copyright The McGraw-Hill Companies, Inc. Permission required for reproduction or display. Table 8.1 Two

More information

Additions to the Carbonyl Groups

Additions to the Carbonyl Groups Chapter 18 Additions to the Carbonyl Groups Nucleophilic substitution (S N 2andS N 1) reaction occurs at sp3 hybridized carbons with electronegative leaving groups Why? The carbon is electrophilic! Addition

More information

DAMIETTA UNIVERSITY. Energy Diagram of One-Step Exothermic Reaction

DAMIETTA UNIVERSITY. Energy Diagram of One-Step Exothermic Reaction DAMIETTA UNIVERSITY CHEM-103: BASIC ORGANIC CHEMISTRY LECTURE 5 Dr Ali El-Agamey 1 Energy Diagram of One-Step Exothermic Reaction The vertical axis in this graph represents the potential energy. The transition

More information

Calculate a rate given a species concentration change.

Calculate a rate given a species concentration change. Kinetics Define a rate for a given process. Change in concentration of a reagent with time. A rate is always positive, and is usually referred to with only magnitude (i.e. no sign) Reaction rates can be

More information

Representation of molecular structures. Coutersy of Prof. João Aires-de-Sousa, University of Lisbon, Portugal

Representation of molecular structures. Coutersy of Prof. João Aires-de-Sousa, University of Lisbon, Portugal Representation of molecular structures Coutersy of Prof. João Aires-de-Sousa, University of Lisbon, Portugal A hierarchy of structure representations Name (S)-Tryptophan 2D Structure 3D Structure Molecular

More information

16. Chemistry of Benzene: Electrophilic Aromatic Substitution جانشینی الکتروندوستی آروماتیک شیمی آلی 2

16. Chemistry of Benzene: Electrophilic Aromatic Substitution جانشینی الکتروندوستی آروماتیک شیمی آلی 2 16. Chemistry of Benzene: Electrophilic Aromatic Substitution جانشینی الکتروندوستی آروماتیک شیمی آلی 2 Dr M. Mehrdad University of Guilan, Department of Chemistry, Rasht, Iran m-mehrdad@guilan.ac.ir Based

More information

Aside on Chapter 22, Organic Chemistry. Why is organic chemistry important:

Aside on Chapter 22, Organic Chemistry. Why is organic chemistry important: Aside on Chapter 22, Organic Chemistry Why is organic chemistry important: 1) Materials 2) Energy (oil & coal) 3) Human health a) diagnosis b) treatment (drugs) 4) A drug development logic progression

More information

Neural Networks and Deep Learning

Neural Networks and Deep Learning Neural Networks and Deep Learning Professor Ameet Talwalkar November 12, 2015 Professor Ameet Talwalkar Neural Networks and Deep Learning November 12, 2015 1 / 16 Outline 1 Review of last lecture AdaBoost

More information

Chem 14C Lecture 1 Spring 2016 Exam 2 Solutions Page 1

Chem 14C Lecture 1 Spring 2016 Exam 2 Solutions Page 1 Chem 14C Lecture 1 Spring 2016 Exam 2 Solutions Page 1 Statistics: High score, average, and low score will be posted on the course web site after exam grading is complete. Some questions have more than

More information