Solutions to Accompany

Size: px
Start display at page:

Download "Solutions to Accompany"

Transcription

1 Solutions to Accompany Chapter 2 Engineering Economics Engineering economy problems require the calculation of various interest factors listed in Table 2.2. An alternative is to create an EES function library that can be easily accessed to calculate these factors. An example of such a user-written function library is shown on pages Subsequent problems in this chapter simply access the function library by calling the function name with the appropriate inputs. 13

2 INTERESTFACTORS Equations Single Payment Compound Amount Factor function F/P (i, n) F/P = (1 + i) n end Present Worth Factor function P/F (i, n) end P/F = 1 (1 + i) n Uniform Series Sinking Fund Factor function A/F (i, n) end A/F = i (1 + i) n 1 Compound Amount Factor function F/A (i, n) end F/A = (1 + i)n 1 i Capital Recovery Factor function A/P (i, n) end A/P = i (1 + i) n (1 + i) n 1 Uniform Series Present Worth Factor function P/A (i, n) 14

3 end P/A = (1 + i)n 1 i (1 + i) n Gradient Present Worth Factor function P/G (i, n) end P/G = (1 + i)n 1 (i 2 (1 + i) n ) n i (1 + i) n 15

4 PROBLEM 2.1 Interest Factor Calculator USER INPUTS 7.00% Nominal annual interest rate 4 Compounding periods per year 6 Number of years i = Calculated interest per period n = 24 Total number of periods Interest Factors P to F F/P F to P P/F F to A A/F A to F F/A P to A A/P A to P P/A G to P P/G

5 PROBLEM 2.02 Equations Problem 2.2 Interest Factor Calculator using the EES Diagram Window for I/O Input information Calculations These calculations access the user-written functions in InterestFactors.LIB F/P = F P (i/n yr, n n yr ) P/F = P F (i/n yr, n n yr ) A/F = AF (i/n yr, n n yr ) F/A = F A (i/n yr, n n yr ) A/P = AP (i/n yr, n n yr ) P/A = P A (i/n yr, n n yr ) P/G = P G (i/n yr, n n yr ) 17

6 PROBLEM 2.03 Equations PROBLEM 2.3 GIVEN: A credit card advertising a nominal interest rate i = FIND: The effective rate SOLUTION: i eff % = F/P 1 Interest Factor F/P = (1 + i/12) 12 Solution Variables in Main program F/P = i = i eff = [%] Key Variables i eff = [%] effective annual rate 18

7 PROBLEM 2.04 Equations PROBLEM 2.4 GIVEN: College fund establishment i nom = 0.04 F 1 = [] Withdrawl for first year of college (age 18) F 2 = [] Withdrawl for second year of college (age 19) F 3 = [] Withdrawl for third year of college (age 20) F 4 = [] Withdrawl for fourth year of college (age 21) FIND: Monthly deposit required to obtain this goal SOLUTION: There are several ways to do this. In this solution, all money will be moved to time zero. A P/A (i, n 21 ) = F 1 P F (i, n 18 ) + F 2 P F (i, n 19 ) + F 3 P F (i, n 20 ) + F 4 P F (i, n 21 ) The interest rate must be expressed on a monthly basis since interest is compounded monthly, but the analysis is considering years 18, 19, 20, and 21, i = i nom /12 The number of periods n n 21 corresponds to the number of months before a withdrawl is taken n 18 = n 19 = n 20 = n 21 = Solution Variables in Main program 19

8 A = [] F 1 = [] F 2 = [] F 3 = [] F 4 = [] i = i nom = 0.04 n 18 = 216 n 19 = 228 n 20 = 240 n 21 = 252 Key Variables A = [] monthly deposit required to meet goal 20

9 PROBLEM 2.05 Equations PROBLEM 2.5 GIVEN: A small scale silver mine A P = [] n = 15 i = 0.15 FIND: The amount of money that can be used to purchase the mine SOLUTION: Bringing all the mone back to the present, P = A P P/A (i, n) Solution Variables in Main program A P = [] i = 0.15 n = 15 P = [] Key Variables P = [] Maximum bid to purchase the mine 21

10 PROBLEM 2.06 Equations PROBLEM 2.6 GIVEN: Analysis of a short-term storage facility P = [] OM = 900 [] A = 3600 [] i = 0.10 FIND: How many years must the warehouse last? SOLUTION: There are several ways to solve this problem. Here, all costs will be converted to an annual series, P A/P (i, n) + OM = A Solution Variables in Main program A = 3600 [] i = 0.1 n = OM = 900 [] P = [] Key Variables n = Length of time the building must last (yrs) 22

11 PROBLEM 2.07 Equations PROBLEM 2.7 GIVEN: A cash flow diagram as shown P 0 = [] G = 2800 [] A = 3500 [] A 1 = [] A 10 = 4000 [] C 6 = [] Cost at year 6 I 8 = [] Income at year 8 i = n = 10 FIND: (a) the present value (b) the future value (c) the uniform annual value SOLUTION: Moving the cash flows to any point in the time line is relatively easy, except for the positive A values. They decrease linearly from 110,000 to 4,000. Calculating the gradient that causes this decrease, G A = A 1 A 10 n 1 23

12 Present value: DEBIT S 0 = P 0 + C 6 P/F (i, 6) + G P G (i, n) + A F A (i, 4) P F (i, 10) INCOMES 0 = A 1 P/A (i, 10) G A P G (i, 10) + I 8 P F (i, 8) P V = INCOMES 0 DEBIT S 0 Future value: F V = P V F/P (i, 10) Uniform annual value: AV = P V A/P (i, 10) Solution Variables in Main program A = 3500 [] AV = 8664 [] A 1 = [] A 10 = 4000 [] C 6 = [] DEBIT S 0 = [] F V = [] G = 2800 [] G A = [] i = INCOMES 0 = [] I 8 = [] n = 10 P V = [] P 0 = [] Key Variables P V = [] F V = [] AV = 8664 [] equivalent present value (yr 0) of the cash flow diagram equivalent future value (yr 10) of the cash flow diagram equivalent uniform annual series value of the cash flow diagram 24

13 PROBLEM 2.08 Equations PROBLEM 2.8 GIVEN: Investment in a new machine for a production facility P = [] A P = [] F S = [] i = 0.25 n = 20 Initial cost of the machine Annual increase in profits Salvage value of the machine Minimum required rate of return Life of the machine FIND: The annual acceptable maintenance expenditures SOLUTION: There are several ways to solve this problem. Converting all cash to an annual basis, P A/P (i, n) + A M,1 = F S AF (i, n) + A P Converting all the cash to a present value, P + A M,2 P/A (i, n) = A P P A (i, n) + F S P F (i, n) Converting all the cash to a future value, P F/P (i, n) + A M,3 F A (i, n) = A P F A (i, n) + F s Solution Variables in Main program 25

14 A M,1 = 3152 [] A M,2 = 3152 [] A M,3 = 3152 [] A P = [] F S = [] i = 0.25 n = 20 P = [] Key Variables A M,3 = 3152 [] A M,1 = 3152 [] A M,2 = 3152 [] Converting to a future value Converting to an annual series Converting to a present value 26

