Mass Balance Company Is Manufacturing A New Digital Scale For Use By A Large Che
/in Uncategorized /by developerMass Balance Company is manufacturing a new digitalscale for use by a large chemical company. The order isfor 40 units. The first scale took 60 hours of direct labor.The second unit took 48 hours to complete.a. What is the learning rate?b. What is the estimated time for the 40th unit?c. What is the estimated total time for producing all40 units?d. What is the average time per unit for producing thelast 10 units (#31–#40)?Please show all work and explain why each answer was chosen.
Learning Curves Find coefficient DataObservation 1Observation 2 Unit number12 Time6048 Given DataGiven Data a. What is the learning rate? Learning Rate =Learning Rate = Time for…
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"

Mat 350 Any Documents Needed To Complete The Assignment Questions Are Attached B
/in Uncategorized /by developerMAT 350
Any documents needed to complete the assignment questions are attached below.
Essay #1: The Gallup organization releases the results of recent polls at its website, www.gallup.com. Visit this site and read an article of interest.
- Describe the population of interest.
- Describe the sample that was collected.
- Describe a parameter of interest.
- Describe the statistic used to describe the parameter in (c).
A Gallup poll indicated that 74% of Americans who had yet to retire look to retirement accounts (such as 401(k), IRA, and Keogh account) as major funding sources when they retire. Interestingly, 40% also said that they looked to stocks or stock market mutual fund investments as major funding sources when they retire. (data extracted from D. Jacobs, “Investors Look Beyond Social Security to Fund Retirement,” www.gallup.com, March 28, 2011). The results are based on telephone interviews conducted March 24, 2011, with 1,000 or more adults living in the United States, aged 18 and older.
- Describe the population of interest.
- Describe the sample that was collected.
- Is 74% a parameter or a statistic? Explain.
- Is 40% a parameter or a statistic?
Essay #2: A manufacturer of cat food was planning to survey households in the United States to determine purchasing habits of cat owners. Among the variables to be collected are the following:
- The primary place of purchase for cat food
- Whether dry or moist cat food is purchased
- The number of cats living in the household
- Whether any cat living in the household is pedigreed
- For each of the four items listed, indicate whether the variable is categorical or numerical. If it is numerical, is it discrete or continuous?
- Develop five categorical questions for the survey.
- Develop five numerical questions for the survey.
Essay #3: In 2008, a university in the mid-western United States surveyed its full-time first-year students after they completed their first semester. Surveys were electronically distributed to all 3,727 students, and responses were obtained from 2,821 students. Of the students surveyed, 90.1% indicated that they had studied with other students, and 57.1% indicated they had tutored another student. The report also noted that 61.3% of the students surveyed came to class late at least once, and 45.8% admitted to being bored in class at least once.
- Describe the population of interest.
- Describe the sample that was collected.
- Describe a parameter of interest.
- Describe the statistic used to estimate the parameter in (c).
Essay #4: The Data and Story Library (DASL) is an online library of data files and stories that illustrate the use of basic statistical methods. Visit Data and Story Library, click DASL and explore a data set of interest to you.
- Describe a variable in the data set you selected.
- Is the variable categorical or numerical?
- If the variable is numerical, is it discrete or continuous?
Essay #5: A sample of 62 undergraduate students answered the following survey:
- What is your gender? Female ______ Male ______
- What is your age (as of last birthday)? ______
- What is your current registered class designation? Freshman ______ Sophomore ______ Junior ______ Senior ______
- What is your major area of study? Accounting ______ Computer Information Systems ______ Economics/ Finance ______ International Business ______ Management ______ Retailing/ Marketing ______ Other ______ Undecided ______
- At the present time, do you plan to attend graduate school? Yes ______ No ______ Not sure ______
- What is your current cumulative grade point average? ______
- What is your current employment status? Full time ______ Part time ______ Unemployed ______
- What would you expect your starting annual salary (in $ 000) to be if you were to seek full- time employment immediately after obtaining your bachelor’s degree? ______
- For how many social networking sites are you registered? ______
- How satisfied are you with the food and dining services on campus? ______ 1 2 3 4 5 6 7 Extremely Neutral Extremely unsatisfied satisfied
- About how much money did you spend this semester for textbooks and supplies? ______
- What type of computer do you prefer to use for your studies? Desktop ______ Laptop ______ Tablet/ notebook/ netbook ______
- How many text messages do you send in a typical week? ______
- How much wealth (income, savings, investment, real estate, and other assets) would you have to accumulate (in millions of dollars) before you would say you are rich? ______
Based on your study of the survey and the results provided, answer the following:
- Which variables in the survey are categorical?
- Which variables in the survey are numerical?
- Which variables are discrete numerical variables?
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"

Mat 262 Estimating The Area Under A Curve With Matlab Part 1 The First New Ide
/in Uncategorized /by developerMAT 262 – Estimating the Area Under a Curve with MatLab
Part 1
The first new idea here is how to use subscripts within MatLab. Outside of the MatLab environment, a row vector x with n components would look like
x = [ x1x2 … xn -1xn ]
where each entry in the vector would be a number. In MatLab, however, we write x(1), x(2), …, x(n – 1), x(n) to represent subscript notation, which allows us to manipulate entries individually instead of the vector as a whole.
We may know what this vector looks like entry by entry, but it may not be very practical to do monotonous calculations with each entry within the script with respect to some function over and over again. Instead, we can compute what the function would look like for each component by setting up a pattern for MatLab to follow inside of what is called a for loop. A for loop is a way to essentially tell MatLab to do the same operation for a predetermined amount of calculations to a set of values until all of the calculations are done, and then MatLab stops. The example below demonstrates both of these ideas together. I have left notes as comments.
% the function in this code is the standard Normal curve from x = -5 to x = 5; we are going to discretize the horizontal axis, then evaluate the value of each value on the standard Normal curve
xmin = -5; % this is the smallest value in our domain; it is suppressed so it won’t output to the CW
h = 1; this is our step size for this example; h or are common variables to use for step size
xmax = 5; % this is the largest value in our domain, also suppressed
n = (xmax – xmin)/h; this generates how many entries there are in our vector, which is 10
x(1) = xmin; % our first entry is -5, as mentioned earlier, so this is x1, but written so MatLab understands
y(1) = (1/(sqrt(2*pi)))*exp(-((xmin).^2)/2); % the value of written into MatLab
for i=1:n % don’t suppress the condition for the for loop
x(i+1) = x(i) + h; % this is the pattern for going from one x entry to the next; suppress it
y(i+1) = (1/(sqrt(2*pi)))*exp(-((x(i+1)).^2)/2); % same deal as the line above
end % once MatLab goes through all of the entries, you have to tell it to stop operating in the for loop
One of the reasons we are working with subscripts and for loops is to enable us to estimate areas under curves, which is the purpose of this second MatLab project. As such, it would be nice to visualize how these values in the for loop are advantageous to estimating the area under a given curve. One way to do this is to create the histogram that is associated with the left-hand and right-hand estimates. As seen in class, depending upon which estimate we use, we could be using an overestimate or an underestimate.
Even though there are built-in histogram functions in MatLab, none of them work quite as easily as the line command. The line command allows the user to dictate exactly where the line starts and ends. In particular, it creates a line between two points in the xy-plane using the pattern below.
line([starting x coordinate; ending x coordinate],[starting y coordinate, ending y coordinate])
This lends itself to creating either vertical, horizontal, or diagonal lines. We are only really concerned with creating the former two, since we are mimicking a histogram. These can be manipulated inside of a for loop to create a collection of lines as needed (hint for the next part).
Two final commands that need to be mentioned are the sum command and the trapz command.
The sum command is exactly what it sounds like it is: a cumulative sum of a collection of quantities, which could be a collection of subscripted quantities (hint for the next part). If, for example, you wanted to add up all of the areas of the individual bars of a histogram, a single equation in a for loop could collect all of the areas and a short, unsuppressed command after the end of the for loop of the form sum( ) could generate that sum.
Lastly, the trapz command is a method to finding the “exact” area under a given curve. It is displayed and executed in the same format as the plot command: trapz(x vector, y equation). Leave it unsuppressed so the output is displayed in the CW.
Part 2 – Estimating the Area Under a Curve (30 pts)
Consider a simple LRC series electrical circuit connected to a 9V battery. This circuit has an inductance of 0.2 H (henries), a resistance of 5 (ohms), and capacitance 0.0 F (farads). If this circuit stays closed indefinitely (so current runs through the circuit all the time), starting at time t = 0 seconds, with an initial charge of 0 C (coulombs), then the function that gives the current for all nonnegative times t is
i(t) = .
2A) (4 pts) Plot the current function above from t = 0 seconds to t = 1 seconds with an adequately small step size. Label each of the axes as to what they represent and title the graph. Make it look nice.
Now, this function above, i(t), gives us the current throughout the circuit, but it does not explicitly tell us much about the charge in the circuit. The relationship between distance, velocity, and time is very similar to the relationship between charge, current, and time. Using this knowledge, we are going to utilize subscripts and for loops to estimate the area under the curve generated by the current function, i(t) in a similar fashion as the example provided earlier.
2B) (10 pts) Use a for loop to calculate the left-hand estimate for the area under the curve. Use a step size of either 0.1 or 0.2 in your code. Create vertical and horizontal lines mimicking what the left-hand estimate would look when drawn over the top of the original function (like examples from class). Create these lines within the for loop. Lastly, calculate the area of each column for the estimate, and sum the results outside of the for loop using a sum command.
Hint: Set up the first subscripted entry before the for loop like in the example above. It may be useful to draw a picture by hand first to help with how line commands should work.
2C) (10 pts) Do the same thing as in 2B, but for the right-hand estimate for the area under the curve.
Hint: Once you get 2B, you only need a few minor modifications to knock this one out.
2D) (6 pts) Compare the estimated results from parts 2B and 2C. Are they close? Do they make sense based on the original plot? Now, compute the exact area under the curve with the trapz command with the original vector and function. Are your estimates close to the actual area under the curve? Finally, what does the area under the curve represent for this problem? Provide a careful, thoughtful answer within the context of the problem.
MY ANSWER SO FAR:
% Part 2A
%sets the range
%this is the equation
%stops from listing the variables
%creates the graph
%Part 2B
%defines the for loop
%coordinates into the loop
%this part is supposed to split the graph into sections
%finds left sum
%Part 2C
%Part 2D
%finds the exact area under a curve
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"

