Posts

Using accurate terminology, describe what makes “Artist 47”, “Artist 47”.

Writing Question

Do Kanye or lauryn hill

– Research Paper on Artist

  • Must be 5 pages in length
  • Must detail the Artist’s background
    • Do they play an instrument, are they a trained musician, when did they start playing/writing music, etc.
  • Must detail the Artist’s style
    • Using accurate terminology, describe what makes “Artist 47”, “Artist 47”.
      • Style, Genre, do they write their own music, who is their producer, has/did their sound changed after becoming famous?
    • Must use 8 scholarly sources
      • Properly cited in text.
      • Proper APA/MLA Citation format

Identify the predictor. Identify the criterion. Compute the regression line. Using the regression line – identify the predicted profiling score for a person with a score of 8 for prejudice.

PSY212: Graded Assignment #5

Chi Square and Regression

80 points

 This assignment includes conceptual and computations problems regarding regression as well as SPSS. Please note that each problem has several parts. For full credit, please respond to each part completely and show all your work. Take a picture and insert your work for all hand computation which are noted with the following icon  Insert them in the place noted. Do not included them only at the end and do not submit them in a separate file. Submissions must be in PDF or word format – no other formats will be accepted for credit.

DO NOT change the formatting or the numbering of the exam. Keep all questions and point values on this document. Simply respond in the places noted.

*Note that this assignment should be completed individually. Think of this assignment as a “take-home quiz.” Therefore, please do not discuss this assignment with anyone other than your professor. When complete submit an electronic copy on Bb.

 

 

TYPE all of your answers in addition to the pictures of your work.

  1. A store owner is trying to decide whether he should order equal amounts of four types of milk (skim, 1%, 2%, and whole). To help determine if certain kinds of milk are more popular, he records how many gallons of each kind of milk he sells over the course of a week. His data shows that he sold: 31 gallons of skim milk, 23 gallons of 1% milk, 37 gallons of 2% milk, and 25 gallons of whole milk. The owner is interested in whether the store sells equal amounts of the four types of milk.

Compute a Goodness of Fit Chi Square. Report and interpret your results including the value of chi square, degrees of freedom and statistical and practical significance.

df = k – 1

Where  = chi square, fo = frequency observed, fe = frequency expected, ϕ = phi (measure of practical significance)

Show your work here (for full credit you must show your work for all steps – type in below or attach a picture). Also show your work for the computation of phi.  10 points :

fo fe
Skim milk      
1% milk      
2% milk      
Whole milk      
Sum      

Write out your interpretation including frequencies for all groups and use the following format for the reporting of the results, χ² () =  , p .05, Φ =) to report your results. 10 points

 

 

  1. Santos et al. (1994) described the pique technique. They claimed that people are more likely to comply with strange requests than with “typical” ones, even if the strange request is larger.

To test this hypothesis, a researcher asked 160 strangers for money. He asked some people if they could spare a quarter, and asked others if they could spare 37 cents. He then recorded how many people gave him the amount requested and how many people did not.

Were people more likely to give the researcher 37 cents than they were to give him 25 cents?

Compute a Chi Square Test of Independence. Report and interpret your results including the value of chi square, degrees of freedom and statistical and practical significance.

 

Observed Frequencies

Show your work here (type in row totals, column totals and grand total here):

(for full credit you must show your work for all steps – type in below or attach a picture)

YES – Did give the $ NO – Did not give the $ Row Total
Asked for 25 cents 18 42  
Asked for 37 cents 54 46  
Column Total     Grand Total =

 

Show your work here (for full credit you must show your work for all steps – type in below or attach a picture). Also show your work for the computation of phi.  10 points :

Expected Frequencies (For each cell compute the following: row total x column total/grand total)

YES – Did give the $ NO – Did not give the $
Asked for 25 cents
Asked for 37 cents

 

df = (ka – 1)(kb – 1)

(for full credit you must show your work for all steps – type in below or attach a picture)

 

 

YES – Did give the $ NO – Did not give the $
Asked for 25 cents    
Asked for 37 cents    

 

Write out your interpretation including frequencies for all groups and use the following format for the reporting of the results, χ² () =  , p .05, Φ =) to report your results. 10 points

 

 

  1. A researcher wants to assess whether students’ level of prejudice predict attitudes toward racial profiling.  As part of a larger survey, students complete two scales pertaining to those variables.  Higher scores on the prejudice measure indicate greater prejudice and higher scores on the profiling scale indicate greater support for racial profiling.  Scores on both measures are obtained from each of 20 students.
  Prejudice Profiling    
  X Y XY X2
  7 5 35 49
  4 4 16 16
  5 3 15 25
  6 7 42 36
  2 2 4 4
  3 4 12 9
  6 7 42 36
  4 5 20 16
  8 6 48 64
  9 8 72 81
  6 6 36 36
  5 3 15 25
  4 4 16 16
  6 5 30 36
  2 4 8 4
  6 8 48 36
  5 4 20 25
  7 8 56 49
  8 4 32 64
  7 9 63 49
