Nonlinear Optimization - Statistics
The purpose of this assignment is to introduce how to find solutions to business problems using nonlinear optimization techniques. Using specified data files, chapter example files, and templates from the “Topic 7 Student Data, Template, and Example Files” topic material, complete Chapter 14, Problems 69, 70 (ignore the SolverTable portion), 72 (ignore the SolverTable portion), and 94. Use Microsoft Excel’s Solver Add-In to complete these problems. For Problems 70, 72, and 94, run the Solver’s Answer and Sensitivity Reports. Interpret and summarize the key results. To receive full credit on the assignment, complete the following. Ensure that all Solver settings are defined through the use of the Solver dialog box. Ensure that Excel files include the associated cell functions and/or formulas if functions and/or formulas are used. Include a written response to all narrative questions presented in the problem by placing it in the associated Excel file. Include Answer and Sensitivity Reports interpretation and summary of key results. Place each problem in its own Excel file. Ensure that your first and last name are in your Excel file names. Also please i want all the excel file stimulation should run, software to be used is Palisades Topic 7 Assignment Template and Data Files/Refer to Chapter examples for templates.docx Topic 7 Chapter 14 Examples (Finished)/Electricity Pricing Finished.xlsx Model Electricity pricing model Input data Range names used: Coefficients of demand functions Capacity =Model!$B$15 Constant On-peak price Off-peak price Common_Capacity =Model!$B$21:$C$21 On-peak demand 2.253 -0.013 0.003 Demands =Model!$B$19:$C$19 Off-peak demand 1.142 0.005 -0.015 Prices =Model!$B$13:$C$13 Profit =Model!$B$26 Cost of capacity/mWh $75 Decisions On-peak Off-peak Price per mWh $141.78 $80.06 Capacity (millions of mWh) 0.000 Constraints on demand (in millions of mWh) On-peak Off-peak Demand 0.650 0.650 <= <= Capacity 0.000 0.000 Monetary summary ($ millions) Revenue $144.199 Cost of capacity -$0.000 Profit $144.199 Although this is a small model, it is sufficiently complex to defy an intuitive solution. Both of the prices drive demands for both periods, not just their own, and these demands drive the capacity decision. By lowering prices, demands increase, which means more capacity is needed. By increasing prices, there is less demand, which means less capacity is needed. But in either case, it is difficult to guess the net effect on profit (without doing the calculations). This is a good model to demonstrate why the optimal policy is optimal once you know it, as we did in the book. That is, you can follow the chain of changes that would occur if, say, we increased the peak-load price from $137.57 to a slightly larger (or smaller) value. The net effect should be a decrease in profit. Model_STS 1 $B$9 1 60 80 2 $B$13:$C$13,$B$15,$B$26 Cost of capacity STS_1 Oneway analysis for Solver model in Model worksheet Sensitivity of Prices_1 to Cost of capacity Cost of capacity (cell $B$9) values along side, output cell(s) along top Data for chart Prices_1 Prices_2 Capacity Profit 1 Prices_1 $60 $133.82 Chris: Solver converged in probability to a global solution. $72.10 0.730 106.466 133.82 $62 $134.32 Chris: Solver converged in probability to a global solution. $72.60 0.725 105.012 134.32 $64 $134.82 Chris: Solver converged in probability to a global solution. $73.10 0.720 103.568 134.82 $66 $135.32 Chris: Solver converged in probability to a global solution. $73.60 0.715 102.134 135.32 $68 $135.82 Chris: Solver converged in probability to a global solution. $74.10 0.710 100.710 135.82 $70 $136.32 Chris: Solver converged in probability to a global solution. $74.60 0.705 99.295 136.32 $72 $136.82 Chris: Solver converged in probability to a global solution. $75.10 0.700 97.891 136.82 $74 $137.32 Chris: Solver converged in probability to a global solution. $75.60 0.695 96.497 137.32 $76 $137.82 Chris: Solver converged in probability to a global solution. $76.10 0.690 95.113 137.82 $78 $138.32 Chris: Solver converged in probability to a global solution. $76.60 0.685 93.738 138.32 $80 $138.82 Chris: Solver converged in probability to a global solution. $77.10 0.680 92.374 138.82 Sensitivity of Prices_1 to Cost of capacity 60 62 64 66 68 70 72 74 76 78 80 133.82 134.32 134.82 135.32 135.82 136.32 136.82 137.32 137.82 138.32 138.82 Cost of capacity ($B$9) When you select an output from the dropdown list in cell $K$4, the chart will adapt to that output. Do these results make sense intuitively? You can be the judge. As capacity gets more expensive, less of it is used, and profit decreases. Both of these make sense. But the on-peak and off-peak prices both increase. Why? Topic 7 Chapter 14 Examples (Finished)/Matrix Multiplication Finished.xlsx MMULT Function Matrix multiplication in Excel Typical multiplication of two matrices Multiplication of a matrix and a column Matrix 1 1 2 3 Column 1 2 2 4 5 3 4 Matrix 2 1 2 3 4 Matrix 1 times Column 1, with formula =MMULT(B4:D5,I4:I6) 5 6 Select range with 2 rows, 1 column, enter formula, press Ctrl+Shift+Enter 20 Matrix 1 times Matrix 2, with formula =MMULT(B4:D5,B7:C9) 36 Select range with 2 rows, 2 columns, enter formula, press Ctrl+Shift+Enter. 22 28 Multiplication of a row and a matrix 39 50 Row 1 4 5 Multiplication of a quadratic form (row times matrix times column) Row 1 times Matrix 1, with formula =MMULT(I14:J14,B4:D5) Matrix 3 2 1 3 Select range with 1 row, 3 columns, enter formula, press Ctrl+Shift+Enter 1 -1 0 14 28 37 3 0 4 Multiplication of a row and a column Quadratic form Row 2 1 6 3 Transpose of Column 1 times Matrix 3 times Column 1 Formula is =MMULT(TRANSPOSE(I4:I6),MMULT(B17:D19,I4:I6)) Row 2 times Column 1, with formula =MMULT(I22:K22,I4:I6) Select range with 1 row, 1 column, enter formula, press Ctrl+Shift+Enter Select range with 1 row, 1 column, enter formula, press Ctrl+Shift+Enter 123 32 &"Arial,Bold"Exhibit 32 Matrix multiplication is somewhat advanced, but it's a great tool once you understand it. Basically, each element in the result of a matrix multiplication is a sumproduct. However, it's a sumproduct of a row and a column (each with the same number of elements). This means that Excel's SUMPRODUCT function can't be used, because it requires the two ranges being multiplied to have the same size and shape. Fortunately, Excel also has the MMULT function that does all the sumproducts at once! There are several keys to implementing MMULT in Excel: 1. The matrix on the left must have the same number of columns as the matrix on the right has rows. So a 3x4 can be multiplied by a 4x6, but a 3x4 can't be multiplied by a 3x5. Still, you could take the transpose of the 3x4, to make it 4x3, and then multiply this transpose by the 3x5. 2. The resulting matrix will have as many rows as the matrix on the left, and as many columns as the matrix on the right. So a 3x4 times a 4x6 will be a 3x6. This size range should be selected before entering the MMULT formula. 3. Once you enter the MMULT formula, press Ctrl+Shift+Enter, not simply Enter. 4. MMULT can work with only two matrices at a time, so if you want to multiply more than two matrices, you need to nest the MMULTs, as in B24. Topic 7 Chapter 14 Examples (Finished)/Portfolio Selection Finished.xlsx Model Portfolio selection model Stock input data Stock 1 Stock 2 Stock 3 Mean return 0.14 0.11 0.1 StDev of return 0.2 0.15 0.08 Correlations Stock 1 Stock 2 Stock 3 Covariances Stock 1 Stock 2 Stock 3 Stock 1 1 0.6 0.4 Stock 1 0.04 0.018 0.0064 Stock 2 0.6 1 0.7 Stock 2 0.018 0.0225 0.0084 Stock 3 0.4 0.7 1 Stock 3 0.0064 0.0084 0.0064 Investment decisions Stock 1 Stock 2 Stock 3 Investment weights 0.500 0.000 0.500 Constraint on investing everything Total weights Required value 1.00 = 1 Constraint on expected portfolio return Mean portfolio return Required mean return 0.120 >= 0.120 Portfolio variance 0.0148 Portfolio stdev 0.1217 Range names used: Investment_weights =Model!$B$15:$D$15 Mean_portfolio_return =Model!$B$23 Portfolio_stdev =Model!$B$26 Portfolio_variance =Model!$B$25 Required_mean_return =Model!$D$23 Total_weights =Model!$B$19 Make sure you understand the covariance formulas above, i.e., how they are calculated from standard deviations and correlations with careful lookups. Then notice how the MMULT function is used to calculate portfolio variance. This single formula (cell B25) replaces a long complex formula that would be required if the MMULT function didn't exist, and the beauty of it is that it works whether there are three potential stocks or hundreds of potential stocks. Finally, make sure you realize that it is the portfolio variance formula that makes this model nonlinear. It includes squares and products of the changing cells, and this rules out linearity. Luckily, though, it satisfies the conditions required to ensure that there are no local minima, i.e., we know that the Solver solution is optimal. Model_STS 1 $D$23 1 0.1 0.14 0.005 $B$15:$D$15,$B$23,$B$26 Required return STS_1 Oneway analysis for Solver model in Model worksheet Sensitivity of Investment_weights_1 to Required return Required return (cell $D$23) values along side, output cell(s) along top Data for chart Investment_weights_1 Investment_weights_2 Investment_weights_3 Mean_portfolio_return Portfolio_stdev 1 Investment_weights_1 0.100 0.000 Chris: Solver converged in probability to a global solution. 0.000 1.000 0.100 0.0800 0.0000000373 0.105 0.125 Chris: Solver converged in probability to a global solution. 0.000 0.875 0.105 0.0832 0.1250001043 0.110 0.250 Chris: Solver converged in probability to a global solution. 0.000 0.750 0.110 0.0922 0.2499999851 0.115 0.375 Chris: Solver converged in probability to a global solution. 0.000 0.625 0.115 0.1055 0.3750000522 0.120 0.500 Chris: Solver converged in probability to a global solution. 0.000 0.500 0.120 0.1217 0.4999999404 0.125 0.625 Chris: Solver converged in probability to a global solution. 0.000 0.375 0.125 0.1397 0.625 0.130 0.750 Chris: Solver converged in probability to a global solution. 0.000 0.250 0.130 0.1591 0.7499998808 0.135 0.875 Chris: Solver converged in probability to a global solution. 0.000 0.125 0.135 0.1792 0.8750001341 0.140 1.000 Chris: Solver converged in probability to a global solution. 0.000 0.000 0.140 0.2000 1 Sensitivity of Investment_weights_1 to Required return 0.10000000149011612 0.10500000417232513 0.10999999940395355 0.11500000208616257 0.12000000476837158 0.125 0.12999999523162842 0.13500000536441803 0.14000000059604645 3.7252902845841263E-8 0.12500010430812819 0.24999998509883853 0.37500005215406379 0.49999994039535522 0.62499999999999933 0.74999988079070978 0.8750001341104503 1 Required return ($D$23) Efficient Frontier Portfolio_stdev 8.0000000000000307E-2 8.321659014997336E-2 9.2195443215272274E-2 0.10547512177894132 0.1216552423748523 0.1397318861248211 0.15905971831941693 0.1792345052876122 0.2 0.10000000149011613 0.10500000417232515 0.10999999940395355 0.11500000208616257 0.11999999761581423 0.12499999999999997 0.12999999523162842 0.13500000536441803 0.14000000000000001 Standard deviation of portfolio return (risk) Mean portfolio return When you select an output from the dropdown list in cell $K$4, the chart will adapt to that output. Once you get this efficient frontier, make sure you understand what it means. The attractive part of the chart for an investor is the upper left: high expected return and low risk. Unfortunately, points above and to the left of the curve are unattainable. On the other hand, the unattractive part of the chart is the lower right: low expected return and high risk. The idea of the efficient frontier is that you don't need to be below and to the right of the curve. By choosing the weights appropriately, you can create portfolios that are on the curve. Which point on the curve is best? There is no correct answer. It depends entirely on how much risk you are willing to incur. Conservative investors will favor the left side; more daring investors will favor the right side. This is probably the most natural use of SolverTable in the entire book, because it provides exactly the information investors want: the trade-off between expected return and risk. It clearly shows that you can't have your cake and eat it too, i.e., to get a higher expected return, you have to assume more risk. Topic 7 Chapter 14 Examples (Templates,Data)/Electricity Pricing Big Picture.xlsx Big Picture Electricity Pricing Parameters of demand functions Unit cost of capacity On-peak price Off-peak price Capacity On-peak demand Off-peak demand Revenue Cost of capacity Maximize profit <= <= GlobalInfo All Countries Key Countries Number Smiley Arrows Stop Go Progress Emphasis Flag Tags General - 1 General - 2 Linked Calculations Linked Note Algeria Australia 0 Happy Left Go Not Done Question Flag Red Tag Blue Clock Camera Calculations 1 Note 1 Argentina Brazil 1 Sad Right Stop Quarter Done Exclamation Flag Blue Tag Red Calendar Printer Calculations 1 Note 1 Australia Canada 2 Angry Up Caution Half Done Light Bulb Flag Green Tag Yellow Envelope Key Austria China 3 Frustrated Down Traffic Light Three Quarters Done Pin Flag Black Tag Green Email Glasses Belgium France 4 Happy Arrow Up Down Traffic Light Green Task Done Information Flag Gold Tag Gold Mailbox Gavel Benin Germany 5 Sad Arrow Left Right Traffic Light Red Not Done Check Flag Yellow Tag Purple Speaker Rocket Bosnia and Herzegovina Japan 6 Angry Revert Traffic Light Yellow Quarter Done Plus Flag Purple Tag Black House Scales Brazil Russia 7 Frustrated Left Go Half Done Thumb Up Flag Red Tag Blue Contact Card Coffee Bulgaria UK 8 Right Stop Three Quarters Done On Hold Flag Blue Tag Red Dollar Feet Cameroon US 9 Up Caution Task Done Hourglass Flag Green Tag Yellow Euro Handshake Canada Australia 10 Down Traffic Light Emergency Flag Black Tag Green One Person Check Chile Brazil 0 Arrow Up Down Traffic Light Green No Entry Flag Gold Tag Gold Two Persons Pencil China Canada 1 Arrow Left Right Traffic Light Red Bomb Flag Yellow Tag Purple Locked Book Colombia China 2 Revert Traffic Light Yellow Thumb Down Flag Purple Tag Black Unlocked Magnify Congo France 3 Question Desk Phone Broken Connection Costa Rica Germany 4 Exclamation Cell Phone Folder Croatia Japan 5 Light Bulb Clock Camera Czech Republic Russia 6 Pin Calendar Printer Denmark UK 7 Information Envelope Key Ecuador US 8 Check Email Glasses Egypt 9 Plus Mailbox Gavel England 10 Thumb Up Speaker Rocket Finland On Hold House Scales France Hourglass Contact Card Coffee Germany Emergency Dollar Feet Ghana No Entry Euro Handshake Greece Bomb One Person Check Honduras Thumb Down Two Persons Pencil Hungary Locked Book Ireland Unlocked Magnify Iceland Desk Phone Broken Connection Israel Cell Phone Folder Italy Iran Ivory Coast Jamaica Japan Kenya Korea Republic Macedonia Mali Mexico Montenegro Morocco Netherlands Nigeria Northern Ireland New Zealand Norway Paraguay Peru Poland Portugal Russia Romania Scotland Senegal Serbia Slovakia Slovenia South Africa Spain Sweden Switzerland Togo Trinidad and Tobago UK Uruguay US Venezuela Wales Algeria Argentina Australia Austria Belgium Benin Bosnia and Herzegovina Brazil Bulgaria Cameroon Canada Chile China Colombia Congo Costa Rica Croatia Czech Republic Denmark Ecuador Egypt England Finland France Germany Ghana Greece Honduras Hungary Ireland Iceland Israel Italy Iran Ivory Coast Jamaica Japan Kenya Korea Republic Macedonia Mali Mexico Montenegro Morocco Netherlands Nigeria Northern Ireland New Zealand Norway Paraguay Peru Poland Portugal Russia Romania Scotland Senegal Serbia Slovakia Slovenia South Africa Spain Sweden Switzerland Togo Trinidad and Tobago UK Uruguay US Venezuela Wales TopicInfo 0 Parameters of demand functions 0 Parameters of demand functions 1 ,1, 0 Unit cost of capacity 0 Unit cost of capacity 4 ,4, 0 On-peak price 0 Peak-load price 0 ,0, 0 Off-peak price 0 Off-peak price 0 ,0, 0 Capacity 0 Capacity 3 ,3, 0 On-peak demand 0 Peak-load demand 1 ,1, Off-peak demand Off-peak demand Off-peak demand Off-peak demand 1 ,1, 0 Revenue 0 Revenue 2 ,2, 0 Cost of capacity 0 Cost of capcity 4 ,4, 0 Maximize profit 0 Maximize profit 5 ,5, test test test BP_SlideDescriptions The company must set the price charged in the on-peak period and the price charged in the off-peak period. The prices and the demand functions determine the on-peak and off-peak demands. Note that the demand function for either period can be a function of both the on-peak and the off-peak prices. The demands and prices determine the total revenue from the electricity. The company must choose the common capacity for both periods that will satisfy the demands of both periods. The capacity decision determines the cost of this level of capacity. The objective is to minimize profit: revenue minus the cost of capacity. Format this box with the common color, shading, etc. you want to use for each slide description box. Topic 7 Chapter 14 Examples (Templates,Data)/Electricity Pricing.xlsx Model Electricity pricing model Input data Coefficients of demand functions Constant On-peak price Off-peak price On-peak demand 2.253 -0.013 0.003 Off-peak demand 1.142 0.005 -0.015 Cost of capacity/mWh $75 Decisions On-peak Off-peak Price per mWh Capacity (millions of mWh) Constraints on demand (in millions of mWh) On-peak Off-peak Demand Capacity Monetary summary ($ millions) Revenue Cost of capacity Profit &"Arial,Bold"Exhibit 9 Topic 7 Chapter 14 Examples (Templates,Data)/Matrix Multiplication.xlsx MatrixMult Matrix multiplication in Excel Typical multiplication of two matrices Multiplication of a matrix and a column Matrix 1 1 2 3 Column 1 2 2 4 5 3 4 Matrix 2 1 2 3 4 Matrix 1 times Column 1, with formula =MMULT(B4:D5,I4:I6) 5 6 Select range with 2 rows, 1 column, enter formula, press Ctrl-Shift-Enter Matrix 1 times Matrix 2, with formula =MMULT(B4:D5,B7:C9) Select range with 2 rows, 2 columns, enter formula, press Ctrl-Shift-Enter. Multiplication of a row and a matrix Row 1 4 5 Multiplication of a quadratic form (row times matrix times column) Row 1 times Matrix 1, with formula =MMULT(I14:J14,B4:D5) Matrix 3 2 1 3 Select range with 1 row, 3 columns, enter formula, press Ctrl-Shift-Enter 1 -1 0 3 0 4 Multiplication of a row and a column Transpose of Column 1 times Matrix 3 times Column 1 Row 2 1 6 3 Formula is =MMULT(TRANSPOSE(I4:I6),MMULT(B17:D19,I4:I6)) Select range with 1 row, 1 column, enter formula, press Ctrl-Shift-Enter Row 2 times Column 1, with formula =MMULT(I22:K22,I4:I6) Select range with 1 row, 1 column, enter formula, press Ctrl-Shift-Enter Notes on quadratic form example: Two MMULT's are required because MMULT works on only two ranges at a time. TRANSPOSE is needed to change a column into a row. &"Arial,Bold"Exhibit 32 Topic 7 Chapter 14 Examples (Templates,Data)/Portfolio Selection Big Picture.xlsx Big Picture Portfolio Selection Mean returns Standard deviations of returns Correlations between returns Required mean portfolio return Investment weights Sum of investment weights Actual mean portfolio return 1 Minimize variance (or standard deviation) of portfolio return For each pair of stocks For each stock For each stock For each stock >= = GlobalInfo All Countries Key Countries Number Smiley Arrows Stop Go Progress Emphasis Flag Tags General - 1 General - 2 Linked Calculations Linked Note Algeria Australia 0 Happy Left Go Not Done Question Flag Red Tag Blue Clock Camera Calculations 1 Note 1 Argentina Brazil 1 Sad Right Stop Quarter Done Exclamation Flag Blue Tag Red Calendar Printer Calculations 1 Note 1 Australia Canada 2 Angry Up Caution Half Done Light Bulb Flag Green Tag Yellow Envelope Key Austria China 3 Frustrated Down Traffic Light Three Quarters Done Pin Flag Black Tag Green Email Glasses Belgium France 4 Happy Arrow Up Down Traffic Light Green Task Done Information Flag Gold Tag Gold Mailbox Gavel Benin Germany 5 Sad Arrow Left Right Traffic Light Red Not Done Check Flag Yellow Tag Purple Speaker Rocket Bosnia and Herzegovina Japan 6 Angry Revert Traffic Light Yellow Quarter Done Plus Flag Purple Tag Black House Scales Brazil Russia 7 Frustrated Left Go Half Done Thumb Up Flag Red Tag Blue Contact Card Coffee Bulgaria UK 8 Right Stop Three Quarters Done On Hold Flag Blue Tag Red Dollar Feet Cameroon US 9 Up Caution Task Done Hourglass Flag Green Tag Yellow Euro Handshake Canada Australia 10 Down Traffic Light Emergency Flag Black Tag Green One Person Check … 1363025 - Cengage Learning © e might be to minimize the probability that the portfolio loses money. This possibility is illustrated in one of the problems. Problems Level A 69. In the FPL electricity pricing model, the demand functions have positive and negative coefficients of prices. The negative coefficients indicate that as the price of a product increases, demand for that product decreases. The positive coefficients indicate that as the price of a product increases, demand for the other product increases. a. Increase the magnitudes of the negative coefficients f rom −0.013 and −0.015 to −0.018 and −0.023, and rerun Solver. Are the changes in the optimal solution intuitive? Explain. b. Increase the magnitudes of the positive coefficients f rom 0.005 and 0.003 to 0.007 and 0.005, and rerun Solver. Are the changes in the optimal solution intuitive? Explain. c. Make the changes in parts a and b simultaneously and rerun Solver. What happens now? 70. In the FPL electricity pricing model, we assumed that the capacity level is a decision variable. Assume now that capacity has already been set at 0.65 million of mWh. (Note that the cost of capacity is now a sunk cost, so it is irrelevant to the decision 1363025 - Cengage Learning © problem.) Change the model appropriately and run Solver. Then use SolverT-able to see how sensitive the optimal solution is to the capacity level, letting it vary over some relevant range. Does it appear that the optimal prices will be set so that demand is always equal to capacity for at least one of the two periods of the day? 71. For each of the following, answer whether it makes sense to multiply the matrices of the given sizes. In each case where it makes sense, demonstrate an example in Excel, where you can make up the numbers. a. AB, where A is 3 × 4 and B is 4 × 1 b. AB, where A is 1 × 4 and B is 4 × 1 c. AB, where A is 4 × 1 and B is 1 × 4 d. AB, where A is 1 × 4 and B is 1 × 4 e. ABC, where A is 1 × 4, B is 4 × 4, and C is 4 × 1 f. ABC, where A is 3 × 3, B is 3 × 3, and C is 3 × 1 g. ATB, where A is 4 × 3 and B is 4 × 3, and AT denotes the transpose of A 72. Add a new stock, stock 4, to the Perlman portfolio optimization model. Assume that the estimated mean and standard deviation of return for stock 4 are 0.125 and 0.175, respectively. Also, assume the correlations between stock 4 and the original three stocks are 0.3, 0.5, and 0.8. Run Solver on the modified model, where the required expected portfolio return is again 0.12. Is stock 4 in the optimal portfolio? Then run SolverTable as in the example. Is stock 4 in any of the optimal portfolios on the efficient f rontier? 73. In the Perlman portfolio optimization model, stock 2 is not in the optimal portfolio. Use SolverTable to see whether it ever enters the optimal portfolio as its correlations with stocks 1 and 3 vary. Specifically, use 1363025 - Cengage Learning © a two-way SolverTable with two inputs, the correlations between stock 2 and stocks 1 and 3, each allowed to vary f rom 0.1 to 0.9. Capture as outputs the three decision variable cells. Discuss the results. (Note: You will have to change the model slightly. For example, if you use cells B10 and C11 as the two SolverTable input cells, you will have to ensure that cells C9 and D10 change accordingly. This is easy. Just enter formulas in these latter two cells.) 74. The stocks in the Perlman portfolio optimization model are all positively correlated. What happens when they are negatively correlated? Answer for each of the following scenarios. In each case, two of the three correlations are the negatives of their original values. Discuss the differences between the optimal portfolios in these three scenarios. a. Change the signs of the correlations between stocks 1 and 2 and between stocks 1 and 3. (Here, stock 1 tends to go in a different direction f rom stocks 2 and 3.) b. Change the signs of the correlations between stocks 1 and 2 and between stocks 2 and 3. (Here, stock 2 tends to go in a different direction f rom stocks 1 and 3.) c. Change the signs of the correlations between stocks 1 and 3 and between stocks 2 and 3. (Here, stock 3 tends to go in a different direction f rom stocks 1 and 2.) 75. The file P14_75.xlsx contains historical monthly returns for 28 companies. For each company, calculate the estimated mean return and the estimated variance of return. Then calculate the estimated correlations between the companies’ returns. Note that “return” here means monthly return. 1363025 - Cengage Learning © 76. The file P14_76.xlsx includes contains the data f rom the previous problem. It also contains f ractions in row 3 for creating a portfolio. These f ractions are currently all equal to 1/28, but they can be changed to any values you like, so long as they continue to sum to 1. For any such f ractions, find the estimated mean, variance, and standard deviation of the resulting portfolio return. Level B 77. Continuing the previous problem, find the portfolio that achieves an expected monthly return of at least 0.01(1%) and minimizes portfolio variance. Then use SolverTable to sweep out the efficient f rontier. Create a chart of this efficient f rontier f rom your SolverTable results. What are the relevant lower and upper limits on the required expected monthly return? 78. In many cases you can assume that the portfolio return is at least approximately normally distributed. Then you can use Excel’s NORM.DIST function as in Chapter 5 to calculate the probability that the portfolio return is negative. The relevant formula is = NORM.DIST(0,mean,stdev,TRUE), where mean and stdev are the expected portfolio return and standard deviation of portfolio return, respectively. a. Modify the Perlman portfolio optimization model slightly, and then run Solver to find the portfolio that achieves at least a 12% expected return and minimizes the probability of a negative return. Do you get the same optimal portfolio as before? What is the probability that the return f rom this portfolio will be negative? b. Using the model in part a, create a chart of file://view/books/9781473781962/epub/OEBPS/15_9780357109953_ch05.html#ch5 1363025 - Cengage Learning © the efficient f rontier. However, this time put the probability of a negative return on the horizontal axis. 14-9 Conclusion This chapter has led you through spreadsheet optimization models of many diverse problems. No standard procedure can be used to model all problems. However, there are several keys to most models. • First, determine the decision variables. For example, in blending problems it is important to realize that the decision variables are the amounts of inputs used to produce outputs, and in employee scheduling problems, it is important to realize that the decision variables are the number of employees who start their five-day shift each day of the week. • Set up the model so that you can easily calculate what you want to maximize or minimize (usually profit or cost). For example, in the aggregate planning model it is a good idea to calculate total cost by calculating the monthly cost of the various activities in separate rows and then summing the subtotals. • Set up the model so that the relationships between the cells in the spreadsheet and the constraints of the problem are readily apparent. For example, in the employee scheduling model it is convenient to calculate the number of people working each day of the week adjacent to the minimum required number of people for each day of the week. • Optimization models do not always fall into ready- made categories. A model might involve a combination of the ideas discussed in the production scheduling, blending, and aggregate planning examples. In fact, many real applications file://view/books/9781473781962/epub/OEBPS/07_9780357109953_contents.html#tch14_9 1363025 - Cengage Learning © are not strictly analogous to any of the models we have discussed. However, exposure to the models in this chapter should give you the insights you need to solve a wide variety of interesting problems. SUMMARY OF KEY TERMS TERM EXPLANATION PAGES Employee scheduling models Models for choosing the staffing levels to meet workload requirements 663 Multiple optimal solutions Situation where several solutions obtain the same optimal objective value 668 Blending models Models where inputs must be mixed in the right proportions to produce outputs 670 Logistics models Models where goods must be shipped from one set of locations to another at minimal cost 676 Flow balance constraint Constraint that relates the flow into a node and the flow out of the node 682 Aggregate planning models Models where workforce levels and production levels must be set to meet customer demand 693 Integer programming (IP) models Models where at least some of the decision variables must be integers 714 Binary variable Integer variable that must be 0 or 1; used to indicate whether an activity takes place 714 Capital budgeting models Models where a subset of investment activities is chosen from a set of possible activities 714 Fixed-cost models Models where fixed costs are incurred for various activities if they are done at any positive level 720 Set-covering models Models where members of one set must be selected to cover services to members of another set 729 Nonlinear programming (NLP) models Models where either the objective function or the constraints (or both) are nonlinear functions of the decision variables 735 Global optimum Solution that is the best in the entire feasible region 735 Local optimal solution Solution that is better than all nearby solutions (but might not be optimal globally) 735 Portfolio optimization models Models that attempt to find the portfolio of securities that achieves the best balance between risk and return 740 1363025 - Cengage Learning © PROBLEMS CONCEPTUAL EXERCISES C.1. The employee scheduling model in this chapter was purposely made small (only seven decision variable cells). What would make a similar problem for a company like McDonald’s much harder? What types of constraints would be required? How many decision variable cells (approximately) might there be? C.2. Explain why it is problematic to include a constraint such as the following in an LP model for a blending problem: C.3. “It is essential to constrain all shipments in a transportation problem to have integer values to ensure that the optimal LP solution consists entirely of integer-valued shipments.” Is this statement true or false? Why? C.4. What is the relationship between transportation models and more general logistics models? Explain how these two types of linear optimization models are similar and how they are different. C.5. Unlike the small logistics models presented here, real-world logistics problems can be huge. Imagine the global problem a company like FedEx faces each day. Describe as well as you can the types of decisions and constraints it has. How large (number of decision variables, number of constraints) might such a problem be? C.6. Suppose you develop and solve an integer programming model with a cost-minimization 1363025 - Cengage Learning © objective. Assume the optimal solution yields an objective cell value of $500,000. Now, consider the same linear optimization model without the integer restrictions. That is, suppose you drop the requirement that the decision variable cells be integer-valued and reoptimize with Solver. How does the optimal objective cell value for this modified model (called the LP relaxation of the IP model) compare to the original total cost value of $500,000? Explain your answer. C.7. The portfolio optimization model presented here is the standard model: minimize the variance (or standard deviation) of the portfolio, as a measure of risk, for a given required level of expected return. In general, the goal is to keep risk low and expected return high. Can you think of other ways to model the problem to achieve these basic goals? Is high variability all bad risk? LEVEL A 79. A bus company believes that it will need the following numbers of bus drivers during each of the next five years: 60 drivers in year 1; 70 drivers in year 2; 50 drivers in year 3; 65 drivers in year 4; 75 drivers in year 5. At the beginning of each year, the bus company must decide how many drivers to hire or fire. It costs $4000 to hire a driver and $2000 to fire a driver. A driver’s salary is $45,000 per year. At the beginning of year 1 the company has 50 drivers. A driver hired at the beginning of a year can be used to meet the current year’s requirements and is paid full salary for the current year. a. Determine how to minimize the bus company’s salary, hiring, and firing costs over the next five years. b. Use SolverTable to determine how the total 1363025 - Cengage Learning © number hired, total number fired, and total cost change as the unit hiring and firing costs each increase by the same percentage. 80. A pharmaceutical company produces the drug NasaMist f rom four chemicals. Today, the company must produce 1000 pounds of the drug. The three active ingredients in NasaMist are A, B, and C. By weight, at least 8% of NasaMist must consist of A, at least 4% of B, and at least 2% of C. The cost per pound of each chemical and the amount of each active ingredient in one pound of each chemical are given in the file P14_80.xlsx. It is necessary that at least 100 pounds of chemical 2 and at least 450 pounds of chemical 3 be used. a. Determine the cheapest way of producing today’s batch of NasaMist. b. Use SolverTable to see how much the percentage of requirement of A is really costing the company. Let the percentage required vary f rom 6% to 12%. 81. A bank is attempting to determine where to invest its assets during the current year. At present, $500,000 is available for investment in bonds, home loans, auto loans, and personal loans. The annual rates of return on each type of investment are known to be the following: bonds, 6%; home loans, 8%; auto loans, 5%; personal loans, 10%. To ensure that the bank’s portfolio is not too risky, the bank’s investment manager has placed the following three restrictions on the bank’s portfolio: • The amount invested in personal loans cannot exceed the amount invested in bonds. • The amount invested in home loans cannot exceed the amount invested in auto loans. • No more than 25% of the total amount invested can be in personal loans. 1363025 - Cengage Learning © Help the bank maximize the annual return on its investment portfolio. 82. A fertilizer company blends silicon and nitrogen to produce two types of fertilizers. Fertilizer 1 must be at least 40% nitrogen and sells for $70 per pound. Fertilizer 2 must be at least 70% silicon and sells for $40 per pound. The company can purchase up to 8000 pounds of nitrogen at $15 per pound and up to 10,000 pounds of silicon at $10 per pound. a. Assuming that all fertilizer produced can be sold, determine how the company can maximize its profit. b. Use SolverTable to explore the effect on profit of changing the minimum percentage of nitrogen required in fertilizer 1. c. Suppose the availabilities of nitrogen and silicon both increase by the same percentage f rom their current values. Use SolverTable to explore the effect of this change on profit. 83. Optimization models are used by many Wall Street firms to select a desirable bond portfolio. The following is a simplified version of such a model. A company is considering investing in four bonds; $1 million is available for investment. The expected annual return, the worst-case annual return on each bond, and the duration of each bond are given in the file P14_83.xlsx. (The duration of a bond is a measure of the bond’s sensitivity to interest rates.) The company wants to maximize the expected return f rom its bond investments, subject to three constraints: • The worst-case return of the bond portfolio must be at least 8%. • The average duration of the portfolio must be at most 6. For example, a portfolio that invests $600,000 in bond 1 and $400,000 in bond 4 1363025 - Cengage Learning © has an average duration of [600,000(3) + 400,000(9)]/1,000,000 = 5.4. • Because of diversification requirements, at most 40% of the total amount invested can be invested in a single bond. Determine how the company can maximize the expected return on its investment. 84. At the beginning of year 1, you have $10,000. Investments A and B are available; their cash flows are shown in the file P14_84.xlsx. Assume that any money not invested in A or B earns interest at an annual rate of 2%. a. Determine how to maximize your cash on hand at the beginning of year 4. b. Use SolverTable to determine how a change in the year 2 return for investment A changes the optimal solution to the problem. c. Use SolverTable to determine how a change in the year 3 return of investment B changes the optimal solution to the problem. 85. An oil company produces two types of gasoline, G1 and G2, f rom two types of crude oil, C1 and C2. G1 is allowed to contain up to 4% impurities, and G2 is allowed to contain up to 3% impurities. G1 sells for $48 per barrel, whereas G2 sells for $72 per barrel. Up to 4200 barrels of G1 and up to 4300 barrels of G2 can be sold. The cost per barrel of each crude, their availability, and the level of impurities in each crude are listed in the file P14_85.xlsx. Before blending the crude oil into gas, any amount of each crude can be “purified” for a cost of $3.00 per barrel. Purification eliminates half of the impurities in the crude oil. a. Determine how to maximize profit. b. Use SolverTable to determine how an increase in the availability of C1 affects the optimal profit. 1363025 - Cengage Learning © c. Use SolverTable to determine how an increase in the availability of C2 affects the optimal profit. d. Use SolverTable to determine how a change in the profitability of G2 changes profitability and the types of gas produced. 86. The government is auctioning off oil leases at two sites: 1 and 2. At each site 10,000 acres of land are to be auctioned. Cliff Ewing, Blake Barnes, and Alexis Pickens are bidding for the oil. Government rules state that no bidder can receive more than 40% of the land being auctioned. Cliff has bid $10,000 per acre for site 1 land and $20,000 per acre for site 2 land. Blake has bid $9000 per acre for site 1 land and $22,000 per acre for site 2 land. Alexis has bid $11,000 per acre for site 1 land and $19,000 per acre for site 2 land. a. Determine how to maximize the government’s revenue. b. Use SolverTable to see how changes in the government’s rule on 40% of all land being auctioned affect the optimal revenue. Why can the optimal revenue not decrease if this percentage required increases? Why can the optimal revenue not increase if this percentage required decreases? 87. An automobile company produces cars in Los Angeles and Detroit and has a warehouse in Atlanta. The company supplies cars to customers in Houston and Tampa. The costs of shipping a car between various points are listed in the file P14_87.xlsx, where a blank means that a shipment is not allowed. Los Angeles can produce up to 1100 cars, and Detroit can produce up to 2900 cars. Houston must receive 2400 cars, and Tampa must receive 1500 cars. a. Determine how to minimize the cost of 1363025 - Cengage Learning © meeting demands in Houston and Tampa. b. Modify the answer to part a if shipments between Los Angeles and Detroit are not allowed. c. Modify the answer to part a if shipments between Houston and Tampa are allowed at a cost of $5 per car. 88. An oil company produces oil f rom two wells. Well 1 can produce up to 150,000 barrels per day, and well 2 can produce up to 200,000 barrels per day. It is possible to ship oil directly f rom the wells to the company’s customers in Los Angeles and New York. Alternatively, the company could transport oil to the ports of Mobile and Galveston and then ship it by tanker to New York or Los Angeles, respectively. Los Angeles requires 160,000 barrels per day, and New York requires 140,000 barrels per day. The costs of shipping 1000 barrels between various locations are shown in the file P14_88.xlsx, where a blank indicates shipments that are not allowed. Determine how to minimize the transport costs in meeting the oil demands of Los Angeles and New York. 89. Based on Bean et al. (1987). Boris Milkem’s firm owns six assets. The expected selling price (in millions of dollars) for each asset is given in the file P14_89.xlsx. For example, if asset 1 is sold in year 2, the firm receives $20 million. To maintain a regular cash flow, Milkem must sell at least $20 million of assets during year 1, at least $30 million worth during year 2, and at least $35 million worth during year 3. Determine how Milkem can maximize his total revenue f rom assets sold during the next three years. 90. Based on Sonderman and Abrahamson (1985). In treating a brain tumor with radiation, physicians want the maximum amount of radiation possible to bombard the tissue containing the tumors. The 1363025 - Cengage Learning © constraint is, however, that there is a maximum amount of radiation that normal tissue can handle without suffering tissue damage. Physicians must therefore decide how to aim the radiation so as to maximize the radiation that hits the tumor tissue subject to the constraint of not damaging the normal tissue. As a simple example, suppose there are six types of radiation beams (beams differ in where they are aimed and their intensity) that can be aimed at a tumor. The region containing the tumor has been divided into six regions: three regions contain tumors and three contain normal tissue. The amount of radiation delivered to each region by each type of beam is shown in the file P14_90.xlsx. If each region of normal tissue can handle at most 60 units of radiation, which beams should be used to maximize the total amount of radiation received by the tumors? 91. A leading hardware company produces three types of computers: Pear computers, Apricot computers, and Orange computers. The relevant data are given in the file P14_91.xlsx. The equipment cost is a fixed cost; it is incurred if any of this type of computer is produced. A total of 30,000 chips and 12,000 hours of labor are available. The company wants to produce at least two types of computers. a. Determine how the company can maximize its profit. b. For any computer type not in the optimal product mix, use SolverTable to find how much larger its unit margin would have to be before it would enter the optimal product mix. 92. A food company produces tomato sauce at five different plants. The tomato sauce is then shipped to one of three warehouses, where it is stored until it is shipped to one of the company’s four customers. All 1363025 - Cengage Learning © of the inputs for the problem are given in the file P14_92.xlsx, as follows: • The plant capacities (in tons) • The cost per ton of producing tomato sauce at each plant and shipping it to each warehouse • The cost of shipping a ton of sauce f rom each warehouse to each customer • The customer requirements (in tons) of sauce • The fixed annual cost of operating each plant and warehouse. The company must decide which plants and warehouses to open, and which routes f rom plants to warehouses and f rom warehouses to customers to use. All customer demand must be met. A given customer’s demand can be met f rom more than one warehouse, and a given plant can ship to more than one warehouse. a. Determine the minimum-cost method for meeting customer demands. b. Use SolverTable to see how a change in the capacity of plant 1 affects the total cost. c. Use SolverTable to see how a change in the customer 2 demand affects the total cost. 93. You are given the following means, standard deviations, and correlations for the annual return on three potential investments. The means are 0.12, 0.15, and 0.20. The standard deviations are 0.20, 0.30, and 0.40. The correlation between stocks 1 and 2 is 0.65, between stocks 1 and 3 is 0.75, and between stocks 2 and 3 is 0.41. You have $100,000 to invest and can invest no more than half of your money in any single investment. Determine the minimum-variance 1363025 - Cengage Learning © portfolio that yields an expected annual return of at least 0.14. 94. You have $50,000 to invest in three stocks. Let Ri be the random variable representing the annual return on $1 invested in stock i. For example, if Ri = 0.12, then $1 invested in stock i at the beginning of a year is worth $1.12 at the end of the year. The means are E(R1) = 0.14, E(R2) = 0.11, and E(R3) = 0.10. The variances are Var R1 = 0.20, VarR2 = 0.08, and VarR3 = 0.18. The correlations are r12 = 0.8, r13 = 0.7, and r23 = 0.9. Determine the minimum-variance portfolio that attains an expected annual return of at least 0.12. LEVEL B 95. The risk index of an investment can be obtained by taking the absolute values of percentage changes in the value of the investment for each year and averaging them. Suppose you are trying to determine the percentages of your money to invest in stocks, 3-month Treasury bills, and 10-year Treasury bonds. The file P14_95.xlsx lists the annual returns (percentage changes in value) for these investments since 1970. Let the risk index of a portfolio be the weighted average of the risk indices of these investments, where the weights are the f ractions of the portfolio assigned to the investments. Suppose the amount of each investment must be between 20% and 50% of the total inve
CATEGORIES
Economics Nursing Applied Sciences Psychology Science Management Computer Science Human Resource Management Accounting Information Systems English Anatomy Operations Management Sociology Literature Education Business & Finance Marketing Engineering Statistics Biology Political Science Reading History Financial markets Philosophy Mathematics Law Criminal Architecture and Design Government Social Science World history Chemistry Humanities Business Finance Writing Programming Telecommunications Engineering Geography Physics Spanish ach e. Embedded Entrepreneurship f. Three Social Entrepreneurship Models g. Social-Founder Identity h. Micros-enterprise Development Outcomes Subset 2. Indigenous Entrepreneurship Approaches (Outside of Canada) a. Indigenous Australian Entrepreneurs Exami Calculus (people influence of  others) processes that you perceived occurs in this specific Institution Select one of the forms of stratification highlighted (focus on inter the intersectionalities  of these three) to reflect and analyze the potential ways these ( American history Pharmacology Ancient history . Also Numerical analysis Environmental science Electrical Engineering Precalculus Physiology Civil Engineering Electronic Engineering ness Horizons Algebra Geology Physical chemistry nt When considering both O lassrooms Civil Probability ions Identify a specific consumer product that you or your family have used for quite some time. This might be a branded smartphone (if you have used several versions over the years) or the court to consider in its deliberations. Locard’s exchange principle argues that during the commission of a crime Chemical Engineering Ecology aragraphs (meaning 25 sentences or more). Your assignment may be more than 5 paragraphs but not less. INSTRUCTIONS:  To access the FNU Online Library for journals and articles you can go the FNU library link here:  https://www.fnu.edu/library/ In order to n that draws upon the theoretical reading to explain and contextualize the design choices. Be sure to directly quote or paraphrase the reading ce to the vaccine. Your campaign must educate and inform the audience on the benefits but also create for safe and open dialogue. A key metric of your campaign will be the direct increase in numbers.  Key outcomes: The approach that you take must be clear Mechanical Engineering Organic chemistry Geometry nment Topic You will need to pick one topic for your project (5 pts) Literature search You will need to perform a literature search for your topic Geophysics you been involved with a company doing a redesign of business processes Communication on Customer Relations. Discuss how two-way communication on social media channels impacts businesses both positively and negatively. Provide any personal examples from your experience od pressure and hypertension via a community-wide intervention that targets the problem across the lifespan (i.e. includes all ages). Develop a community-wide intervention to reduce elevated blood pressure and hypertension in the State of Alabama that in in body of the report Conclusions References (8 References Minimum) *** Words count = 2000 words. *** In-Text Citations and References using Harvard style. *** In Task section I’ve chose (Economic issues in overseas contracting)" Electromagnetism w or quality improvement; it was just all part of good nursing care.  The goal for quality improvement is to monitor patient outcomes using statistics for comparison to standards of care for different diseases e a 1 to 2 slide Microsoft PowerPoint presentation on the different models of case management.  Include speaker notes... .....Describe three different models of case management. visual representations of information. They can include numbers SSAY ame workbook for all 3 milestones. You do not need to download a new copy for Milestones 2 or 3. When you submit Milestone 3 pages): Provide a description of an existing intervention in Canada making the appropriate buying decisions in an ethical and professional manner. Topic: Purchasing and Technology You read about blockchain ledger technology. Now do some additional research out on the Internet and share your URL with the rest of the class be aware of which features their competitors are opting to include so the product development teams can design similar or enhanced features to attract more of the market. The more unique low (The Top Health Industry Trends to Watch in 2015) to assist you with this discussion.         https://youtu.be/fRym_jyuBc0 Next year the $2.8 trillion U.S. healthcare industry will   finally begin to look and feel more like the rest of the business wo evidence-based primary care curriculum. Throughout your nurse practitioner program Vignette Understanding Gender Fluidity Providing Inclusive Quality Care Affirming Clinical Encounters Conclusion References Nurse Practitioner Knowledge Mechanics and word limit is unit as a guide only. The assessment may be re-attempted on two further occasions (maximum three attempts in total). All assessments must be resubmitted 3 days within receiving your unsatisfactory grade. You must clearly indicate “Re-su Trigonometry Article writing Other 5. June 29 After the components sending to the manufacturing house 1. In 1972 the Furman v. Georgia case resulted in a decision that would put action into motion. Furman was originally sentenced to death because of a murder he committed in Georgia but the court debated whether or not this was a violation of his 8th amend One of the first conflicts that would need to be investigated would be whether the human service professional followed the responsibility to client ethical standard.  While developing a relationship with client it is important to clarify that if danger or Ethical behavior is a critical topic in the workplace because the impact of it can make or break a business No matter which type of health care organization With a direct sale During the pandemic Computers are being used to monitor the spread of outbreaks in different areas of the world and with this record 3. Furman v. Georgia is a U.S Supreme Court case that resolves around the Eighth Amendments ban on cruel and unsual punishment in death penalty cases. The Furman v. Georgia case was based on Furman being convicted of murder in Georgia. Furman was caught i One major ethical conflict that may arise in my investigation is the Responsibility to Client in both Standard 3 and Standard 4 of the Ethical Standards for Human Service Professionals (2015).  Making sure we do not disclose information without consent ev 4. Identify two examples of real world problems that you have observed in your personal Summary & Evaluation: Reference & 188. Academic Search Ultimate Ethics We can mention at least one example of how the violation of ethical standards can be prevented. Many organizations promote ethical self-regulation by creating moral codes to help direct their business activities *DDB is used for the first three years For example The inbound logistics for William Instrument refer to purchase components from various electronic firms. During the purchase process William need to consider the quality and price of the components. In this case 4. A U.S. Supreme Court case known as Furman v. Georgia (1972) is a landmark case that involved Eighth Amendment’s ban of unusual and cruel punishment in death penalty cases (Furman v. Georgia (1972) With covid coming into place In my opinion with Not necessarily all home buyers are the same! When you choose to work with we buy ugly houses Baltimore & nationwide USA The ability to view ourselves from an unbiased perspective allows us to critically assess our personal strengths and weaknesses. This is an important step in the process of finding the right resources for our personal learning style. Ego and pride can be · By Day 1 of this week While you must form your answers to the questions below from our assigned reading material CliftonLarsonAllen LLP (2013) 5 The family dynamic is awkward at first since the most outgoing and straight forward person in the family in Linda Urien The most important benefit of my statistical analysis would be the accuracy with which I interpret the data. The greatest obstacle From a similar but larger point of view 4 In order to get the entire family to come back for another session I would suggest coming in on a day the restaurant is not open When seeking to identify a patient’s health condition After viewing the you tube videos on prayer Your paper must be at least two pages in length (not counting the title and reference pages) The word assimilate is negative to me. I believe everyone should learn about a country that they are going to live in. It doesnt mean that they have to believe that everything in America is better than where they came from. It means that they care enough Data collection Single Subject Chris is a social worker in a geriatric case management program located in a midsize Northeastern town. She has an MSW and is part of a team of case managers that likes to continuously improve on its practice. The team is currently using an I would start off with Linda on repeating her options for the child and going over what she is feeling with each option.  I would want to find out what she is afraid of.  I would avoid asking her any “why” questions because I want her to be in the here an Summarize the advantages and disadvantages of using an Internet site as means of collecting data for psychological research (Comp 2.1) 25.0\% Summarization of the advantages and disadvantages of using an Internet site as means of collecting data for psych Identify the type of research used in a chosen study Compose a 1 Optics effect relationship becomes more difficult—as the researcher cannot enact total control of another person even in an experimental environment. Social workers serve clients in highly complex real-world environments. Clients often implement recommended inte I think knowing more about you will allow you to be able to choose the right resources Be 4 pages in length soft MB-920 dumps review and documentation and high-quality listing pdf MB-920 braindumps also recommended and approved by Microsoft experts. The practical test g One thing you will need to do in college is learn how to find and use references. References support your ideas. College-level work must be supported by research. You are expected to do that for this paper. You will research Elaborate on any potential confounds or ethical concerns while participating in the psychological study 20.0\% Elaboration on any potential confounds or ethical concerns while participating in the psychological study is missing. Elaboration on any potenti 3 The first thing I would do in the family’s first session is develop a genogram of the family to get an idea of all the individuals who play a major role in Linda’s life. After establishing where each member is in relation to the family A Health in All Policies approach Note: The requirements outlined below correspond to the grading criteria in the scoring guide. At a minimum Chen Read Connecting Communities and Complexity: A Case Study in Creating the Conditions for Transformational Change Read Reflections on Cultural Humility Read A Basic Guide to ABCD Community Organizing Use the bolded black section and sub-section titles below to organize your paper. For each section Losinski forwarded the article on a priority basis to Mary Scott Losinksi wanted details on use of the ED at CGH. He asked the administrative resident