Questions
Information about a pickling company is given below. (Pickling: A plot to be built is the...

Information about a pickling company is given below. (Pickling: A plot to be built is the name given to the stripping of vegetative or soft soil on a land to be filled, and the soil on the ore in open mining enterprises.)

Variable Expenses Electricity Expenses: 100 TL/m3 Diesel and Oil Expenses: 500 TL/m3 Tire and Spare Parts Expenses: 400 TL/m3 Explosive Expenses: 300 TL/m3 Other Variable Expenses: 200 TL/m3 Fixed costs Depreciation, insurance and interest expenses: 1.5 billion TL/year Compulsory labour and personnel expenses: 0.5 billion TL/year Other Fixed Expenses: 0.5 billion TL/year Revenue: 5000 TL/m3 Production Capacity is 2000000 m3 /year a) Find the breakeven point as the production amount? b) Find the amount of pickling that the company needs to make in order to make a profit of 3 billion TL/year.

In: Finance

A shopping center project is proposed to the city council. It cannot be built unless a...

A shopping center project is proposed to the city council. It cannot be built unless a zoning change is approved by the council. The planning board must first make a recommendation, for or against the zoning change, to the council.
Let A1 = city council approves the zoning change A2 = city council disapproves the change

The prior is: Pr(A1) = .7,   Pr(A2) = .3

Let B denote the event of a negative recommendation by the planning board.

Past history with the planning board and the city council indicates the following

Pr(B|A1) = .2, Pr(B|A2) = .9

3. ____ The planning board has recommended against the zoning change. What is the posterior probability that the city council will approve the zoning change? a) 0.2 b) 0.22 c) 0.3 d) 0.34 e) 0.43


4. ____ You own a local store in the downtown of the city. If the shopping center project is not allowed, your revenue will be $3,000. If allowed, your revenue will be $1,000. The cost of operation is $2,000. Then, you will choose to ______ because your expected profit (or loss if you choose to exit) is ____.

a) Stay, $140 b) Stay, $320 c) Stay, $400 d) Exit, $140 e) Exit, $320

In: Statistics and Probability

Suppose the average size of a new house built in a certain county in 2014 was...

Suppose the average size of a new house built in a certain county in 2014 was 2,273 square feet. A random sample of 25 new homes built in this county was selected in 2018. The average square footage was 2,194​, with a sample standard deviation of 226 square feet. Complete parts a and b.

a. Using α =0.02​, does this sample provide enough evidence to conclude that the average house size of a new home in the county has changed since​ 2014?

Determine the null and alternative hypotheses.

H0​:μ ▼ greater than or equals ≥ not equals ≠ less than or equals ≤ equals =

H1​:μ ▼ less than < greater than > equals = not equals ≠ ​(Type integers or decimals. Do not​ round.)

Determine the appropriate critical value. Select the correct choice below and fill in the answer box within your choice. ​(Round to three decimal places as​ needed.)

A. tα/2 equals =

B. tα equals =

C. −tα equals =

Calculate the appropriate test statistic.

t-x= ​(Round to two decimal places as​ needed.)

State the conclusion. ▼

Reject/Do not reject H0.

There ▼ is/is not sufficient evidence to conclude that the average house size of a new home in the county has ▼ increased/stayed the same/changed/decreased since 2014.

b. Determine the precise​ p-value for this test using Excel.

The​ p-value is . ​(Round to three decimal places as​ needed.)

In: Statistics and Probability

A fund is built with annual deposits increasing by 1 from 1 to 10 and then...

A fund is built with annual deposits increasing by 1 from 1 to 10 and then decreasing

by 1 to $0 at an annual effective interest rate of 6%. At the end of 29 yrs, the fund is

used to purchase a 9 yr annuity with level payment $Y at an annual effective interest

rate of 4% with first payment 30 yrs from today. Calculate Y.

In: Finance

paste a picture of the model of lungs you built at home or took from the...

paste a picture of the model of lungs you built at home or took from the internet and label what equivalent part of the respiratory system each of the parts of your model represents. Then briefly describe how your model can be used to explain ventilation referring to the volume and pressure changes required and mimicked in your model. State the gas law(s) that apply to ventilation. If you did not build your own model – insert a picture from either a website that explains how to build the lung model (reference the web site!), or use the picture provided in prac manual 3 to label the components of the model.

In: Anatomy and Physiology