15 PROBLEM 2.09 Equations PROBLEM 2.9 GIVEN: A machine with the following economic data P = 9000 [] O = 750 [] M 1 = 800 [] M 2 = 1000 [] M 3 = 1400 [] M 4 = 1800 [] M 5 = 3000 [] i = 0.06 n = 5 FIND: The initial investment required to pay for the machine SOLUTION: Since the operating costs are given on an annual basis, and the compounding period is monthly, this problem can be solved on an annual basis using the effective interest rate i eff = F/P (i/12, 12) 1 Moving all the cash to time zero... P inv = P + O P/A (i eff, n) + M 1 P F (i eff, 1) + M 2 P F (i eff, 2) + M 3 P/F (i eff, 3) + M 4 P F (i eff, 4) + M 5 P F (i eff, 5) 27

16 Solution Variables in Main program i = 0.06 i eff = M 1 = 800 [] M 2 = 1000 [] M 3 = 1400 [] M 4 = 1800 [] M 5 = 3000 [] n = 5 O = 750 [] P = 9000 [] P inv = [] Key Variables P inv = [] Investment required to pay for the machine and its maintenance costs 28

17 PROBLEM 2.10 Equations PROBLEM 2.10 GIVEN: A chemical processing plant P = [] A P = [] A M = 0.03 A O Initial cost of the piping system Profits realized by the piping system Annual maintenance costs C e = 0.12 [/kwh] Cost of energy to run the system n = 15 Life of the system ρ = 48.5 [ lbm/ft 3] Density of the cyclohexane P = 6.4 [ψ] Pressure drop through the system V ol = 1200 [gpm] Volumetric flow rate of the cyclohexane FIND: The rate of return SOLUTION: The annual cost of energy used to move the fluid through the system is, ( Ẇ = ṁ P ) kw ρ ψ ft 3 /hr The mass flow rate of the cyclohexane through the system is, ṁ = ρ V ol ft3 /hr gpm 29

18 The total energy used per year is, W = Ẇ (24 [hr/day]) (7 [day/week]) (52 [week]) The annual cost of the energy is, A O = C e W Assuming annual compounding, ( P A/P i ) %, n + A O + A M = A P Solution Variables in Main program A M = [] A O = 3502 [] A P = [] C e = 0.12 [/kwh] P = 6.4 [psi] i = [%] ṁ = [lbm/hr] n = 15 P = [] ρ = 48.5 [ lbm/ft 3] V ol = 1200 [gpm] W = [kw-hr] Ẇ = [kw] Key Variables i = [%] Rate of return 30

19 PROBLEM 2.11 Equations PROBLEM 2.11 GIVEN: A machine with the following economic data P inv = [] A = 1250 [] G = 200 [] S = 0.05 P i = 0.08 n = 7 FIND: The initial investment required to pay for the machine SOLUTION: The interest is compounded quarterly, but the gradient is on a yearly basis. Therefore, this problem will be solved by analyzing the cash flow diagram on a yearly basis but using the effective interest rate rather than the nominal interest rate. P inv + S P/F (i eff, n) = P + A P A (i eff, n) + G P G (i eff, n) i eff = F/P (i/4, 4) 1 Solution Variables in Main program 31

20 A = 1250 [] G = 200 [] i = 0.08 i eff = n = 7 P = [] P inv = [] S = 7247 [] Key Variables P = [] Maximum amount of money that can be spent on the machine 32

21 PROBLEM 2.12 Equations PROBLEM 2.12 GIVEN: A proposed heat recovery system with the following economic parameters, P = [] OM = [] Initial cost of the system Annual operating and maintenance costs n = 25 Economic life S = [] A = [] i mgmt = 0.12 Salvage value Annual savings in fuel minimum required rate of return FIND: (a) the rate of return for this scenario (b) if management requires a rate of return of 12%, how much can be spent on the heat recovery system? SOLUTION: (a) This problem can be solved in several ways. Converting all the funds to an annual series, ( P A/P i ) ( %, n + OM = A + S AF i ) %, n (b) The same equations from part (a) can be used... substitute i mgmt for i P b A/P (i mgmt, n) + OM = A + S AF (i mgmt, n) Solution Variables in Main program 33

22 A = [] i = [%] i mgmt = 0.12 n = 25 OM = [] P = [] P b = [] S = [] Key Variables i = [%] (a) rate of return for the heat recovery system P b = [] (b) Maximum that can be spent at time 0 for a rate of return of 12 34

23 PROBLEM 2.13 Equations PROBLEM 2.13 GIVEN: Three alternatives for a compressor drive Drive 1..3 = Gasoline, Diesel, Electric IC 1..3 = [, [], []] S 1..3 = 3200 [, 5800 [], 2400 []] F C 1..3 = 0.48 [lbm/hp hr, 0.36 [lbm/hp hr], 0] Cost fuel,1..3 = 3.28 [/gal, 3.89 [/gal], 0] Cost elec,1..3 = 0, 0, 0.11 [/kwh ] ρ fuel,1..3 = 43.7 [lbm/ft 3, 46.7 [ lbm/ft 3], 1 [ lbm/ft 3] ] elec 1..3 = 0, 0, 1 switch to specify non-electric (0) or electric (1) drive n = 15 i = 0.18 Ẇ = 400 [hp] time = 8 [hr/day] 270 [day] annual operation hours FIND: Which drive is the best economic alternative SOLUTION: 35

