Solving Equations and Optimizing Functions

Size: px
Start display at page:

Download "Solving Equations and Optimizing Functions"

Transcription

1 Solving Equations and Optimizing Functions At the end of this lecture, you will be able to: solve for the roots of a polynomial using polyroots. obtain approximate solutions to single equations from tracing a graph. obtain a solution to a single non-linear equation using the root function. solve systems of non-linear equations using Solve Blocks 1. Solving for the roots of a polynomial. Description The polyroots() function is simple and powerful. It finds ALL the roots of a polynomial, both real and imaginary. Demonstration Find all the roots, both real and imaginary, of the following equation. x 6 x 5 3x 4 3x 3 x x = Step 1: Define the input matrix containing the coefficients of each term. coeff Key Points: 1. The coefficient matrix is a single column with n+1 rows where n is the order of the polynomial.. The coefficient matrix is ordered from x to x n. 3. Polynomial must be place in form where RHS =. Step : Use the polyroots function. Practice polyroots( coeff ) i i 1.71 Solve for all the roots, both real and imaginary, of the following equation. x 4 x = coeff polyroots coeff i.7.933i.856

2 . Solving Single Equations Using the root() Function. Description The root() function offers a method of finding the solution to single equations of any type, linear or non-linear. Demonstration Find the roots of the following equation: 1 sin( x) = x Step 1: Put the equation in the form f(x) =. 1 sin( x) x = Step : The root function requires a guess value so first plot the function. 1 1 sin( x) x x Step 3: Use root function with different guesses to find all the roots. Guesses Solutions a 6 a 3 a a 3 a 6 root( 1sin( a) aa ) root( 1sin( a) aa ) root( 1sin( a) aa ) root( 1sin( a) aa ) root( 1sin( a) aa ) Alternate Method: Define a function. f( x) 1sin( x) x Guess Solution b 6 root( f ( b) b) Key Points: 1. The root function needs a guess value. You can get the guess value from a graph of the function.. The guess value is the second argument of the function. The first argument is the function written in terms of the guess value. 3. Solving Systems of Nonlinear Equations Using Solve Blocks (Given/Find Blocks) Description Solve blocks (given/find blocks) can be used to solve systems of non-linear equations. If you have a system of linear equations, matrix math should be used to obtain the solutions. If the equations are not linear, the only other way to

3 solve them in Mathcad is using a solve block. The Procedure 1. Define the guess value for each unknown.. Initiate a Solve Block with the key word Given 3. Enter the equations to be solved. a. You must use a bold equals to define the equations. b. You must also use the variable names used for the guess values. 4. Complete the solve block with a find statement. a. find(x,y,...) b. The arguments to the find statement are the unknowns. Demonstration for Single Equation Use a Solve Block to find the largest solution of the equation: x 6 x 5 x 4 = Step : Plot the function to get guesses. f ( x) x 6 x 5 x 4 1 Step 1: Guess x g Step : Given Given f( x) Step 3: Equation x g x g x g = 1 Step 4: Find ans Find x g ans x Key Points: 1. Use := Outside of the given block and bold = inside the given block.. The equations inside the given block must be written in terms of the guess variable. Demonstration for Multiple Equations Find a solution that satisfies the following equations: x y =.9 y = cos π x Step : Plot the functions to get guesses.

4 1 Step 1: Guesses x g.5 y g.9 Step : Given Given Step 3: Equations x g y g =.9 y g = cos πx g.9x cos πx x Step 4: Find xx yy Find x g y g xx.76 yy.98 Key Points: 1. You need a guess value for each unknown.. Any variable not placed as an argument inside the find() is considered a constant. Other Solve Block Tips 1. The fewer number of equations inside the given block, the easier it is for the solution to converge.. You can include Boolean operators (<, >, etc.) inside the given block to create constraints. 3. If you want to obtain other solutions to the same system of equations, you can copy/paste the entire solve block to a new location on the sheet and just change the guesses. 4. A solve block can also be terminated with the minerr(), maximize() and minimize() statements. Minerr Demonstration Background: Sometimes, the solve block cannot converge to a solution, but you want the best solution to equation. Minerr can be used to find the values of the unknowns that minimizes the error. Find the x and y that best satisfy the following expressions. y = x y =.5 x Step : Plot the functions to get guesses. 4 Step 1: Guesses x g 1 y g 1 x.5x Step : Given Given Step 3: Equations y g x g = 4 4 x y g =.5 x g

5 Step 4: Find ans Minerr x g y g ans.5.15 Using Functions in Solve Blocks The heat, q, needed to change the temperature of a gas at low pressures from T 1 to T is given by q = n T c p ( T) dt T 1 where c p is the heat capacity of the gas. If 1, BTU is removed from 5 moles of ethane initially at 8 F, calculate the final temperature of the gas. The heat capacity for ethane is given below. Please report your answe Rankine. Equation c p ( t) t K t K t K t K erg molk Known Quantities: T 1 ( ) R q 1BTU n 5mol Guess T g ( ) R T g Given q = n c p () t dt T FindT g T R T 1 Key Points: 1. Notice that the variable given to c p is the variable of integration, not the guess.. By labeling the guess at T g, you can use T to label the final answer. 3. By using a function for the heat capacity, you can use c p for later calculations. Reducing the Number of Equations in a Solve Block. Background Numerical solvers, such as the solver in Excel or Given..Find Blocks in Mathcad, make use of sophisticated n algorithms to find answers to systems of equations. When using solvers, it is best to reduce the number of eq and unknowns. It is generally easier to solve for two unknowns than three unknowns.