Question Objective: The purpose of this lab is for you to become familiar with Python’s built-in...

Question

Objective:

The purpose of this lab is for you to become familiar with Python’s built-in text container -- class str -- and lists containing multiple strings. One of the advantages of the str class is that, to the programmer, strings in your code may be treated in a manner that is similar to how numbers are treated. Just like ints, floats, a string object (i.e., variable) may be initialized with a literal value or the contents of another string object. String objects may also be added together (concatenation) and multiplied by an integer (replication). Strings may also be compared for “equality” and arranged into some order (e.g., alphabetical order, ordering by number of characters, etc.). Finally, strings may be placed in containers which can then be passed as arguments to functions for more complex manipulations.

Specifications:

Write an interactive Python program composed of several functions that manipulate strings in different ways. Your main() function prompts the user for a series of strings which are placed into a list container. The user should be able to input as many strings as they choose (i.e., a sentinel-controlled loop). Your main function will then pass this list of strings to a variety of functions for manipulation (see below).

The main logic of your program must be included within a loop that repeats until the user decides he/she does not want to continue processing lists of strings. The pseudo code for the body of your main() function might be something like this:

# Create the main function

def main():

# declare any necessary variable(s)

# // Loop: while the user wants to continue processing more lists of words

#

# // Loop: while the user want to enter more words (minimum of 8)

# // Prompt for, input and store a word (string) into a list # // Pass the list of words to following functions, and perform the manipulations

# // to produce and return a new, modified, copy of the list.

# // NOTE: None of the following functions can change the list parameter it

# // receives – the manipulated items must be returned as a new list.

#

# // SortByIncreasingLength(…)

# // SortByDecreasingLength(…)

# // SortByTheMostVowels(…)

# // SortByTheLeastVowels(…)

# // CapitalizeEveryOtherCharacter(…)

# // ReverseWordOrdering(…)

# // FoldWordsOnMiddleOfList(…)

# // Display the contents of the modified lists of words

#

# // Ask if the user wants to process another list of words

Deliverable(s):

Your deliverable should be a Word document with screenshots showing the sample code you have created, and discuss the issues that you had for this project related to AWS and/or Python IDE and how you solved them.

Submit the program you develop including captured output. Also turn in screen captures from running your program inputting, as a minimum, three (3) sets word lists (no fewer than 8 words per list).

In: Computer Science

You are shipwrecked on a tropical island and you built yourself a hut at the edge...

You are shipwrecked on a tropical island and you built yourself a hut at the edge of the beach. At high tide the waterline is 10feet from your hut. At low tide the waterline is 30 feet from your hut. The time between high tides is 12 hours. Find the trigonometric equation that gives the distance the waterline is from your hut as function of of time in hours. Assume time zero is at high tide.

In: Advanced Math

i need a research for one of the first built tombs in the world. The selected...

i need a research for one of the first built tombs in the world. The selected tomb should have a superstructure. Specifically, focus on the, Evidential, Historical, Aesthetic and Communal Values of the tombs. In other words, determine the specific futures of a tomb in relation to their evidential, historical, aesthetic, and communal values

also Architect, architectural features, construction year and duration, construction materials, construction type, structural features, construction purpose and the features that make it different and significant and the importance of the construction for the society should be included and explained under the headings of Evidential, Historical, Aesthetic and Communal Values in the report. You should illustrate your explanations with photographs which should be referred in your report

a maximum 350-words long

Wikipedia or similar untrustworthy web sources are not allowed to be used as reference.

You need to submit the reference files to me as well (preferably as a PDF) and give names to the reference files with the name of the study described in the reference file

In: Civil Engineering

A road is built with a vertical transition curve. The PVC is at 111+05 and elevation...

A road is built with a vertical transition curve. The PVC is at 111+05 and elevation of 322. The PVI is at 111+85 and elevation of 320. Low point of curve is at 111+65.

Find starting grade? Ending grade? Design speed of curve? Elevation of low point on curve?

In: Civil Engineering

Cryptocurrency, such as Bitcoin and Ethereum, is now a household name built on Blockchain Technology. This...

Cryptocurrency, such as Bitcoin and Ethereum, is now a household name built on Blockchain Technology. This technology has potential application in some sectors of our economy such as insurance, healthcare, supply chain, real estate and even in the voting system. Consider the following statement and then argue for or against it.

“Use of Blockchain technology will change our economic system as we know it today.”

In: Economics