Product (chemistry)Products are the species formed from chemical reactions. During a chemical reaction, reactants are transformed into products after passing through a high energy transition state. This process results in the consumption of the reactants. It can be a spontaneous reaction or mediated by catalysts which lower the energy of the transition state, and by solvents which provide the chemical environment necessary for the reaction to take place. When represented in chemical equations, products are by convention drawn on the right-hand side, even in the case of reversible reactions.
MolecularityIn chemistry, molecularity is the number of molecules that come together to react in an elementary (single-step) reaction and is equal to the sum of stoichiometric coefficients of reactants in the elementary reaction with effective collision (sufficient energy) and correct orientation. Depending on how many molecules come together, a reaction can be unimolecular, bimolecular or even trimolecular. The kinetic order of any elementary reaction or reaction step is equal to its molecularity, and the rate equation of an elementary reaction can therefore be determined by inspection, from the molecularity.
Conversion to JudaismConversion to Judaism (גיור, giyur) is the process by which non-Jews adopt the Jewish religion and become members of the Jewish ethnoreligious community. It thus resembles both conversion to other religions and naturalization. The procedure and requirements for conversion depend on the sponsoring denomination. Furthermore, a conversion done in accordance with one Jewish denomination is not a guarantee of recognition by another denomination.
Yield (chemistry)In chemistry, yield, also referred to as reaction yield, is a measure of the quantity of moles of a product formed in relation to the reactant consumed, obtained in a chemical reaction, usually expressed as a percentage. Yield is one of the primary factors that scientists must consider in organic and inorganic chemical synthesis processes. In chemical reaction engineering, "yield", "conversion" and "selectivity" are terms used to describe ratios of how much of a reactant was consumed (conversion), how much desired product was formed (yield) in relation to the undesired product (selectivity), represented as X, Y, and S.
Molar massIn chemistry, the molar mass (M) of a chemical compound is defined as the ratio between the mass and the amount of substance (measured in moles) of any sample of said compound. The molar mass is a bulk, not molecular, property of a substance. The molar mass is an average of many instances of the compound, which often vary in mass due to the presence of isotopes. Most commonly, the molar mass is computed from the standard atomic weights and is thus a terrestrial average and a function of the relative abundance of the isotopes of the constituent atoms on Earth.
Mole fractionIn chemistry, the mole fraction or molar fraction (xi or χi) is defined as unit of the amount of a constituent (expressed in moles), ni, divided by the total amount of all constituents in a mixture (also expressed in moles), ntot. This expression is given below: The sum of all the mole fractions is equal to 1: The same concept expressed with a denominator of 100 is the mole percent, molar percentage or molar proportion (mol%). The mole fraction is also called the amount fraction.
Carbon dioxideCarbon dioxide (chemical formula ) is a chemical compound made up of molecules that each have one carbon atom covalently double bonded to two oxygen atoms. It is found in the gas state at room temperature, and as the source of available carbon in the carbon cycle, atmospheric is the primary carbon source for life on Earth. In the air, carbon dioxide is transparent to visible light but absorbs infrared radiation, acting as a greenhouse gas. Carbon dioxide is soluble in water and is found in groundwater, lakes, ice caps, and seawater.
Mole (unit)The mole (symbol mol) is the unit of measurement for amount of substance, a quantity proportional to the number of elementary entities of a substance. It is a base unit in the International System of Units (SI). One mole contains exactly 6.02214076e23 elementary entities (602 sextillion or 602 billion times a trillion), which can be atoms, molecules, ions, or other particles. The number of particles in a mole is the Avogadro number (symbol N0) and the numerical value of the Avogadro constant (symbol NA) expressed in mol-1.
OxygenOxygen is the chemical element with the symbol O and atomic number 8. It is a member of the chalcogen group in the periodic table, a highly reactive nonmetal, and an oxidizing agent that readily forms oxides with most elements as well as with other compounds. Oxygen is Earth's most abundant element, and after hydrogen and helium, it is the third-most abundant element in the universe. At standard temperature and pressure, two atoms of the element bind to form dioxygen, a colorless and odorless diatomic gas with the formula O2.
ContinuationIn computer science, a continuation is an abstract representation of the control state of a computer program. A continuation implements (reifies) the program control state, i.e. the continuation is a data structure that represents the computational process at a given point in the process's execution; the created data structure can be accessed by the programming language, instead of being hidden in the runtime environment. Continuations are useful for encoding other control mechanisms in programming languages such as exceptions, generators, coroutines, and so on.
Delimited continuationIn programming languages, a delimited continuation, composable continuation or partial continuation, is a "slice" of a continuation frame that has been reified into a function. Unlike regular continuations, delimited continuations return a value, and thus may be reused and composed. Control delimiters, the basis of delimited continuations, were introduced by Matthias Felleisen in 1988 though early allusions to composable and delimited continuations can be found in Carolyn Talcott's Stanford 1984 dissertation, Felleisen et al.
Call-with-current-continuationIn the Scheme computer programming language, the procedure call-with-current-continuation, abbreviated call/cc, is used as a control flow operator. It has been adopted by several other programming languages. Taking a function f as its only argument, (call/cc f) within an expression is applied to the current continuation of the expression. For example ((call/cc f) e2) is equivalent to applying f to the current continuation of the expression.