6 Techniques to Reduce Equations 1.. Substitute simple relationships when possible. For example, mole fractions must sum to one, so instead of and x, use x 1 and (1-x 1 ) in your equations. Often, physical properties are correlated as a function of another variable such as temperature. In this case function to reduce the number of equations. Demonstration/Practice Imagine mixing liquid benzene(species 1) and toluene(species ) together in an initially empty contain temperatures and pressures at equilibrium, some of the liquid from both species will evaporate into the and some will be left liquid phase. Raoult's law may be used to describe the distribution of species in e for ideal cases. For the specific example mentioned above, Raoult's law gives the following two expre describing the equilibrium state y 1 P = x 1 Psat 1 y P = x Psat where y i is the mole fraction of species i (either 1 or ) in the vapor phase, x i is the mole fraction of spe liquid phase, Psat i is the vapor pressure of species i at the system temperature T, and P is the system pr vapor pressure of benzene and toluene can be found using the Antoine Equation ln( Psat) = A B T C where Psat is in kpa, T is in C, and A, B, and C are found in the table below. Antione Constants for Acetone and Methanol Compound A B C Benzene Toluene If a mixture of benzene and toluene has y 1 =.33 and P = 1 kpa, find x 1. Solution Method 1 (Poor) Step 1: Define the knowns: y 1.33 P 1 Step : List the unknowns: y x 1 x Psat 1 Psat Step 3: Define guesses for each unknown: y g.5 x1 g.5 x g.5 Psat1 g 1 Psat g 1 Step 4: Use Given..Find to solve for six unknowns. Given x1 g x g = 1 y 1 y g = 1 y 1 P = x1 g Psat1 g y g P = x g Psat g

7 x 1 x y Psat 1 Psat T ln Psat1 g = ln Psat T g g = T g Find x1 g x g y g Psat1 g Psat g T g x x.87 y.67 Questions: 1. What don't you like about the above setup?. How can functions be used to improve the situation? 3. What simple relationships can be used to improve the situation? Psat Psat T Solution Method (Better) ORIGIN 1 A B C B i ( ) expa i t K Psat it C i kpa y 1.33 x1 g.5 T g 4K P 1kPa Given x1 g Psat 1T g = y 1 P 1 x1 g PsatT g = 1 y 1 P x 1 T Find x1 g T g x T K

8

9

10

11 r in K numerical quations

12 using x 1, define a er. At vapor phase each phase ession ecies i in the ressure. The T T g 5

13 1

Mathcad Lecture #6 In-class Worksheet Solving Equations and Optimizing Functions

Mathcad Lecture #6 In-class Worksheet Solving Equations and Optimizing Functions Mathcad Lecture #6 In-class Worksheet Solving Equations and Optimizing Functions At the end of this lecture, you will be able to: solve for the roots of a polynomial using polyroots. obtain approimate

More information

Lecture 20 - Plotting and Nonlinear Equations

Lecture 20 - Plotting and Nonlinear Equations Lecture 2 - Plotting and Nonlinear Equations Outline Prayer/Spiritual Thought Announcements 3. 4. Plotting Plotting Roots of Polynomials Single Nonlinear Equations Systems of Nonlinear Equations Plots

More information

The Equilibrium Constant, K P

The Equilibrium Constant, K P The Equilibrium Constant, K Consider the gas-phase reaction: aa + bb yy + zz The thermodynamic equilibrium constant K is Yy z Z K = aa b B (standard state is 1 bar pressure) And by the same argument used

More information

Polymath Examples: Nonlinear Algebraic Equation and Regression Problems

Polymath Examples: Nonlinear Algebraic Equation and Regression Problems Polymath Examples: Nonlinear Algebraic Equation and Regression Problems Problem Flash evaporation of an ideal multicomponent mixture Concept Calculation of bubble point and dew point temperatures and associated

More information

Vapor Pressure & Raoult s Law. This is the pressure above a solid or liquid due to evaporation.

Vapor Pressure & Raoult s Law. This is the pressure above a solid or liquid due to evaporation. 1. What is Vapor Pressure? Vapor Pressure & Raoult s Law This is the pressure above a solid or liquid due to evaporation. 2. Can a solute affect the vapor pressure of a solvent? Yes. 3. What do solutes

More information

General Chemistry revisited

General Chemistry revisited General Chemistry revisited A(g) + B(g) C(g) + D(g) We said that G = H TS where, eg, H = f H(C) + f H(D) - f H(A) - f H(B) G < 0 implied spontaneous to right G > 0 implied spontaneous to left In a very

More information

Distillation Course MSO2015

Distillation Course MSO2015 Distillation Course MSO2015 Distillation Distillation is a process in which a liquid or vapour mixture of two or more substances is separated into its component fractions of desired purity, by the application

More information

CHEM 254 EXPERIMENT 7. Phase Diagrams - Liquid Vapour Equilibrium for two component solutions

CHEM 254 EXPERIMENT 7. Phase Diagrams - Liquid Vapour Equilibrium for two component solutions pressure CHEM 254 EXPERIMENT 7 Phase Diagrams - Liquid Vapour Equilibrium for two component solutions The partial pressures of the components of an ideal solution of two volatile liquids are related to

More information

Introduction to Mathcad 15 part 2

Introduction to Mathcad 15 part 2 Introduction to Mathcad 15 part 2 Plots It is import ant to be able to visualize the result in other forms than just tables and numbers. Mathcad offers a wide variety of plots and graphs to help you present

More information

pv m = RT + Bp The simplest equation for calculating fugacity, given an equation of state, is Z=1 + B RT p

pv m = RT + Bp The simplest equation for calculating fugacity, given an equation of state, is Z=1 + B RT p Chem 42/523 Chemical hermodynamics Homework Assignment # 5 1. *Assume O 2 gas obeys the virial equation pv m = R + Bp with B = 12.5 cm 3 mol 1 at 298.15 K. Calculate the fugacity of oxygen at p = 1. MPa