Sum 110 106 630 676
Mean 5.5 5.3    

 

Insert one picture for work for both c and d here and Type your answers below

  1. Identify the predictor. 2 points
  2. Identify the criterion. 2 points
  3. Compute the regression line. 20 points
  4. Using the regression line – identify the predicted profiling score for a person with a score of 8 for prejudice. 4 points

 

 

  1. Peterson is interested in assessing whether self-esteem predicts reading ability. The data is as follows:
Self Esteem Reading Ability
4 13
6 10
7 16
8 13
10 17
11 12
13 14
13 17

 

  1. Identify the predictor variable (IV) 1 point
  2. Identify the criterion variable (DV) 1 point
  3. Compute the Regression Analysis in SPSS using the data provided on self esteem and reading ability. Paste your output here (you will need to use a snipping tool to copy from SPSS, it will not allow you to copy and paste). Output has several parts – it must include: variables entered/removed, model summary, ANOVA, ad coefficients tables. 5 points
  4. Report results in sentence format – see handout instructions on what to include and how to format it. 5 points

 

 

 

Python’s pow function returns the result of raising a number to a given power. Define a function expo that performs this task, and state its computational complexity using big-0 notation.

Complete questions only 1- 3

Projects

1. A sequential search of a sorted list can halt when the target is less than a given element in the list. Define a modified version of this algorithm, and state the computational complexity, using big-0 notation, of its best-, worst-, and average-case performances.

2. The list method reverse reverses the elements in the list. Define a function amed reverse that reverses the elements in its list argument (without using the method reverse!). Try to make this function as efficient as possible, and state its computational complexity using big-0 notation.

3. Python’s pow function returns the result of raising a number to a given power. Define a function expo that performs this task, and state its computational complexity using big-0 notation. The first argument of this function is the number, and the second argument is the exponent (nonnegative numbers only). You may use either a loop or a recursive function in your implementation. Caution: do not use Python’s ** operator or pow function in this exercise!

4. An alternative strategy for the expo function uses the following recursive definition:

expo(number, exponent)

= 1, when exponent

= 0 = number * expo(number, exponent – 1), when exponent is odd