24 The lives are the same for all three alternatives. Therefore, the AC or PW method will work. Both soultions are shown here. duplicate k = 1, 3 AC k = IC k A/P (i, n) O fuel,k O elec,k + S k AF (i, n) P W k = IC k (O fuel,k + O elec,k ) P/A (i, n) + S k P F (i, n) Annual Cost Present Worth O fuel,k = gallons k Cost fuel,k Annual operating cost - fuel end O elec,k = kw h k Cost elec,k Annual operating cost - electricity ( ( )) F Ck gallons k = Ẇ time gal ρ fuel,k ft 3 gallons of fuel used per year ( ) kw h k = Ẇ kw hp time elec k kwh used per year Solution i = 0.18 n = 15 time = 2160 [hr] Ẇ = 400 [hp] Arrays Table: M ain Row Drive i elec i IC i S i F C i Cost fuel,i Cost elec,i [ ρ fuel,i gallons i [] [] [lbm/hp-hr] [/gal] [/kwh] lbm/ft 3 [gal] 1 Gasoline Diesel Electric Row kw h i O fuel,i O elec,i AC i P W i [kwh] [] [] [] [] E Report The electric motor is the best economic alternative. 36

25 PROBLEM 2.14 Equations Problem 2.14 GIVEN: Two possible heat treatment processes Process [1] P 1 = [] A o,1 = [] A p,1 = [] F 1 = [] Process [2] P 2 = [] A o,2 = [] A p,2 = [] F 2 = 7000 [] Tax information N = 8 t = 0.52 Depreciation is SYD FIND: Which process should be selected based on the rate of return analysis? 37

26 SOLUTION: A DUPLICATE loop will be used to calculate the interest rate for each alternative duplicate k = 1, 2 Calculation of the gradient D 1,k = 2 (P k F k ) D 2,k = 2 (P k F k ) A k = A p,k A o,k N N (N + 1) N N (N + 1) A AT,1,k = A k t (A k D 1,k ) A AT,2,k = A k t (A k D 2,k ) G k = A AT,1,k A AT,2,k Determination of the interest rate P k = A AT,1,k P/A (i k, N) G k P G (i k, N) + F k P F (i k, N) end Solution N = 8 t = 0.52 Arrays Table: M ain Row P i F i A o,i A p,i A i D 1,i D 2,i A AT,1,i A AT,2,i G i i i [] [] [] [] [] [] [] [] [] [] Report Based on this analysis, Process 1 has the higher rate of return. Therefore, select heat treatment process 1. 38

27 PROBLEM 2.15 Equations PROBLEM 2.15 GIVEN: Purchase of a computer system IC = [] S = 5000 [] O = [] A BT = [] n = 5 t = 0.50 FIND: The rate of return (a) before taxes (b) after taxes with no depreciation (c) after taxes using SLD (d) after taxes using SYD SOLUTION: Scenario Scenario 1 = no tax Scenario 2 = after tax no depreciation Scenario 3 = after tax with SLD Scenario 4 = after tax with SYD Scenarios [1], [2], and [3] duplicate k = 1, 3 IC = A AT,k P/A (i k, n) + S P F (i k, n) end 39

28 After tax cash flows A AT,1 = A BT O A AT,2 = (A BT O) (1 t) A AT,3 = (A BT O) t ((A BT O) D SLD ) Depreciation scheme - SLD D SLD = IC S n Scenario [4]: SYD IC + G P/G (i 4, n) = A AT,4 P A (i 4, n) + S P F (i 4, n) Convert interest rates to percent duplicate k = 1, 4 end i pct,k = i k 100 % Calculated the gradient and after tax cash flow at year 1 using the first two years of the scenario duplicate k = 1, 2 end D k = 2 (IC S) n k + 1 n (n + 1) A AT,SY D,k = (A BT O) t ((A BT O) D k ) G = A AT,SY D,1 A AT,SY D,2 A AT,4 = A AT,SY D,1 Solution A BT = [] D SLD = 2600 [] G = [] IC = [] n = 5 O = [] S = 5000 [] t = 0.5 Arrays Table: M ain Row Scenario i A AT,i i i i pct,i D i A AT,SY D,i [] [%] [] [] 1 no tax after tax no depreciation after tax with SLD after tax with SYD

29 Courtesy of CRC Press/Taylor & Francis Group 5,000 7, ,000 20,000 FIGURE 2.1 Economic cash flow diagram. 002x001.eps

30 Courtesy of CRC Press/Taylor & Francis Group 7,000 4, ,000 FIGURE 2.2 An equivalent version of the cash flow diagram shown in Figure x002.eps

31 Courtesy of CRC Press/Taylor & Francis Group F FIGURE 2.3 Cash flow diagram showing the equivalence between a uniform series, A, and a future sum, F. A 002x003.eps

32 Courtesy of CRC Press/Taylor & Francis Group P A FIGURE 2.4 Cash flow diagram showing the equivalence between a uniform series, A, and a present value, P. 002x004.eps

33 Courtesy of CRC Press/Taylor & Francis Group G 2G 3G 4G 5G 6G 7G 8G 9G P FIGURE 2.5 Cash flow diagram showing the equivalence of a uniform linearly increasing series and a present value. 002x005.eps

34 Courtesy of CRC Press/Taylor & Francis Group Example Using Microsoft Excel GIVEN: A_p = A_o = S = G = n = 50, Annual profit increase due to equipment 1, Annual operation cost 5, Salvage value of equipment at year n 1, Maintenance gradient 10 Number of periods in the analysis (years) FIND: COSTS: P + A o P,i,n A i = + G P = A_o*(P/A,i,n) = G*(P/F,i,1) = G*(P/F,i,2) = G*(P/F,i,3) = G*(P/F,i,4) = G*(P/F,i,5) = G*(P/F,i,6) = G*(P/F,i,7) = G*(P/F,i,8) = G*(P/F,i,9) = G*(P/F,i,10) = 15.62% P,i,n G 225, , , , , , , , , , PV COSTS = 246, Rate of return (interest rate) Calculated with Goal Seek P = A p,i,n A P + S,i,n F Initial cost of equipment Calculated with PV function Calculated with PV function Calculated with PV function Calculated with PV function Calculated with PV function Calculated with PV function Calculated with PV function Calculated with PV function Calculated with PV function Calculated with PV function Calculated with PV function INCOMES: A_p*(P/A,i,n) = 245, S*(P/F,i,n) = 1, PV INCOMES = 246, Calculated with PV function Calculated with PV function PV(COST - INCOME) = (0.00) FIGURE 2.6 Microsoft Excel solution of Example 2.5. Set to zero in Goal Seek 002x006.eps

35 Courtesy of CRC Press/Taylor & Francis Group P = 20, A = (6)(12) FIGURE E2.2

36 Courtesy of CRC Press/Taylor & Francis Group m Payment = Interest Principal Balance 20, , , , , , , FIGURE E , , (0.00)

37 Courtesy of CRC Press/Taylor & Francis Group A p = 50,000 S = 5, A o = 1,000 G = 1,000 P =? FIGURE E2.4

38 Courtesy of CRC Press/Taylor & Francis Group Machine A Machine B A A = 600 A B = 500 P A = 800 P B = 1,000 FIGURE E2.6

39 Courtesy of CRC Press/Taylor & Francis Group Machine A Machine B A A = 600 A B = 500 P A = 800 P B = 1,500 FIGURE E2.7A

40 Courtesy of CRC Press/Taylor & Francis Group A A = 600 A A = 600 P A0 = 800 P A5 = 800 FIGURE E2.7B

41 Courtesy of CRC Press/Taylor & Francis Group A A1 = 600 A A2 = 350 P A0 = 800 P A5 = 800 FIGURE E2.7C

42 Courtesy of CRC Press/Taylor & Francis Group A = 85, IC = 300,000 FIGURE E2.8A

43 Courtesy of CRC Press/Taylor & Francis Group A AT,k = A BT,k t(a BT,k D k ) A AT,k = 85,000 (0.51)(85,000 0) = 41, IC = 300,000 FIGURE E2.8B

44 Courtesy of CRC Press/Taylor & Francis Group A AT,k = A BT,k t(a BT,k D k ) A AT,k = 85,000 (0.51)(85,000 30,000) = 56, IC = 300,000 FIGURE E2.8C

45 Courtesy of CRC Press/Taylor & Francis Group G = 2,782 A AT,1 = 69, IC = 300,000 FIGURE E2.8D

46 Courtesy of CRC Press/Taylor & Francis Group A AT,1 = 69, G = 2,782 IC = 300,000 FIGURE E2.8E

47 Courtesy of CRC Press/Taylor & Francis Group A 1 = 110,000 i = 12.5% 12,000 A 10 = 4, G = 2,800 A = 3,500 P 0 = 200, ,000 FIGURE P2.7

48 Courtesy of CRC Press/Taylor & Francis Group 5,000 cfm 10 F Supply fan 5,000 cfm Heat exchanger 1 Flow control valve 5,000 cfm Pump Flow control damper Heat exchanger 2 Furnace Exhaust fan 10,000 cfm 85 F 10,000 cfm 75 F FIGURE P2.12

Chapter 1 Linear Equations

Chapter 1 Linear Equations . Lines. True. True. If the slope of a line is undefined, the line is vertical. 7. The point-slope form of the equation of a line x, y is with slope m containing the point ( ) y y = m ( x x ). Chapter

More information

2.0 KEY EQUATIONS. Evaporator Net Refrigeration Effect. Compressor Work. Net Condenser Effect

2.0 KEY EQUATIONS. Evaporator Net Refrigeration Effect. Compressor Work. Net Condenser Effect 2.0 KEY EQUATIONS Evaporator Net Refrigeration Effect Q net refrigeration effect [] = (H 1 H 4 ) lb (Refrig Flow Rate) (60) min lb min hr H 1 = leaving evaporator enthalpy lb ; H 4 = entering evaporator

More information

Math 1 Exponential Functions Unit 2018

Math 1 Exponential Functions Unit 2018 1 Math 1 Exponential Functions Unit 2018 Points: /10 Name: Graphing Exponential Functions/Domain and Range Exponential Functions (Growth and Decay) Tables/Word Problems Linear vs Exponential Functions

More information

Name: 1. 2,506 bacteria bacteria bacteria bacteria. Answer: $ 5. Solve the equation

Name: 1. 2,506 bacteria bacteria bacteria bacteria. Answer: $ 5. Solve the equation Name: Print Close During a lab experiment, bacteria are growing continuously at an exponential rate. The initial number of bacteria was 120, which increased to 420 after 5 days. If the bacteria continue

More information

UNIVERSITY OF KWA-ZULU NATAL

UNIVERSITY OF KWA-ZULU NATAL UNIVERSITY OF KWA-ZULU NATAL EXAMINATIONS: June 006 Solutions Subject, course and code: Mathematics 34 MATH34P Multiple Choice Answers. B. B 3. E 4. E 5. C 6. A 7. A 8. C 9. A 0. D. C. A 3. D 4. E 5. B

More information

Geometric Sequences and Series

Geometric Sequences and Series 12-2 OBJECTIVES Find the nth term and geometric means of a geometric sequence. Find the sum of n terms of a geometric series. Geometric Sequences and Series ACCOUNTING Bertha Blackwell is an accountant

More information

The financial reports included in your board packet represent IHLS Financial Activities through July 31, 2018.

The financial reports included in your board packet represent IHLS Financial Activities through July 31, 2018. Attachment 5.1 To: From: Date: RE: IHLS Board of Directors Adrienne L. Elam August 28, 2018 IHLS Financial Reports as of July 31, 2018 FY2017-18 System Area & Per Capita Grant (SAPG) Status As of July

More information

Association Financials

Association Financials Association Financials Understanding Your Association Financial Reports Your Condomimum Homeowner Association Table of Contents 1. Balance Sheet 2. Income Expense Statement 3. Cash Disbursements 4. Receivable

More information

EM 8822-E October 2007 Orchard Economics: Establishing and Producing Medium-Density Pears in Hood River County

EM 8822-E October 2007 Orchard Economics: Establishing and Producing Medium-Density Pears in Hood River County EM 8822-E October 2007 Orchard Economics: Establishing and Producing Medium-Density Pears in Hood River County Clark F. Seavert, Jenny Freeborn, and Steve Castagnoli Orchard Economics: Establishing and

More information

Formelsammlung zu Wirtschaftstheorie IV

Formelsammlung zu Wirtschaftstheorie IV Keynes and the Classics Notes on the Monetary Theory of Production Formelsammlung zu Wirtschaftstheorie IV Social production, value and distribution (436-445) The starting point is a Leontief price system:

More information

O5C1: Graphing Exponential Functions

O5C1: Graphing Exponential Functions Name: Class Period: Date: Algebra 2 Honors O5C1-4 REVIEW O5C1: Graphing Exponential Functions Graph the exponential function and fill in the table to the right. You will need to draw in the x- and y- axis.

More information

MATH 081. Diagnostic Review Materials PART 2. Chapters 5 to 7 YOU WILL NOT BE GIVEN A DIAGNOSTIC TEST UNTIL THIS MATERIAL IS RETURNED.

MATH 081. Diagnostic Review Materials PART 2. Chapters 5 to 7 YOU WILL NOT BE GIVEN A DIAGNOSTIC TEST UNTIL THIS MATERIAL IS RETURNED. MATH 08 Diagnostic Review Materials PART Chapters 5 to 7 YOU WILL NOT BE GIVEN A DIAGNOSTIC TEST UNTIL THIS MATERIAL IS RETURNED DO NOT WRITE IN THIS MATERIAL Revised Winter 0 PRACTICE TEST: Complete as

More information

2015 Costs and Returns Estimate Eastern Idaho: Alfalfa Hay Establishment in Grain Stubble Paul E. Patterson Background and Assumptions

2015 Costs and Returns Estimate Eastern Idaho: Alfalfa Hay Establishment in Grain Stubble Paul E. Patterson Background and Assumptions 2015 Costs and Returns Estimate Eastern Idaho: Alfalfa Hay Establishment in Grain Stubble Paul E. Patterson Background and Assumptions Eastern Idaho The University of Idaho s costs and returns estimates

More information

Math 120 Final Exam Practice Problems, Form: A

Math 120 Final Exam Practice Problems, Form: A Math 120 Final Exam Practice Problems, Form: A Name: While every attempt was made to be complete in the types of problems given below, we make no guarantees about the completeness of the problems. Specifically,

More information

GRADE 11 MATHEMATICS FIRST PAPER NOVEMBER 2009

GRADE 11 MATHEMATICS FIRST PAPER NOVEMBER 2009 Province of the EASTERN CAPE EDUCATION NATIONAL SENIOR CERTIFICATE GRADE 11 MATHEMATICS FIRST PAPER NOVEMBER 2009 MARKS: 150 TIME: 3 hours This question paper consists of 9 pages, 1 diagram sheet and a

More information

notes.notebook April 08, 2014

notes.notebook April 08, 2014 Chapter 7: Exponential Functions graphs solving equations word problems Graphs (Section 7.1 & 7.2): c is the common ratio (can not be 0,1 or a negative) if c > 1, growth curve (graph will be increasing)

More information

Paul Patterson and Steven Hines Background and Assumptions

Paul Patterson and Steven Hines Background and Assumptions 2015 Costs and Returns Estimate Southcentral Idaho: Magic Valley Commercial Dry Beans Paul Patterson and Steven Hines Background and Assumptions Magic Valley The University of Idaho s costs and returns

More information

Background and Assumptions

Background and Assumptions 2013 Costs and Returns Estimate Southwest Idaho: Treasure valley Commercial Dry Beans Kathleen Painter Background and Assumptions Southwestern Idaho The University of Idaho s costs and returns estimates

More information

Term Insurance vs. Indexed Universal Life

Term Insurance vs. Indexed Universal Life Insurance vs. Indexed Universal Life For: Tom Robinson Presented By: [Licensed user's name appears here] Preface A decision to acquire additional life insurance can represent one of several significant

More information

Week No. 6 Chapter Six: Power Factor Improvement

Week No. 6 Chapter Six: Power Factor Improvement Week No. 6 Chapter Six: Power Factor Improvement The electrical energy is almost wholly generated, transmitted and distributed in the form of alternating current. Therefore, the question of power factor

More information

City of Eagleville Budget Presentation Fiscal Year 2018

City of Eagleville Budget Presentation Fiscal Year 2018 City of Eagleville Budget Presentation Fiscal Year 2018 Work Sessions: March 9, 2017: March 23, 2017: April 13, 2017: General Fund Revenue Estimates Parks & Recreation State Street Aid Revenue and Expenses

More information

Parklands College of Education. June Examinations - Autumn Quarter 2015

Parklands College of Education. June Examinations - Autumn Quarter 2015 Parklands College of Education June Examinations - Autumn Quarter 2015 Subject : Mathematics Paper : 1 Grade : 12 Marks : 150 Examiners : F.A. du Preez ; B. Malan ; Time : 3 hours F.Bredell ; S.Joubert

More information

MICROCOMPUTER CROP COST AND RETURN GENERATOR

MICROCOMPUTER CROP COST AND RETURN GENERATOR MICROCOMPUTER CROP AND RETURN GENERATOR BUDGET AREA... VALENCIA AND SOUTHERN BERNALILLO COUNT FARM SIZE.... 30.00 ACRES IRRIGATION TYPE FLOOD NUMBER OF CROPS 5 VERSION 1.0 COPYRIGHT (C) 1984 by NEW MEXICO

More information

Customer-Meter Unit Cost of Electricity Customer-Meter Unit Cost of Electricity ($/kwh) = [Total Cost ($/yr) - Option Capacity Value ($/yr)]

Customer-Meter Unit Cost of Electricity Customer-Meter Unit Cost of Electricity ($/kwh) = [Total Cost ($/yr) - Option Capacity Value ($/yr)] Customer-Meter Unit Cost of Electricity Customer-Meter Unit Cost of Electricity ($/kwh) = [Total Cost ($/yr) - Option Capacity Value ($/yr)] Equivalent Capacity (MW)*1000*8760 Total Cost ($/yr) = Nominal

More information

Practice Questions for Math 131 Exam # 1

Practice Questions for Math 131 Exam # 1 Practice Questions for Math 131 Exam # 1 1) A company produces a product for which the variable cost per unit is $3.50 and fixed cost 1) is $20,000 per year. Next year, the company wants the total cost

More information

Chapter 11 Logarithms

Chapter 11 Logarithms Chapter 11 Logarithms Lesson 1: Introduction to Logs Lesson 2: Graphs of Logs Lesson 3: The Natural Log Lesson 4: Log Laws Lesson 5: Equations of Logs using Log Laws Lesson 6: Exponential Equations using

More information

Crop Enterprise Budget Sugar Beets, Thick-Planted, Wheatland Area

Crop Enterprise Budget Sugar Beets, Thick-Planted, Wheatland Area Crop Enterprise Budget Sugar Beets, Thick-Planted, Wheatland Area John P. Hewlett, Farm/Ranch Management Extension Specialist Chris Bastian, Research Associate MP-72.3 University of Wyoming - August, 1994

More information

EM 8878-E October 2007 Vineyard Economics: Establishing and Producing Wine Grapes in Hood River County

EM 8878-E October 2007 Vineyard Economics: Establishing and Producing Wine Grapes in Hood River County EM 8878-E October 2007 Vineyard Economics: Establishing and Producing Wine Grapes in Hood River County Clark F. Seavert, Jenny Freeborn, and Steve Castagnoli Vineyard Economics: Establishing and Producing

More information

Lecture Notes. Applied Mathematics for Business, Economics, and the Social Sciences (4th Edition); by Frank S. Budnick

Lecture Notes. Applied Mathematics for Business, Economics, and the Social Sciences (4th Edition); by Frank S. Budnick 1 Lecture Notes Applied Mathematics for Business, Economics, and the Social Sciences (4th Edition); by Frank S. Budnick 2 Chapter 2: Linear Equations Definition: Linear equations are first degree equations.

More information

Math 101: Final Exam Review Sheet

Math 101: Final Exam Review Sheet Math 101: Final Exam Review Sheet (Answers are at the end.) Exam Coverage: Everything we learned in the course. Exam Date: Friday, December 11, 2015 Exam Time: 10:30 am 12:30 pm (Arrive at least 10 minutes

More information

Background and Assumptions

Background and Assumptions 2017 Costs and Returns Estimate Southcentral Idaho: Magic Valley Alfalfa Hay Establishment with Oats Ben Eborn Magic Valley Background and Assumptions The University of Idaho s costs and returns estimates

More information

Background and Assumptions

Background and Assumptions 2017 Costs and Returns Estimate Eastern Idaho: Lower Rainfall Dryland Feed Barley Ben Eborn and Terrell Sorensen Eastern Idaho Background and Assumptions The University of Idaho s costs and returns estimates

More information

Lesson 26: Problem Set Sample Solutions

Lesson 26: Problem Set Sample Solutions Problem Set Sample Solutions Problems and 2 provide students with more practice converting arithmetic and geometric sequences between explicit and recursive forms. Fluency with geometric sequences is required

More information

BOARD QUESTION PAPER : MARCH 2018

BOARD QUESTION PAPER : MARCH 2018 Board Question Paper : March 08 BOARD QUESTION PAPER : MARCH 08 Notes: i. All questions are compulsory. Figures to the right indicate full marks. i Graph paper is necessary for L.P.P iv. Use of logarithmic

More information

Name Date Class A 3.12, B 3.12, 10, 3.24, C 10, 3.12, 3.24, D 3.12, 3.24,

Name Date Class A 3.12, B 3.12, 10, 3.24, C 10, 3.12, 3.24, D 3.12, 3.24, . Which label or labels could replace A In the diagram below? A Rational Numbers only B Rational Numbers or Integers C Integers only D Irrational Numbers. Between which two integers does the value of 88

More information

7-6 Growth and Decay. Let t = 7 in the salary equation above. So, Ms. Acosta will earn about $37, in 7 years.

7-6 Growth and Decay. Let t = 7 in the salary equation above. So, Ms. Acosta will earn about $37, in 7 years. 1. SALARY Ms. Acosta received a job as a teacher with a starting salary of $34,000. According to her contract, she will receive a 1.5% increase in her salary every year. How much will Ms. Acosta earn in

More information

8.1 Apply Exponent Properties Involving Products. Learning Outcome To use properties of exponents involving products

8.1 Apply Exponent Properties Involving Products. Learning Outcome To use properties of exponents involving products 8.1 Apply Exponent Properties Involving Products Learning Outcome To use properties of exponents involving products Product of Powers Property Let a be a real number, and let m and n be positive integers.

More information

Common Size Statements Reports in the Common Size Statements Folder

Common Size Statements Reports in the Common Size Statements Folder Common Size Statements Reports in the Common Size Statements Folder Report Name Annual Common Size Balance Sheet Annual Common Size Income Statement Quarterly Common Size Balance Sheet Quarterly Common

More information

CHAPTER 9 MAINTENANCE AND REPLACEMENT. Chapter9 p. 1/66

CHAPTER 9 MAINTENANCE AND REPLACEMENT. Chapter9 p. 1/66 CHAPTER 9 MAINTENANCE AND REPLACEMENT Chapter9 p. 1/66 MAINTENANCE AND REPLACEMENT The problem of determining the lifetime of an asset or an activity simultaneously with its management during that lifetime

More information

MATHS S4 Credit Course CHECKLIST

MATHS S4 Credit Course CHECKLIST St Ninian s High School MATHS S Credit Course CHECKLIST I understand this part of the course = I am unsure of this part of the course = I do not understand this part of the course = Name Class Teacher

More information

MAT 121: Mathematics for Business and Information Science Final Exam Review Packet

MAT 121: Mathematics for Business and Information Science Final Exam Review Packet MAT 121: Mathematics for Business and Information Science Final Exam Review Packet A. Calculate the exact distance (i.e., simplified radicals where appropriate, not decimal approximations using a calculator)

More information

1.3 Exponential Functions

1.3 Exponential Functions Section. Eponential Functions. Eponential Functions You will be to model eponential growth and decay with functions of the form y = k a and recognize eponential growth and decay in algebraic, numerical,

More information

Materials: Hw #9-6 answers handout; Do Now and answers overhead; Special note-taking template; Pair Work and answers overhead; hw #9-7

Materials: Hw #9-6 answers handout; Do Now and answers overhead; Special note-taking template; Pair Work and answers overhead; hw #9-7 Pre-AP Algebra 2 Unit 9 - Lesson 7 Compound Interest and the Number e Objectives: Students will be able to calculate compounded and continuously compounded interest. Students know that e is an irrational

More information

OU_ACTIVITY Journal Entry Reference Guide

OU_ACTIVITY Journal Entry Reference Guide Once the OU_ACTIVITY has been run to excel, the following column format will appear: The first seven columns (Columns A through G) will provide the Chartfield spread for each journal transaction. A B C

More information

Math M111: Lecture Notes For Chapter 10

Math M111: Lecture Notes For Chapter 10 Math M: Lecture Notes For Chapter 0 Sections 0.: Inverse Function Inverse function (interchange and y): Find the equation of the inverses for: y = + 5 ; y = + 4 3 Function (from section 3.5): (Vertical

More information

Number of People Contacted

Number of People Contacted Section 7.2 Problem Solving Using Exponential Functions (Exponential Growth and Decay) Key Words: exponential, growth, decay, critical mass Key Concepts: exponential growth, exponential decay, simple interest,

More information

Background and Assumptions

Background and Assumptions EBB4-SU-17 2017 Costs and Returns Estimate Eastern Idaho: Bingham and Power Counties Sugarbeets Ben Eborn Eastern Idaho Background and Assumptions The University of Idaho s costs and returns estimates

More information

Unit 8: Exponential & Logarithmic Functions

Unit 8: Exponential & Logarithmic Functions Date Period Unit 8: Eponential & Logarithmic Functions DAY TOPIC ASSIGNMENT 1 8.1 Eponential Growth Pg 47 48 #1 15 odd; 6, 54, 55 8.1 Eponential Decay Pg 47 48 #16 all; 5 1 odd; 5, 7 4 all; 45 5 all 4

More information

Lecture 3: Electrical Power and Energy

Lecture 3: Electrical Power and Energy Lecture 3: Electrical Power and Energy Recall from Lecture 2 E (V) I R E Voltage Similar to water pressure Unit: Volts (V) I Current Similar to water flow Unit: Amperes (A) R Resistance Similar to water

More information

Fundamentals of Thermal Heating for Geo-active & -inactive Regions

Fundamentals of Thermal Heating for Geo-active & -inactive Regions Fundamentals of Thermal Heating for Geo-active & -inactive Regions Edward F Wahl, PhD, PE copyright 2014 Edward F Wahl, PhD Credits for some content: DOE, Idaho & California Agencies & Public records Agenda

More information

Algebra 2 CP Semester 1 PRACTICE Exam January 2015

Algebra 2 CP Semester 1 PRACTICE Exam January 2015 Algebra 2 CP Semester 1 PRACTICE Exam January 2015 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

More information

Background and Assumptions

Background and Assumptions 2017 Costs and Returns Estimate Southcentral Idaho: Magic Valley Soft White Spring Wheat Ben Eborn, Steven Hines and Juliet Marshall. Magic Valley Background and Assumptions The University of Idaho s costs

More information

Building Inflation Tables and CER Libraries

Building Inflation Tables and CER Libraries Building Inflation Tables and CER Libraries January 2007 Presented by James K. Johnson Tecolote Research, Inc. Copyright Tecolote Research, Inc. September 2006 Abstract Building Inflation Tables and CER

More information

Paul Patterson, Steven Hines and Juliet Marshall. Background and Assumptions

Paul Patterson, Steven Hines and Juliet Marshall. Background and Assumptions 2015 Costs and Returns Estimate Southcentral Idaho: Magic Valley Spring Malting Barley Paul Patterson, Steven Hines and Juliet Marshall. Background and Assumptions Magic Valley The University of Idaho

More information

Given Find Water Properties

Given Find Water Properties Venturi Example Given: A venturi is to be used to measure a 50 gpm flow of 70 F water in a 4-in ID pipe. Find: Select a throat diameter that provides Re d > 00,000 in the throat, and determine what differential

More information

Sunshine City 47-Sp MHP

Sunshine City 47-Sp MHP Sunshine City 47-Sp MHP 47-sp MHP w/36 POM's Recreation Building used for StorageLaundry Room (Currently not in use) 70% Occupancy - 9-spaces left & 5 MH's left to lease 10 Mobile Homes Newly Rehabbed

More information

Background and Assumptions

Background and Assumptions 2017 Costs and Returns Estimate Eastern Idaho Spring Malting Barley Ben Eborn, Terrell Sorensen and Jon Hogge Eastern Idaho Background and Assumptions The University of Idaho s costs and returns estimates

More information

2013 INTRODUCTION AND USE GUIDELINES 2013 GEORGIA COTTON COSTS AND RETURN BUDGET ESTIMATES

2013 INTRODUCTION AND USE GUIDELINES 2013 GEORGIA COTTON COSTS AND RETURN BUDGET ESTIMATES INTRODUCTION AND USE GUIDELINES 2013 GEORGIA COTTON COSTS AND RETURN BUDGET ESTIMATES Don Shurley and Amanda Smith Department of Agricultural and Applied Economics University of Georgia March 2013 Annual

More information

Chemical Engineering 374

Chemical Engineering 374 Chemical Engineering 374 Fluid Mechanics Single Pipelines 1 Fluids Roadmap Where are we going? 3 Imagine you just started a new job You are a process engineer at a plant Your boss comes to you and says:

More information

Summary of Main Checking Account

Summary of Main Checking Account December 31, 2014 Summary of Main Checking Account Cash In Cash Out Net Change Prior Month Current Pre-Paid Sub Total Current Pre-Paid Sub Total Current Pre-Paid Total Year October 34,667.52 20,265.00

More information

Paul Patterson Background and Assumptions

Paul Patterson Background and Assumptions 2015 Costs and Returns Estimate Southcentral Idaho: Magic Valley Corn Silage: Grown Using Genetically Modified Seed Paul Patterson Background and Assumptions Magic Valley The University of Idaho s costs

More information

Eastern Idaho. Paul E. Patterson and Juliet M. Marshall Background and Assumptions

Eastern Idaho. Paul E. Patterson and Juliet M. Marshall Background and Assumptions 2015 Costs and Returns Estimate Eastern Idaho: Soft White Spring Wheat Paul E. Patterson and Juliet M. Marshall Background and Assumptions Eastern Idaho The University of Idaho s costs and returns estimates

More information

Math 11A Graphing Exponents and Logs CLASSWORK Day 1 Logarithms Applications

Math 11A Graphing Exponents and Logs CLASSWORK Day 1 Logarithms Applications Log Apps Packet Revised: 3/26/2012 Math 11A Graphing Eponents and Logs CLASSWORK Day 1 Logarithms Applications Eponential Function: Eponential Growth: Asymptote: Eponential Decay: Parent function for Eponential

More information

UNIT CONVERSIONS User Guide & Disclaimer

UNIT CONVERSIONS User Guide & Disclaimer v.5.4 www.hvacnotebook.com UNIT CONVERSIONS User Guide & Disclaimer (FREE SAMPLE VERSION) Conversion Spreadsheets Distance Weight 34 Simple User Interface Click On Any Yellow Cells And Enter (Replace With)

More information

Groundwater Replenishment In The Coachella Valley, CA. WESTCAS 2018 Annual Conference June 21, 2018 Zoe Rodriguez del Rey, Water Resources

Groundwater Replenishment In The Coachella Valley, CA. WESTCAS 2018 Annual Conference June 21, 2018 Zoe Rodriguez del Rey, Water Resources Groundwater Replenishment In The Coachella Valley, CA WESTCAS 2018 Annual Conference June 21, 2018 Zoe Rodriguez del Rey, Water Resources Coachella Valley Indio Mecca Palm Springs La Quinta Thermal 2 Coachella

More information

(MATH 1203, 1204, 1204R)

(MATH 1203, 1204, 1204R) College Algebra (MATH 1203, 1204, 1204R) Departmental Review Problems For all questions that ask for an approximate answer, round to two decimal places (unless otherwise specified). The most closely related

More information

STAT515, Review Worksheet for Midterm 2 Spring 2019

STAT515, Review Worksheet for Midterm 2 Spring 2019 STAT55, Review Worksheet for Midterm 2 Spring 29. During a week, the proportion of time X that a machine is down for maintenance or repair has the following probability density function: 2( x, x, f(x The

More information

HOW TO USE THE SBDC FINANCIAL TEMPLATE

HOW TO USE THE SBDC FINANCIAL TEMPLATE HOW TO USE THE SBDC FINANCIAL TEMPLATE It is strongly suggested that, if you are not well acquainted with Financial Statements and their interrelationships, that you seek the assistance of the Small Business

More information

COLLEGE ALGEBRA. Linear Functions & Systems of Linear Equations

COLLEGE ALGEBRA. Linear Functions & Systems of Linear Equations COLLEGE ALGEBRA By: Sister Mary Rebekah www.survivormath.weebly.com Cornell-Style Fill in the Blank Notes and Teacher s Key Linear Functions & Systems of Linear Equations 1 2 Slope & the Slope Formula

More information

A 954 C HD. Technical Description Hydraulic Excavator. Machine for Industrial Applications

A 954 C HD. Technical Description Hydraulic Excavator. Machine for Industrial Applications Technical Description Hydraulic Excavator A 95 C HD litronic` Machine for Industrial Applications Operating Weight 165,800 170,0 lb Engine Output 36 hp (0 kw) Technical Data Engine Rating per ISO 99 0

More information

Delta T Mitigation Strategies Tested on MIT Hayden AHU s. Outline

Delta T Mitigation Strategies Tested on MIT Hayden AHU s. Outline Delta T Mitigation Strategies Tested on MIT Hayden AHU s Outline Chilled Water T Study AHU Coil Overview Cooling Overview Test Setup Data Analysis Findings Summary Julio Londoño, Belimo Americas 16 March

More information

p351 Section 5.5: Bases Other than e and Applications

p351 Section 5.5: Bases Other than e and Applications p351 Section 5.5: Bases Other than e and Applications Definition of Exponential Function to Base a If a is a positive real number (a 1) and x is any real number, then the exponential function to the base

More information

The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION ALGEBRA II. Thursday, August 16, :30 to 3:30 p.m., only.

The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION ALGEBRA II. Thursday, August 16, :30 to 3:30 p.m., only. ALGEBRA II The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION ALGEBRA II Thursday, August 16, 2018 12:30 to 3:30 p.m., only Student Name: School Name: The possession or use of any

More information

The units on the average rate of change in this situation are. change, and we would expect the graph to be. ab where a 0 and b 0.

The units on the average rate of change in this situation are. change, and we would expect the graph to be. ab where a 0 and b 0. Lesson 9: Exponential Functions Outline Objectives: I can analyze and interpret the behavior of exponential functions. I can solve exponential equations analytically and graphically. I can determine the

More information

Quotation: Solar PV System: Mr Sample Customer

Quotation: Solar PV System: Mr Sample Customer Contact Name: Address: Mr Sample Customer Site Address: (if different from contact address) Postcode: Project Reference: Description: Poly Aurora PVI 3.6 OUTDS Canadian Solar Poly 240w Aurora PVI 3.6 OUTDS

More information

Date: June 14, IHLS Finance Committee IHLS Board of Directors. Adrienne L. Elam. Subject: IHLS Financial Reports as of May 31, 2017

Date: June 14, IHLS Finance Committee IHLS Board of Directors. Adrienne L. Elam. Subject: IHLS Financial Reports as of May 31, 2017 Attachment 5.1 Date: June 14, 2017 To: From: IHLS Finance Committee IHLS Board of Directors Adrienne L. Elam Subject: IHLS Financial Reports as of May 31, 2017 The financial reports included represent

More information

ORCHARD ECONOMICS: ESTABLISHING AND PRODUCING D ANJOU AND FRESH BARTLETT PEARS IN HOOD RIVER COUNTY

ORCHARD ECONOMICS: ESTABLISHING AND PRODUCING D ANJOU AND FRESH BARTLETT PEARS IN HOOD RIVER COUNTY AEB 0056 July 2016 ORCHARD ECONOMICS: ESTABLISHING AND PRODUCING D ANJOU AND FRESH BARTLETT PEARS IN HOOD RIVER COUNTY David Halliday, Clark Seavert and Steve Castagnoli Photo: A pear orchard at the base

More information

Lesson 3.notebook May 17, Lesson 2 Problem Set Solutions

Lesson 3.notebook May 17, Lesson 2 Problem Set Solutions Lesson 2 Problem Set Solutions Student Outcomes Lesson 3: Analyzing a Verbal Description > Students make sense of a contextual situation that can be modeled with linear, quadratic, and exponential functions

More information

Simplifying Radical Expressions

Simplifying Radical Expressions Simplifying Radical Expressions Product Property of Radicals For any real numbers a and b, and any integer n, n>1, 1. If n is even, then When a and b are both nonnegative. n ab n a n b 2. If n is odd,

More information

Real Estate Investor Calculator Project Workbook. Quick Estimate Factors MAIN DATA ENTRY

Real Estate Investor Calculator Project Workbook. Quick Estimate Factors MAIN DATA ENTRY MAIN DATA ENTRY 1 2 Current List / Asking Price: $ 175,000.00 Project Updated: 12/18/17 Original or Current Appraised / Market Value / AsIs: $ 180,000.00 AsIs Date: 12/18/17 Est. Resale Value / Post Renovations

More information

Paul Patterson Background and Assumptions

Paul Patterson Background and Assumptions 2015 Costs and Returns Estimate Southcentral Idaho: Magic Valley Alfalfa Hay Production Paul Patterson Background and Assumptions Magic Valley The University of Idaho s costs and returns estimates are

More information

Sample Questions. Please be aware that the worked solutions shown are possible strategies; there may be other strategies that could be used.

Sample Questions. Please be aware that the worked solutions shown are possible strategies; there may be other strategies that could be used. Sample Questions Students who achieve the acceptable standard should be able to answer all the following questions, ecept for any part of a question labelled SE. Parts labelled SE are appropriate eamples

More information

Page Points Score Total: 100

Page Points Score Total: 100 Math 1130 Spring 2019 Sample Midterm 2a 2/28/19 Name (Print): Username.#: Lecturer: Rec. Instructor: Rec. Time: This exam contains 10 pages (including this cover page) and 9 problems. Check to see if any

More information

Just a Few Keystrokes Away

Just a Few Keystrokes Away 0 8/8/2018 Financial Literacy Just a Few Keystrokes Away 1 Table of Contents Page 0 Page 1 Page 2 Page 3 Page 4 Page 5 Page 6 Page 7 Page 8 Page 9 Page 10 Page 11 Page 12 Page 13 Page 14 Page 1518 Cover

More information

AC : A DIMENSIONAL ANALYSIS EXPERIMENT FOR THE FLUID MECHANICS CLASSROOM

AC : A DIMENSIONAL ANALYSIS EXPERIMENT FOR THE FLUID MECHANICS CLASSROOM AC 2011-1108: A DIMENSIONAL ANALYSIS EXPERIMENT FOR THE FLUID MECHANICS CLASSROOM Charles Forsberg, Hofstra University Charles H. Forsberg is an Associate Professor of Engineering at Hofstra University,

More information

Administrator. Public Works Director. Manager

Administrator. Public Works Director. Manager Administrator Public Works Director Manager Mechanics Administrative Assistant I MISSION: The Vehicle Maintenance Department endeavors to repair and maintain equipment for all Departments in order for

More information

Grade 11 Mathematics Page 1 of 6 Final Exam Review (updated 2013)

Grade 11 Mathematics Page 1 of 6 Final Exam Review (updated 2013) Grade Mathematics Page of Final Eam Review (updated 0) REVIEW CHAPTER Algebraic Tools for Operating With Functions. Simplify ( 9 ) (7 ).. Epand and simplify. ( ) ( ) ( ) ( 0 )( ). Simplify each of the

More information

July 12, IHLS Finance Committee IHLS Board of Directors. Adrienne L. Elam. Subject: IHLS Financial Reports as of June 30, 2017

July 12, IHLS Finance Committee IHLS Board of Directors. Adrienne L. Elam. Subject: IHLS Financial Reports as of June 30, 2017 Attachment 7.1 Date: July 12, 2017 To: IHLS Finance Committee IHLS Board of Directors From: Adrienne L. Elam Subject: IHLS Financial Reports as of June 30, 2017 The financial reports included represent

More information

Background and Assumptions

Background and Assumptions 2017 Costs and Returns Estimate Southcentral Idaho: Magic Valley Hard Red Spring Wheat Ben Eborn, Steven Hines and Juliet Marshall. Magic Valley Background and Assumptions The University of Idaho s costs

More information

OCTOBER 2015 DR. Z s CORNER

OCTOBER 2015 DR. Z s CORNER OCTOBER 2015 DR. Z s CORNER Conquering the FE & PE exams Examples & Applications Starting This Month As you all may know ASCE NCS enewsletter and Dr.Z s Corner is read by many engineering students, practicing

More information

Source: % % FINANCING SHORT TERM HOLDING / RESALE. 30 Maximun Offer to Resell (Fix/Flip): $ 424,000.00

Source: % % FINANCING SHORT TERM HOLDING / RESALE. 30 Maximun Offer to Resell (Fix/Flip): $ 424,000.00 MAIN DATA ENTRY Current List / Asking Price: $ 499,000.00 Project Updated: 11/15/17 Original or Current Appraised / Market Value / AsIs: $ 520,000.00 AsIs Date: 11/1/17 Est. Resale Value / Post Renovations

More information

f 2a.) f 4a.) increasing:

f 2a.) f 4a.) increasing: MSA Pre-Calculus Midterm Eam Review December 06. Evaluate the function at each specified value of the independent variable and simplify. f ( ) f ( ) c. ( b ) f ) ). Evaluate the function at each specified

More information

The point is located eight units to the right of the y-axis and two units above the x-axis. A) ( 8, 2) B) (8, 2) C) ( 2, 8) D) (2, 8) E) ( 2, 8)

The point is located eight units to the right of the y-axis and two units above the x-axis. A) ( 8, 2) B) (8, 2) C) ( 2, 8) D) (2, 8) E) ( 2, 8) Name: Date: 1. Find the coordinates of the point. The point is located eight units to the right of the y-axis and two units above the x-axis. A) ( 8, ) B) (8, ) C) (, 8) D) (, 8) E) (, 8). Find the coordinates

More information

SECTION DESCRIPTION PAGE I. BUDGET INTRODUCTION... 1 II. FISCAL YEAR 2017 BUDGET ANALYSIS... 2 III. PROPOSED OPERATING BUDGET... 3

SECTION DESCRIPTION PAGE I. BUDGET INTRODUCTION... 1 II. FISCAL YEAR 2017 BUDGET ANALYSIS... 2 III. PROPOSED OPERATING BUDGET... 3 2018 SECTION DESCRIPTION PAGE I. BUDGET INTRODUCTION... 1 II. FISCAL YEAR 2017 BUDGET ANALYSIS... 2 III. PROPOSED OPERATING BUDGET... 3 IV. GENERAL FUND 001 DESCRIPTIONS... 4 V. DEBT SERVICE FUNDS... 6

More information

COMPARISON OF MEASURED AND ANALYTICAL PERFORMANCE OF SHELL-AND-TUBE HEAT EXCHANGERS COOLING AND HEATING SUPERCRITICAL CARBON DIOXIDE

COMPARISON OF MEASURED AND ANALYTICAL PERFORMANCE OF SHELL-AND-TUBE HEAT EXCHANGERS COOLING AND HEATING SUPERCRITICAL CARBON DIOXIDE The 4th International Symposium - Supercritical CO Power Cycles September 9-10, 014, Pittsburgh, Pennsylvania COMPARISON OF MEASURED AND ANALYTICAL PERFORMANCE OF SHELL-AND-TUBE HEAT EXCHANGERS COOLING

More information

Crop Enterprise Budget Dry Beans, Powell Area

Crop Enterprise Budget Dry Beans, Powell Area Crop Enterprise Budget Dry Beans, Powell Area John P. Hewlett, Farm/Ranch Management Extension Specialist Jay Jenkins, Extension Educator Paul A. Burgener, Former Graduate Assistant Jim J. Jacobs, Professor,

More information

COOLING TOWER MODEL IN MNR

COOLING TOWER MODEL IN MNR COOLING TOWER MODEL IN MNR 1 COOLING TOWER MODEL The cooling tower model used in Liu s study [2] was adapted from the model developed by Eric Weber (1988). One modification is the use of a counterflow

More information

Problem Points Score Total 160

Problem Points Score Total 160 Final Exam A. Miller Fall 2008 Math 210 0 No notes, no books, no calculators, no cell phones, no pagers, no electronic devices of any kind. Name Circle your TAs name: Song Sun (Boyd) Chalermpong Worawannotai

More information

CORE MATHEMATICS PI Page 1 of 10 HILTON COLLEGE TRIAL EXAMINATION AUGUST 2014 CORE MATHEMATICS PAPER I GENERAL INSTRUCTIONS

CORE MATHEMATICS PI Page 1 of 10 HILTON COLLEGE TRIAL EXAMINATION AUGUST 2014 CORE MATHEMATICS PAPER I GENERAL INSTRUCTIONS CORE MATHEMATICS PI Page 1 of 10 HILTON COLLEGE TRIAL EXAMINATION AUGUST 014 Time: 3 hours CORE MATHEMATICS PAPER I GENERAL INSTRUCTIONS 150 marks PLEASE READ THE FOLLOWING INSTRUCTIONS CAREFULLY. 1. This

More information

UNIT 2 DERIVATIVES 2.1 EXPONENTIAL AND LOGARITHMIC FUNCTION APPLICATIONS. Pre-Class:

UNIT 2 DERIVATIVES 2.1 EXPONENTIAL AND LOGARITHMIC FUNCTION APPLICATIONS. Pre-Class: 1830 UNIT 2 DERIVATIVES 2.1 EXPONENTIAL AND LOGARITHMIC FUNCTION APPLICATIONS Pre-Class: Take notes on the videos and readings (use the space below). Work and check problem #1 in the 2.1 NOTES section.

More information