More information

_".. psat. Alternatively, Eq. (10.5) may be solved for Xi, in which case summing over all species yields: P=----- (10.

_.. psat. Alternatively, Eq. (10.5) may be solved for Xi, in which case summing over all species yields: P=----- (10. tion 10.5. VLE by Modified Raoult's Law 359 the,ure )OUt Bubblepoint and dewpoint calculations made with this equation are only a bit more complex than the same calculations made with Raoult's law. Activity

More information

Prelim 1 Solutions V2 Math 1120

Prelim 1 Solutions V2 Math 1120 Feb., Prelim Solutions V Math Please show your reasoning and all your work. This is a 9 minute exam. Calculators are not needed or permitted. Good luck! Problem ) ( Points) Calculate the following: x a)

More information

Introduction: Introduction. material is transferred from one phase (gas, liquid, or solid) into another.

Introduction: Introduction. material is transferred from one phase (gas, liquid, or solid) into another. Introduction: Virtually all commercial chemical processes involve operations in which material is transferred from one phase (gas, liquid, or solid) into another. rewing a cup of Coffee (Leaching) Removal

More information

Math 121 Winter 2010 Review Sheet

Math 121 Winter 2010 Review Sheet Math 121 Winter 2010 Review Sheet March 14, 2010 This review sheet contains a number of problems covering the material that we went over after the third midterm exam. These problems (in conjunction with

More information

All rights reserved. Armando B. Corripio, PhD, PE Flash Distillation Flash Drum Variables and Specifications... 2

All rights reserved. Armando B. Corripio, PhD, PE Flash Distillation Flash Drum Variables and Specifications... 2 Flash Distillation All rights reserved. Armando B. Corripio, PhD, PE. 2013 Contents Flash Distillation... 1 1 Flash Drum Variables and Specifications... 2 2 Flash Drum Balances and Equations... 4 2.1 Equilibrium

More information

a) Write the expression for the equilibrium constant, K eq

a) Write the expression for the equilibrium constant, K eq Chemistry 12 K eq Calculations Worksheet Name: Date: Block: 1. Given the equilibrium equation below: A 2(g) + B 2(g) 2AB (g) If, at equilibrium, the concentrations are as follows: [A 2] = 3.45 M, [B 2]

More information

PHYSICAL CHEMISTRY CHEM330

PHYSICAL CHEMISTRY CHEM330 PHYSICAL CHEMISTRY CHEM330 Duration: 3 hours Total Marks: 100 Internal Examiner: External Examiner: Professor B S Martincigh Professor J C Swarts University of the Free State INSTRUCTIONS: 1. Answer five

More information

Colligative Properties. Vapour pressure Boiling point Freezing point Osmotic pressure

Colligative Properties. Vapour pressure Boiling point Freezing point Osmotic pressure Colligative Properties Vapour pressure Boiling point Freezing point Osmotic pressure Learning objectives Describe meaning of colligative property Use Raoult s law to determine vapor pressure of solutions

More information

MATHCAD SOLUTIONS TO THE CHEMICAL ENGINEERING PROBLEM SET

MATHCAD SOLUTIONS TO THE CHEMICAL ENGINEERING PROBLEM SET MATHCA SOLUTIONS TO THE CHEMICAL ENGINEERING PROBLEM SET Mathematical Software Session John J. Hwalek, epartment of Chemical Engineering University of Maine, Orono, Me 4469-5737 (hwalek@maine.maine.edu)

More information

CH1810 Lecture #2 Vapor Pressure of Liquids and Solutions

CH1810 Lecture #2 Vapor Pressure of Liquids and Solutions CH1810 Lecture #2 Vapor Pressure of Liquids and Solutions Vaporization and Condensation Kinetic Energy and Temperature Molecules in a liquid are constantly in motion Types of motion: vibrational, and limited

More information

4.5 COMPLEX CHEMICAL EQUILIBRIUM BY GIBBS ENERGY MINIMIZATION

4.5 COMPLEX CHEMICAL EQUILIBRIUM BY GIBBS ENERGY MINIMIZATION 4.5 COMPLEX CHEMICAL EQUILIBRIUM BY GIBBS ENERGY MINIMIZATION 445 4.5 COMPLEX CHEMICAL EQUILIBRIUM BY GIBBS ENERGY MINIMIZATION 4.5.1 Concepts Demonstrated Formulation of a chemical equilibrium problem

More information

PHASE CHEMISTRY AND COLLIGATIVE PROPERTIES

PHASE CHEMISTRY AND COLLIGATIVE PROPERTIES PHASE CHEMISTRY AND COLLIGATIVE PROPERTIES Phase Diagrams Solutions Solution Concentrations Colligative Properties Brown et al., Chapter 10, 385 394, Chapter 11, 423-437 CHEM120 Lecture Series Two : 2013/01

More information

ChemSep Case Book: Handling Missing Components

ChemSep Case Book: Handling Missing Components ChemSep Case Book: Handling Missing Components Ross Taylor and Harry Kooijman In their book Conceptual Design of Distillation Systems M.F. Doherty and M.F. Malone (McGraw-Hill, 2001) describe a process

More information

Calculations Involving the Equilibrium Constant K eq )

Calculations Involving the Equilibrium Constant K eq ) Calculations Involving the Equilibrium Constant K eq ) 1. Given the equilibrium equation below: A 2(g) + B 2(g) 2AB (g) If, at equilibrium, the concentrations are as follows: [A 2 ] = 3.45 M, [B 2 ] =

More information

Chemistry 360 Spring 2017 Dr. Jean M. Standard April 19, Exam points