Mat 172 Final Exam Study Guide You May Use You Calculator On The Final Exam But
/in Uncategorized /by developerMat 116 Week 8 Real World 12 60 11 55 10 50 Grade Scale Number Correct 9 8 7 6
/in Uncategorized /by developerCan you help with these 12 questions?
MAT/116 – Week 8 Real World1260 1155 1050 Grade Scale (Number Correct)987654454035302520 315 210 15 Complete this project to apply the skills learned in Chapter 8 and Chapter 9 to a real-life situationThis document is copy-protected. Please answer the following questions in a Word document (.doc or .docx) attachment statingyour name, problem number, and answers. You may show work if you choose.You are required to use Equation Editor, if necessary, to write mathematical expressions and equations (such as fractions, squareroots, etc.).Submit the document in your Assignment Section by Week 8, Day 7 (Sunday) A Great InvestmentFor most people, buying a house is a great investment that can offer security in an uncertain world, but buying a house is also acommitment. Suppose you are in the market for a new home and are interested in a new housing community under construction ina different city.1.2.3.4.5.6. The sales representative informs you that there are two floor plans still available, and that there are a total of 65 housesavailable. Use x to represent floor plan #1 and y to represent floor plan #2. Write an equation that illustrates the situation.The sales representative later indicates that there are 4 times as many homes available with the second floor plan than the first.Using the same variables you used in question #1, write an equation that illustrates this situation..Use the equations from questions #1 and #2 of this exercise as a system of equations. Use substitution to determine how manyof each type of floor plan is available.What are the intercept(s) of the equation in question #1 of this problem?What are the intercept(s) in question #2 of this problem?Where would the two lines intersect if you solved the system by graphing? As you are leaving the community, you notice another new community just down the street. Because you are in the area, you decideto inquire about it.7.8. 9. The sales representative here tells you they also have two floor plans available, but they only have 40 homes available. Write anequation that illustrates the situation. Use m to denote floor plan #1 and n to denote floor plan #2.The representative tells you that floor plan #1 sells for $175,000 and floor plan #2 sells for $200,000. She also mentions that allthe available houses combined are worth $7,625,000. Write an equation that illustrates this situation. Use the same variablesyou used in question #7.Use elimination to determine how many houses with each floor plan are available. You recently started the paperwork to purchase your new home, and you were just notified that you can move in to the house in 2weeks. You decide to hire a moving company, but are unsure which company to choose. You search online and are interested incontacting two companies, Heavy Lifters and Quick Move, to discuss their rates. Heavy Lifting charges $60 per hour with noadditional fees. Quick Move charges a $75 fee plus $35 per hour.10. Which mover provides a better deal for 2 hours of work?11. Which mover provides a better deal for 15 hours of work?12. For what value of h (hours), does Quick Move and Heavy Lifting offer the same (equal) deal? MAT/116 – Week 8 Real World Rev: 8/2010 (Hoyer)
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"