= (expo(number, exponent // 2))2, when exponent is even

Define a recursive function expo that uses this strategy, and state its computational complexity using big-0 notation.

5. Python’s 1 i st method sort includes the keyword argument reverse, whose default value is False. The programmer can override this value to sort a list in descending order. Modify the selection Sort function discussed in this chapter so that it allows the programmer to supply this additional argument to redirect the sort.

Propose what data you could use that may be available to benchmark your issue and how you could obtain data from your organization to evaluate your performance.

NUR 616 Safety and quality management Part 3

Prompt: Propose what data you could use that may be available to benchmark your issue and how you could obtain data from your organization to evaluate your performance.

Create a 7-point Adlerian leadership pocket card style reminder. Pay attention to how psychological birth order and family atmosphere might affect one’s leadership style.

Adlerian Leadership Pocket Card

Create a 7-point Adlerian leadership pocket card style reminder. Pay attention to how psychological birth order and family atmosphere might affect one’s leadership style. Your reminder can be written as a narrative or as a bullet point document. It should be convincing. You must use at least one direct reference and one indirect reference.

For problem size n, algorithms A and B perform n2 and 1/2 n2 + n instructions, respectively. Which algorithm does more work? Are there particular problem si for which one algorithm performs significantly better than the other? Are the particular problem sizes for which both algorithms perform approximatel e same amount of work?

Search Algorithms

Assume that each of the following expressions indicates the number of operations performed by an algorithm for a problem size of n. Point out the dominant term of each algorithm, and use big-0 notation to classify it.

  • a. 2″ — 4n2 + 5n
  • b. 3n2 + 6
  • c. n3 +n2 —n

For problem size n, algorithms A and B perform n2 and 1/2 n2 + n instructions, respectively. Which algorithm does more work? Are there particular problem si for which one algorithm performs significantly better than the other? Are the particular problem sizes for which both algorithms perform approximatel e same amount of work?

At what point does an n4 algorithm begin to perform better than a Ti algorithm?

What techniques or coping skills from “Becoming Aware” textbook that you might use to deal with the issue(s) that you presented earlier? What would you do differently now to enhance the quality of your life in regard to this issue(s)?

Counseling 5 DEALING WITH CONFLICT

Final Paper

You will write a four to five page, double spaced final paper. Remember to look back at your draft paper you turned in during Week/Module Four. You can use that same topic or choose a new topic.

Final Paper Guidelines

Selecting the Topic

On the journey we call, “life,” where do you see yourself and your relationship with others? Are there areas you want to improve and develop a greater awareness of your own patterns of behavior? Is it your self-esteem, your identity, your emotional expression, your communication style, or how you handle conflict? Select at least two-three areas that are most significant to your own growth and development, e.g., your identity development and its impact on personal and interpersonal relationships, or how you manage conflict and your communication style and their impact on your relationships, or how you manage your emotions and their role in developing your personality traits. You have total freedom to choose any of the areas discussed in your textbook. Make this assignment worthwhile to you.

Structure and Organization:

It would be best to include an introduction and to organize your paper in terms of past, present, and future to give it a logical order and a smooth flow.

  • Introduction:

Introduce your theme (s) and why you chose this topic. State clearly what your paper is going to be about. Make sure to highlight your topic sentence. You are expected to elaborate on this area (s) of your life throughout the paper.

  • Past:

Reflect back on your life story and early childhood experiences. Include details that are only pertinent to your theme. When you introduce an idea, ask yourself: How does it relate to my topic sentence? What am I trying to show? This is a good place to introduce and show how have you dealt or been affected by the theme(s) in your life.

  • Present:

Who are you now in relation to the issue(s) you introduced earlier. How are you dealing with this issue(s) now compared with how you dealt with it in the past? What are some of the current event(s) that are impacting the issue(s) presented? Are there any changes to how you view yourself now?

  • Future:

What techniques or coping skills from “Becoming Aware” textbook that you might use to deal with the issue(s) that you presented earlier? What would you do differently now to enhance the quality of your life in regard to this issue(s)? What are your goals, hopes and visions of yourself? In other words, if you were to re-write your life story, what would you do differently? This part of your paper is about bringing a resolution to the issue (s) of your earlier concern (s).

Are the recommendations feasible given the finances and capabilities of the firm? How would you have strengthened the team’s recommendations, if they were generally on track?

Business Question

Watch the presentation below and answer the following questions: (NOT in an essay format)

1 . Are the recommendations feasible given the finances and capabilities of the firm?

2 . How would you have strengthened the team’s recommendations, if they were generally on track?

Discuss social factors that influence people or groups to conform to the actions of others. Indicate how behaviors and motivation are impacted by the presence of others.

Instructions According to the World Health Organization (WHO), in 2019

Discuss social factors that influence people or groups to conform to the actions of others.

Indicate how behaviors and motivation are impacted by the presence of others. (How does this apply to COVID-19?)

Indicate the structures of the brain that are involved in emotion and motivation. (How could a person’s emotions related to fear drive their behaviors during this pandemic?)

Examine the article’s generalizability to various areas of psychology.

Why would some people choose to follow the orders to avoid social contact and others allow desire for human interaction to be their driving force?

Based on your research from Questions 5 & 6, describe how the relationship between salary and cost-of-living could impact your spending power and ability to meet expenses/pay bills.

Academic and Career Planning – 30 Points – Estimated time to complete – 90 minutes

Grades are based on standards outlined in Grading & Assignment Expectations in Content (How to Download, Upload, and Format Assignments and How to Meet College-Level Writing Expectations).

Responses should be original, in your own words, not copy and paste from a website or word for word from a video.

  1. Watch the Top 10 Reasons to Visit Academic Advising video in Chapter 9 Online Lecture content. Identify 2 of the 10 areas where you could benefit from Advising assistance and for each, provide specific, personal examples of how it will help your short/long term academic planning.
  2. Career Services is closely aligned with Academic Advising, both departments helping you prepare for your future occupation. Watch the What Can DSC Career Services Do for You? video in Chapter 9 online Lecture content. Choose 2 of the 5 services where you could benefit from Career Services assistance and provide specific, personal examples of how each can help your short/long term career/employment planning.

For questions 3-5, use the MyNextMove website found in Chapter 9 Online Lecture content. Explore your intended career (if undecided, choose one of interest).

  1. If the profession you select offers multiple, more specific options, choose the ‘best fit’ for your career goal. List the career/profession researched with the exact title as it appears from the listing here:
  2. Read ‘What They Do’ and ‘On the job, you would…’ areas listed for the profession. Using specific examples from those sections, explain why the work required would interest you based on the type of tasks.

 

  1. Review the Job Outlook
    1. What is the Florida average salary and the national average (US)?
    2. Pick two states other than Florida for comparison. What is the average salary for those states?
  2. Use the Best Places to Live- Cost of Living website found in Chapter 9 Online Lecture content to research this information.
    • In the ‘Where you live now?’ fieldUse your current city of residence (or the closest you can find in the list)
    • ‘Where are you considering?’ – Use a city from one of the states you compared to Florida in Question 5b
    • ‘What is your annual income?’Use the Florida Average Salary researched in Question 5a

List the details you entered in the fields listed above to provide context. Describe (do not just list) salary differences and any indexes that are above 100 (100 = more expensive). In your explanation, include your initial reaction to the results.

  1. Based on your research from Questions 5 & 6, describe how the relationship between salary and cost-of-living could impact your spending power and ability to meet expenses/pay bills.
  2. Review the Career Development process section in your textbook (p.343-349). Identify what stage of the process you are in and describe two specific actions you can take in the next 6 months to help you either explore, clarify, make a decision, or prepare for your academic/professional goals and employment.