Chemistry 360 Spring 2017 Dr. Jean M. Standard April 19, Exam points Chemistry 360 pring 2017 Dr. Jean M. tandard April 19, 2017 Name Exam 3 100 points Note: You must show your work on problems in order to receive full credit for any answers. You must turn in your equation

More information

Mathcad Lecture #5 In-class Worksheet Plotting and Calculus

Mathcad Lecture #5 In-class Worksheet Plotting and Calculus Mathca Lecture #5 In-class Worksheet Plotting an Calculus At the en of this lecture, you shoul be able to: graph expressions, functions, an matrices of ata format graphs with titles, legens, log scales,

More information

AspenTech: VAPOR PRESSURES

AspenTech: VAPOR PRESSURES AspenTech: VAPOR PRESSURES Technical Memo No. XX-1 Subject: Vapor pressure interpolation error analysis To: Ms. Sam K. Safobeen Submitted by: Student 2 Date: May 11, 2010 Summary: I have compiled vapor

More information

Outline of the Course

Outline of the Course Outline of the Course 1) Review and Definitions 2) Molecules and their Energies 3) 1 st Law of Thermodynamics Conservation of Energy. 4) 2 nd Law of Thermodynamics Ever-Increasing Entropy. 5) Gibbs Free

More information

Chapter Solutions. MockTime.com. (a) M urea (b) 0.01 M KNO3 (c) 0.01 M Na2 SO4 (d) M glucose Ans: (c)

Chapter Solutions. MockTime.com. (a) M urea (b) 0.01 M KNO3 (c) 0.01 M Na2 SO4 (d) M glucose Ans: (c) 47 Chapter Solutions 1. Freezing point of an aqueous solution is ( 0.186) C. Elevation of boiling point of the same solution is K b = 0.512 C,Kf = 1.86 C, find the increase in boiling point. [2002] (a)

More information

Chemistry 2000 Lecture 11: Chemical equilibrium

Chemistry 2000 Lecture 11: Chemical equilibrium Chemistry 2000 Lecture 11: Chemical equilibrium Marc R. Roussel February 4, 2019 Marc R. Roussel Chemical equilibrium February 4, 2019 1 / 27 Equilibrium and free energy Thermodynamic criterion for equilibrium

More information

Introduction to the Problem-Solving Methodology (PSM)

Introduction to the Problem-Solving Methodology (PSM) Problem Name: Problem Description: Date: P01 Simple Reactor Introduction to the Problem-Solving Methodology (PSM) Your Name: Problem Session Objectives To learn the five stages of the problem solving methodology.

More information

Comprehend and execute the 10 elements of effective problem

Comprehend and execute the 10 elements of effective problem Lecture 8, 3/9/2012 Chapter 7: A GENERAL Strategy for Solving Material Balance Problems Objectives: Comprehend and execute the 10 elements of effective problem Drive a flow chart and Place labels on the

More information

Useful Information Provided on Exam 1. Sections Covered on Exam , 10.2, 10.8,

Useful Information Provided on Exam 1. Sections Covered on Exam , 10.2, 10.8, Chem 101B Exam 1 Study Questions Name: Chapters 10(partial), 11 & 12(partial) Review Tuesday 2/7/2017 Due on Exam Thursday 2/9/2017 (Exam 1 date) This is a homework assignment. Please show your work for

More information

Solutions to Problem Set 9

Solutions to Problem Set 9 Solutions to Problem Set 9 1. When possible, we want to write an equation with the quantity on the ordinate in terms of the quantity on the abscissa for each pf the labeled curves. A B C p CHCl3 = K H

More information

Phase Separation Degree of Freedom Analysis. Binary Vapor-Liquid Systems. Azeotropic Systems. - Gibbs phase rule F C P 2 -General analysis

Phase Separation Degree of Freedom Analysis. Binary Vapor-Liquid Systems. Azeotropic Systems. - Gibbs phase rule F C P 2 -General analysis Lecture 5. Single Equilibrium Stages (1) Phase Separation [Ch. 4] Degree of Freedom Analysis - Gibbs phase rule F CP2 -General analysis Binary Vapor-Liquid Systems - Examples of binary system - Phase equilibrium

More information

Ph.D. Qualifying Examination In Thermodynamics

Ph.D. Qualifying Examination In Thermodynamics Ph.D. Qualifying Examination In Thermodynamics May 2014 University of Texas at Austin Department of Chemical Engineering The exam is a closed book examination. There are five equally weighed problems on

More information

The two major assumptions required to reduce VLE calculations to Raoult's law are:

The two major assumptions required to reduce VLE calculations to Raoult's law are: 10.4 SIMPLE MODELS FOR VAPOR/LIQUID EQUILIBRIUM The preceding section has described what is observed through experimental observation. When thermodynamics is applied to vapour/liquid equilibrium, the goal

More information

CH2351 Chemical Engineering Thermodynamics II Unit I, II Phase Equilibria. Dr. M. Subramanian

CH2351 Chemical Engineering Thermodynamics II Unit I, II   Phase Equilibria.   Dr. M. Subramanian CH2351 Chemical Engineering Thermodynamics II Unit I, II Phase Equilibria Dr. M. Subramanian Associate Professor Department of Chemical Engineering Sri Sivasubramaniya Nadar College of Engineering Kalavakkam

More information

CHEMISTRY Topic #2: Thermochemistry and Electrochemistry What Makes Reactions Go? Fall 2018 Dr. Susan Findlay See Exercises in Topic 8