Mat 114 Quantitative Reasoning Spring 2017 Project Two The Objective Of This Pro
/in Uncategorized /by developerI just need the anwsers to this:) It is a pretty hard project
- Attachment 1
- Attachment 2
EAGLESA study was conducted on Admiralty Island in southeast Alaska using time-lapse photography todocument Bald Eagle incubation, brooding (sitting on eggs to hatch them), prey deliveries and…
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"

Mastery Objectives Develop One Mastery Concept And 5 Mastery Objectives For Your
/in Uncategorized /by developerMastery Objectives
- Develop one mastery concept and 5 mastery objectives for your grade and subject.
- Map these objectives to the corresponding state objective and/or CCSS.
- Respond to at least one of your classmates.
- Describe at least 2 types of assessments that could be used to test one or more mastery objectives.
- Only one assessment can be a formal test.
- Peer Response
Mastery Objectives
Third Grade ELA Mastery concept: Students will identify the main idea and concept presented in text, identify and assess evidence that support the ideas.Students will learn the definition of the main idea. Students will be able to identify the main idea and supporting details of a fiction or non-fiction passage. Use strategies to practice finding a main idea independently. Identify the main idea and concept presented in text, identify and assess evidence that support the ideas.
Five Mastery Objectives
- Define the main idea.
- Explain the main idea of an informative text.
- Define the main character of the text.
- Explain the plot of the story.
- Lit strategies used to find the main idea of a story.
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"