CHEMISTRY Topic #2: Thermochemistry and Electrochemistry What Makes Reactions Go? Fall 2018 Dr. Susan Findlay See Exercises in Topic 8 CHEMISTRY 2000 Topic #2: Thermochemistry and Electrochemistry What Makes Reactions Go? Fall 208 Dr. Susan Findlay See Exercises in Topic 8 Vapour Pressure of Pure Substances When you leave wet dishes on

More information

Math 113 Winter 2005 Key

Math 113 Winter 2005 Key Name Student Number Section Number Instructor Math Winter 005 Key Departmental Final Exam Instructions: The time limit is hours. Problem consists of short answer questions. Problems through are multiple

More information

Chapter 1: Introduction

Chapter 1: Introduction Chapter 1: Introduction Definition: A differential equation is an equation involving the derivative of a function. If the function depends on a single variable, then only ordinary derivatives appear and

More information

m m 3 mol Pa = Pa or bar At this pressure the system must also be at approximately 1000 K.

m m 3 mol Pa = Pa or bar At this pressure the system must also be at approximately 1000 K. 5. PHASES AND SOLUTIONS n Thermodynamics of Vapor Pressure 5.. At equilibrium, G(graphite) G(diamond); i.e., G 2 0. We are given G 2900 J mol. ( G/ P) T V V 2.0 g mol.95 0 6 m 3 mol Holding T constant

More information

Topic 5: Energetics. Heat & Calorimetry. Thursday, March 22, 2012

Topic 5: Energetics. Heat & Calorimetry. Thursday, March 22, 2012 Topic 5: Energetics Heat & Calorimetry 1 Heat is energy that is transferred from one object to another due to a difference in temperature Temperature is a measure of the average kinetic energy of a body

More information

8.7 Taylor s Inequality Math 2300 Section 005 Calculus II. f(x) = ln(1 + x) f(0) = 0

8.7 Taylor s Inequality Math 2300 Section 005 Calculus II. f(x) = ln(1 + x) f(0) = 0 8.7 Taylor s Inequality Math 00 Section 005 Calculus II Name: ANSWER KEY Taylor s Inequality: If f (n+) is continuous and f (n+) < M between the center a and some point x, then f(x) T n (x) M x a n+ (n

More information

MATH 2053 Calculus I Review for the Final Exam

MATH 2053 Calculus I Review for the Final Exam MATH 05 Calculus I Review for the Final Exam (x+ x) 9 x 9 1. Find the limit: lim x 0. x. Find the limit: lim x + x x (x ).. Find lim x (x 5) = L, find such that f(x) L < 0.01 whenever 0 < x

More information

Pre-Calculus Exam 2009 University of Houston Math Contest. Name: School: There is no penalty for guessing.

Pre-Calculus Exam 2009 University of Houston Math Contest. Name: School: There is no penalty for guessing. Pre-Calculus Exam 009 University of Houston Math Contest Name: School: Please read the questions carefully and give a clear indication of your answer on each question. There is no penalty for guessing.

More information

CinChE Problem-Solving Strategy Chapter 4 Development of a Mathematical Algorithm. partitioning. procedure

CinChE Problem-Solving Strategy Chapter 4 Development of a Mathematical Algorithm. partitioning. procedure Development o a Mathematical Algorithm Transormation Process Mathematical Model partitioning procedure Mathematical Algorithm The mathematical algorithm is a plan (or blueprint) that identiies the independent

More information

Chapter I: Hands-on experience in SCILAB operations

Chapter I: Hands-on experience in SCILAB operations Chapter I: Hands-on experience in SCILAB operations Introduction to SCILAB SCILAB is a numerical mathematical equation solver which involves a powerful open computing environment for engineering and scientific

More information

State Polytechnic of Malang Malang Heat Effect. Thermodynamics Course Chapter 4 Agung Ari Wibowo S.T., M.Sc

State Polytechnic of Malang Malang Heat Effect. Thermodynamics Course Chapter 4 Agung Ari Wibowo S.T., M.Sc State Polytechnic of Malang Malang 217 Heat Effect Thermodynamics Course Agung Ari Wibowo S.T., M.Sc Learning Objective Sensible Heat Heat Capacity & Integral Evaluation of Sensible Heat Laten Heat of

More information

Logarithmic Functions

Logarithmic Functions Name Student ID Number Group Name Group Members Logarithmic Functions 1. Solve the equations below. xx = xx = 5. Were you able solve both equations above? If so, was one of the equations easier to solve

More information

Calculus : Summer Study Guide Mr. Kevin Braun Bishop Dunne Catholic School. Calculus Summer Math Study Guide

Calculus : Summer Study Guide Mr. Kevin Braun Bishop Dunne Catholic School. Calculus Summer Math Study Guide 1 Calculus 2018-2019: Summer Study Guide Mr. Kevin Braun (kbraun@bdcs.org) Bishop Dunne Catholic School Name: Calculus Summer Math Study Guide After you have practiced the skills on Khan Academy (list

More information

Exam 3 Solutions. ClO g. At 200 K and a total pressure of 1.0 bar, the partial pressure ratio for the chlorine-containing compounds is p ClO2

Exam 3 Solutions. ClO g. At 200 K and a total pressure of 1.0 bar, the partial pressure ratio for the chlorine-containing compounds is p ClO2 Chemistry 360 Dr. Jean M. Standard Fall 2016 Name KEY Exam 3 Solutions 1.) (14 points) Consider the gas phase decomposition of chlorine dioxide, ClO 2, ClO 2 ( g) ClO ( g) + O ( g). At 200 K and a total

More information

PHYSICAL CHEMISTRY CHEM330

PHYSICAL CHEMISTRY CHEM330 PHYSICAL CHEMISTRY CHEM330 Duration: 3 hours Total Marks: 100 Internal Examiner: External Examiner: Professor B S Martincigh Professor J C Swarts University of the Free State INSTRUCTIONS: 1. Answer five

More information

Name: First three letters of last name

Name: First three letters of last name Name: First three letters of last name Chemistry 342 Third Exam April 22, 2005 2:00 PM in C6 Lecture Center Write all work you want graded in the spaces provided. Both the logical solution to the problem

More information

Lecture 2: Intro. Statistical Mechanics

Lecture 2: Intro. Statistical Mechanics Lecture 2: Intro. Statistical Mechanics Statistical mechanics: concepts Aims: A microscopic view of entropy: Joule expansion reviewed. Boltzmann s postulate. S k ln g. Methods: Calculating arrangements;

More information

Int Math 3 Midterm Review Handout (Modules 5-7)

Int Math 3 Midterm Review Handout (Modules 5-7) Int Math 3 Midterm Review Handout (Modules 5-7) 1 Graph f(x) = x and g(x) = 1 x 4. Then describe the transformation from the graph of f(x) = x to the graph 2 of g(x) = 1 2 x 4. The transformations are

More information

WEEK 6. Multiphase systems

WEEK 6. Multiphase systems WEEK 6 Multiphase systems Multiphase systems P 237. Processes usually deal with material being transferred from one phase (gas, liquid, or solid) to another. 6.1a Phase diagrams F = force on piston Water

More information

A Generalized Correlation for Pool Boiling Heat Transfer Coefficient Based on Corresponding State Rule for Pure Compounds and Binary Mixtures

A Generalized Correlation for Pool Boiling Heat Transfer Coefficient Based on Corresponding State Rule for Pure Compounds and Binary Mixtures A Generalized Correlation for Pool Boiling Heat Transfer Coefficient Based on Corresponding State Rule for Pure Compounds and Binary Mixtures HASAN QABAZARD and MAHMOOD MOSHFEGHIAN 1 Petroleum Research

More information

Minimizing & Maximizing Functions

Minimizing & Maximizing Functions Minimizing & Maximizing Functions Nonlinear functions may have zero to many minima and maxima. Example: find the minimum of y = 3x 2 2x + 1 Minima & maxima occur in functions where the slope changes sign

More information

Business. Business. Multiphase Systems Ch. 6. P vs T Diagram: Water (pure component) P vs T Diagram: CO 2 LYNN ORR

Business. Business. Multiphase Systems Ch. 6. P vs T Diagram: Water (pure component) P vs T Diagram: CO 2 LYNN ORR Business LYNN ORR Izatt-Christensen Lecturer Former Assistant Secretary of Energy Public lecture Thursday 11 am, JSB Auditorium Technical lecture, Friday, 11 am, Varsity Theater Courtesy Corbin Critchfield

More information

- - - - - - - - - - - - - - - - - - DISCLAIMER - - - - - - - - - - - - - - - - - - General Information: This midterm is a sample midterm. This means: The sample midterm contains problems that are of similar,

More information

Vapor Pressure of Liquids Equilibria and Thermodynamics

Vapor Pressure of Liquids Equilibria and Thermodynamics Chemistry 1B-Foothill College Vapor Pressure of Liquids Equilibria and Thermodynamics In this exercise, you will investigate the relationship between the vapor pressure of a liquid and the thermodynamic

More information

Many practical problems in chemical engineering

Many practical problems in chemical engineering ChE classroom SOLVING A SYSTEM OF NONLINEAR ALGEBRAIC EQUATIONS You Only Get Error Messages What to do Next? Mordechai Shacham a and Neima Brauner b a Ben-Gurion University of the Negev Beer-Sheva 8405,

More information

SOLUTION CONCENTRATIONS

SOLUTION CONCENTRATIONS SOLUTION CONCENTRATIONS The amount of solute in a solution (concentration) is an important property of the solution. A dilute solution contains small quantities of solute relative to the solvent, while

More information

CHAPTER SIX THERMODYNAMICS Vapor-Liquid Equilibrium in a Binary System 6.2. Investigation of the Thermodynamic Properties of Pure Water

CHAPTER SIX THERMODYNAMICS Vapor-Liquid Equilibrium in a Binary System 6.2. Investigation of the Thermodynamic Properties of Pure Water CHAPTER SIX THERMODYNAMICS 6.1. Vapor-Liquid Equilibrium in a Binary System 6.2. Investigation of the Thermodynamic Properties of Pure Water 2 6.1. VAPOR-LIQUID EQUILIBRIUM IN A BINARY SYSTEM Keywords:

More information

Math 110 Test # 1. The set of real numbers in both of the intervals [0, 2) and ( 1, 0] is equal to. Question 1. (F) [ 1, 2) (G) (2, ) (H) [ 1, 2]

Math 110 Test # 1. The set of real numbers in both of the intervals [0, 2) and ( 1, 0] is equal to. Question 1. (F) [ 1, 2) (G) (2, ) (H) [ 1, 2] Friday July 8, 00 Jacek Szmigielski Math 0 Test # Fill in the bubbles that correspond to the correct answers. No aids: no calculators, closed book. You are not permitted to consult with your fellow students

More information

Functions. 1. Any set of ordered pairs is a relation. Graph each set of ordered pairs. A. B. C.

Functions. 1. Any set of ordered pairs is a relation. Graph each set of ordered pairs. A. B. C. Functions 1. Any set of ordered pairs is a relation. Graph each set of ordered pairs. A. x y B. x y C. x y -3-6 -2-1 -3 6-1 -3-3 0-2 4 0-1 6 3-1 1 3 5-2 1 0 0 5 6-1 4 1 1 A. B. C. 2. A function is a special

More information

The Chemical Potential of Components of Solutions

The Chemical Potential of Components of Solutions CHEM 331 Physical Chemistry Fall 2017 The Chemical Potential of Components of Solutions We have shown that the Gibbs Free Energy for a solution at constant T and P can be determined from the chemical potential

More information

12. Heat of melting and evaporation of water

12. Heat of melting and evaporation of water VS 12. Heat of melting and evaporation of water 12.1 Introduction The change of the physical state of a substance in general requires the absorption or release of heat. In this case, one speaks of a first

More information

Torques and Static Equilibrium

Torques and Static Equilibrium Torques and Static Equilibrium INTRODUCTION Archimedes, Greek mathematician, physicist, engineer, inventor and astronomer, was widely regarded as the leading scientist of the ancient world. He made a study

More information

General Physical Chemistry I

General Physical Chemistry I General Physical Chemistry I Lecture 13 leksey Kocherzhenko pril 7, 2015" Last time " Phase diagrams" Maps showing the thermodynamically stable phases for each and," phase regions in a phase diagram are

More information

1. (25 points) C 6 H O 2 6CO 2 + 7H 2 O C 6 H O 2 6CO + 7H 2 O

1. (25 points) C 6 H O 2 6CO 2 + 7H 2 O C 6 H O 2 6CO + 7H 2 O MEEBAL Exam 2 November 2013 Show all work in your blue book. Points will be deducted if steps leading to answers are not shown. No work outside blue books (such as writing on the flow sheets) will be considered.

More information

Math 121 Test 3 - Review 1. Use differentials to approximate the following. Compare your answer to that of a calculator

Math 121 Test 3 - Review 1. Use differentials to approximate the following. Compare your answer to that of a calculator Math Test - Review Use differentials to approximate the following. Compare your answer to that of a calculator.. 99.. 8. 6. Consider the graph of the equation f(x) = x x a. Find f (x) and f (x). b. Find

More information

Colligative Properties

Colligative Properties Colligative Properties Vapor pressures have been defined as the pressure over a liquid in dynamic equilibrium between the liquid and gas phase in a closed system. The vapor pressure of a solution is different

More information

Problem Appendix Antoine constants Important properties of unordered packings... 22

Problem Appendix Antoine constants Important properties of unordered packings... 22 Contents Sample problems and eercises Distillation... 3 Sample problems... 3 Sample : Calculating vapor phase composition for immiscible liquids... 3 Sample 2: Calculating boiling point and vapor phase

More information

Name: Instructor: Lecture time: TA: Section time:

Name: Instructor: Lecture time: TA: Section time: Math 2220 Prelim 1 February 17, 2009 Name: Instructor: Lecture time: TA: Section time: INSTRUCTIONS READ THIS NOW This test has 6 problems on 7 pages worth a total of 100 points. Look over your test package

More information

A population is modeled by the differential equation

A population is modeled by the differential equation Math 2, Winter 2016 Weekly Homework #8 Solutions 9.1.9. A population is modeled by the differential equation dt = 1.2 P 1 P ). 4200 a) For what values of P is the population increasing? P is increasing

More information

LECTURE 4 Variation of enthalpy with temperature

LECTURE 4 Variation of enthalpy with temperature LECTURE 4 Variation of enthalpy with temperature So far, we can only work at 25 C. Like c v we define a constant pressure heat capacity, c p, as the amount of heat energy needed to raise the temperature

More information

Final exam for MATH 1272: Calculus II, Spring 2015

Final exam for MATH 1272: Calculus II, Spring 2015 Final exam for MATH 1272: Calculus II, Spring 2015 Name: ID #: Signature: Section Number: Teaching Assistant: General Instructions: Please don t turn over this page until you are directed to begin. There

More information

Algebra 2 CP Semester 1 PRACTICE Exam

Algebra 2 CP Semester 1 PRACTICE Exam Algebra 2 CP Semester 1 PRACTICE Exam NAME DATE HR You may use a calculator. Please show all work directly on this test. You may write on the test. GOOD LUCK! THIS IS JUST PRACTICE GIVE YOURSELF 45 MINUTES

More information

Qualifying Examination

Qualifying Examination Summer 24 Day. Monday, September 5, 24 You have three hours to complete this exam. Work all problems. Start each problem on a All problems are 2 points. Please email any electronic files in support of

More information

Chemistry 163B. Concluding Factoids. and. Comments

Chemistry 163B. Concluding Factoids. and. Comments Chemistry 163B Concluding Factoids and Comments 1 neuron, resting potential http://projects.gw.utwente.nl/pi/sim/bovt/concep4.gif http://www.uta.edu/biology/westmoreland/classnotes/144/chapter_48_files/image009.jpg

More information

Calculus Summer Math Practice. 1. Find inverse functions Describe in words how you use algebra to determine the inverse function.

Calculus Summer Math Practice. 1. Find inverse functions Describe in words how you use algebra to determine the inverse function. 1 Calculus 2017-2018: Summer Study Guide Mr. Kevin Braun (kbraun@bdcs.org) Bishop Dunne Catholic School Calculus Summer Math Practice Please see the math department document for instructions on setting

More information

f(x) = 2x + 5 3x 1. f 1 (x) = x + 5 3x 2. f(x) = 102x x

f(x) = 2x + 5 3x 1. f 1 (x) = x + 5 3x 2. f(x) = 102x x 1. Let f(x) = x 3 + 7x 2 x 2. Use the fact that f( 1) = 0 to factor f completely. (2x-1)(3x+2)(x+1). 2. Find x if log 2 x = 5. x = 1/32 3. Find the vertex of the parabola given by f(x) = 2x 2 + 3x 4. (Give

More information

Thermodynamic condition for equilibrium between two phases a and b is G a = G b, so that during an equilibrium phase change, G ab = G a G b = 0.

Thermodynamic condition for equilibrium between two phases a and b is G a = G b, so that during an equilibrium phase change, G ab = G a G b = 0. CHAPTER 5 LECTURE NOTES Phases and Solutions Phase diagrams for two one component systems, CO 2 and H 2 O, are shown below. The main items to note are the following: The lines represent equilibria between

More information

The final is cumulative, but with more emphasis on chapters 3 and 4. There will be two parts.

The final is cumulative, but with more emphasis on chapters 3 and 4. There will be two parts. Math 141 Review for Final The final is cumulative, but with more emphasis on chapters 3 and 4. There will be two parts. Part 1 (no calculator) graphing (polynomial, rational, linear, exponential, and logarithmic

More information

5. Collection and Analysis of. Rate Data

5. Collection and Analysis of. Rate Data 5. Collection and nalysis of o Objectives Rate Data - Determine the reaction order and specific reaction rate from experimental data obtained from either batch or flow reactors - Describe how to analyze

More information

What is the volume of the unit cell of Ni in ml?

What is the volume of the unit cell of Ni in ml? P a g e 1 Chem 123 Practice Questions for EXAM II Fall 2014 Exam II on Mon 10/13/14 This HAS BEEN updated after Wed s lecture (10/8/14) JUST studying these questions is not sufficient preparation. There

More information

Exam Two. Phu Vu. test Two. Take home group test April 13 ~ April 18. Your group alias: Your group members: Student name

Exam Two. Phu Vu. test Two. Take home group test April 13 ~ April 18. Your group alias: Your group members: Student name Exam Two Take home group test April 3 ~ April 8 Your group alias: Your group members: (leave it blank if you work alone on this test) Your test score Problem Score Total page /7 Problem : (chapter 9, applications

More information

2] The plate height in chromatography is best described as 2

2] The plate height in chromatography is best described as 2 9 Chromatography. General Topics 1] Explain the three major components of the van Deemter equation. Sketch a clearly labeled diagram describing each effect. What is the salient point of the van Deemter

More information

Calculus I Homework: Linear Approximation and Differentials Page 1

Calculus I Homework: Linear Approximation and Differentials Page 1 Calculus I Homework: Linear Approximation and Differentials Page Example (3..8) Find the linearization L(x) of the function f(x) = (x) /3 at a = 8. The linearization is given by which approximates the

More information

CHEM-UA 652: Thermodynamics and Kinetics

CHEM-UA 652: Thermodynamics and Kinetics 1 CHEM-UA 652: Thermodynamics and Kinetics Notes for Lecture 13 I. PHASE DIAGRAMS The different phases of substances are characterized by different ranges of thermodynamic variables in which these phasesarethestablephases.

More information

Lecture 7. Professor Hicks Inorganic Chemistry (CHE151) Empirical Formula

Lecture 7. Professor Hicks Inorganic Chemistry (CHE151) Empirical Formula Lecture 7 Professor icks Inorganic hemistry (E151) Empirical Formula Experimentally determined chemical formula as smallest whole number ratio of atoms - For most ionic compounds it is the formula unit

More information

Sections 4.2 and 4.3 Zeros of Polynomial Functions. Complex Numbers

Sections 4.2 and 4.3 Zeros of Polynomial Functions. Complex Numbers Sections 4.2 and 4.3 Zeros of Polynomial Functions Complex Numbers 1 Sections 4.2 and 4.3 Find the Zeros of Polynomial Functions and Graph Recall from section 4.1 that the end behavior of a polynomial

More information

- Let's look at how things dissolve into water, since aqueous solutions are quite common. sucrose (table sugar)

- Let's look at how things dissolve into water, since aqueous solutions are quite common. sucrose (table sugar) 68 HOW THINGS DISSOLVE - Let's look at how things dissolve into water, since aqueous solutions are quite common. sucrose (table sugar)... what happens? - Water molecules pull the sugar molecules out of

More information

Math 10b Ch. 8 Reading 1: Introduction to Taylor Polynomials

Math 10b Ch. 8 Reading 1: Introduction to Taylor Polynomials Math 10b Ch. 8 Reading 1: Introduction to Taylor Polynomials Introduction: In applications, it often turns out that one cannot solve the differential equations or antiderivatives that show up in the real

More information

9. The two strands in DNA are held together by. A. dispersion forces B. dipole-dipole forces C. hydrogen bonding D. ion-dipole forces E.

9. The two strands in DNA are held together by. A. dispersion forces B. dipole-dipole forces C. hydrogen bonding D. ion-dipole forces E. hemistry 400 omework 11, hapter 11 I. Multiple hoice 1. The molecules in a sample of pure liquid dichloromethane, 2 l 2, experience which of the following intermolecular forces? I. dispersion forces II.

More information

Exploring Substitution

Exploring Substitution I. Introduction Exploring Substitution Math Fall 08 Lab We use the Fundamental Theorem of Calculus, Part to evaluate a definite integral. If f is continuous on [a, b] b and F is any antiderivative of f

More information

Class XII Chapter 2 Solutions Chemistry

Class XII Chapter 2 Solutions Chemistry Class XII Chapter 2 Solutions Chemistry Question 2.1: Calculate the mass percentage of benzene (C 6 H 6 ) and carbon tetrachloride (CCl 4 ) if 22 g of benzene is dissolved in 122 g of carbon tetrachloride.

More information

Calculus I Homework: Linear Approximation and Differentials Page 1

Calculus I Homework: Linear Approximation and Differentials Page 1 Calculus I Homework: Linear Approximation and Differentials Page Questions Example Find the linearization L(x) of the function f(x) = (x) /3 at a = 8. Example Find the linear approximation of the function

More information