Masters Prepared Nurse Interview Interview A Nurse Who Is Master S Prepared In N
/in Uncategorized /by developerMASTERS PREPARED NURSE INTERVIEW.
Interview a nurse who is master’s-prepared in nursing and is using this education in a present position. Select someone who is in a leadership role. The purpose of the interview is to gain insight into the interplay among education, career path, and opportunities. Be certain to identify specific competencies that the MSN-prepared nurse gained, and is presently using, that reflect advanced education. Organize your interview around the topics below:
Ø Overview of the master’s-prepared nurse’s career
Ø Reason for seeking graduate education
Ø Description of present position and role
Ø Usefulness of graduate education for present role
Ø Pearls of wisdom he/she is willing to share
In 1,000 words, write the interview in a narrative format. Use the following guidelines:
– Within the paper’s introduction, explain your interview selection.
– Do not identify the individual by name.
– Use centered headings to separate parts of the interview.
– In the conclusion, identify one or more competencies from the interview that are consistent AACN education essentials.
– In addition, provide a statement that reflects what you gained from the interview.
STRICT APA FORMAT PLEASE WITH IN TEXT CITATION AND REFERENCES.
PLEASE USE THE INTERVIEW GUIDE IS BELOW IN ITALICS:
Master’s Prepared Nurse Interview Guide
Introduction
In this section, provide the general purpose of the paper. State the reasons for selecting this individual as an interviewee. Do not use the actual name of individual.
Overview of Career
In this section, describe the interviewee’s career. Start with their pre-licensure education. It is appropriate to include geographical location, type of institutions(s), and type of position(s) held. In addition, include interesting facts, examples of practice, etc. Place information regarding their graduate program in the Graduate Education section. If the interviewee shared interesting and relevant personal information, this can be included as well.
Graduate Education
In this section, provide information about the graduate program: institution and type of program. Start by providing the reason why the interviewee chose to attend graduate school. Describe additional information that the interviewee may have shared about the graduate program.
Present Position
In this section, describe the interviewee’s present position. Identify specific competencies that the interviewee described as important to this position that were gained from the graduate program. Include other interesting information that the interviewee provided regarding the present position. Mention certification(s) if appropriate to present position.
Pearls of Wisdom
In this section, share special information about the interviewee, including lessons learned and any suggestions/advice the interviewee gave for individuals starting a graduate program.
Conclusion
In this section, summarize what was gained from the interview: what was learned about the effects of graduate education in regards to change in knowledge, skills, and attitudes; and perhaps how this fits with the program outcomes for a specialty. Describe what else may have been learned from the interview. End the conclusion with general comments about the selection of an interviewee and whether the interview developed a clearer idea as to what to expect from graduate education.
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"

Masters Level Forumeconomic Policy Is A Complex But Vital Part Of The United Sta
/in Uncategorized /by developerMasters level forum
Economic policy is a complex but vital part of the United States. To start this forum, take a look at CNBCs explanation of who the Federal Reserve is and what they do.
Now, look through online sources to locate a specific economic policy in effect that you find interesting. It could relate to taxation, user fees, mortgage rates, minimum wage, or anything tied to US economic interest.
Then analyze it using the policy framework we have been discussing. Consider effectiveness, efficiency, ethics, equity, political feasibility, social/cultural feasibility, etc.
Be sure that you provide some background on the issue at the start of your post and include links to current event articles that help to explain the issue.
500 word minimum
3 citations
Lessons attached
Due thurs 2/7/209
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"

About Us
Academhelper.com is a pioneering academic writing service with a customer base comprising of thousands of students. We have hundreds of expert writers aboard working in collaboration with a diligent quality assurance team.
Contact Info
Email: [email protected] Phone: +1 (929) 416 5389 or +1 985-412-8942