Questions
transpo: Please show step by step and the diagram too. An approach to a signalized intersection...

transpo: Please show step by step and the diagram too. An approach to a signalized intersection has a saturation flow rate of 1800 veh/h. At the beginning of an effective red, there are 6 vehicles in queue and vehicles arrive at 900 veh/h. The signal has a 60-second cycle with 25 seconds of effective red. What is the total vehicle delay after one cycle? What is the maximum length of queuing within this cycle? (assumeD/D/1 queuing)

In: Civil Engineering

What can cause a phenol red indicator of carbohydrate fermentation to give a false positive with...

What can cause a phenol red indicator of carbohydrate fermentation to give a false positive with gas?

I heavily incubated my organism in the test tube and it is producing a huge gas bubble in the Durham tube and a clear yellow (acid) color. I incubated my tube at my organism's optimism growth conditions (oxygen and temperature wise) for 48 hrs exactly.. i was supposed to get a red no gas result ( -) what might have gone wrong?

In: Biology

For a certain​ candy, 15​% of the pieces are​ yellow, 10​% are​ red, 15​% are​ blue,...

For a certain​ candy, 15​% of the pieces are​ yellow, 10​% are​ red, 15​% are​ blue, 20​% are​ green, and the rest are brown. ​a) If you pick a piece at​ random, what is the probability that it

is​ brown?

it is yellow or​ blue?

it is not​ green?

it is​ striped?

​b) Assume you have an infinite supply of these candy pieces from which to draw. If you pick three pieces in a​ row, what is the probability that they

are all​ brown?

the third one is the first one that is​ red?

none are​ yellow?

at least one is​ green?

In: Statistics and Probability

I am testing the effects of a new drug, and find that liver cells treated with...

I am testing the effects of a new drug, and find that liver cells treated with this drug show the following effects:

-Reduced levels of AcCoA in the mitochondria

-Increased rates of gluconeogenesis

-Increased production of lactate

The drug, however, has no effect on Red Blood Cells (RBCs).

Why does the drug not have an effect on Red Blood Cells? What is the drug inhibiting/assisting? What other conclusions can be made with this information? (Open ended question, there are no wrong answers!)

In: Biology

A left turn lane is to be designed at a signalized intersection to accommodate leftturning vehicles...

A left turn lane is to be designed at a signalized intersection to accommodate leftturning
vehicles during the peak period of traffic. If the design peak hour volume for the left
turn movement is 150 vehicles per hour and the red time interval per signal cycle for the left turn
movement is 60 seconds.


a) Compute the average number of left turn vehicle arrivals per red interval of each signal
cycle during the design peak hour.


b) Assume that left turn vehicles arrive the intersection in a random fashion (i.e., following
Poisson distribution). Compute and plot the probability mass function (PMF) for the
number of left turn vehicles arriving during the red interval (use of Excel spreadsheets is
preferred).


c) If the design of the left-turn lane requires accommodating (or storing) the left-turn queue
95% of time during the peak hour, recommend the minimum left-turn lane length in feet
(assuming 25 feet per vehicle, including space between vehicles).

In: Statistics and Probability

An example for numerical to categorical data off the top of my head: Light of different color has different wavelengths

An example for numerical to categorical data off the top of my head: Light of different color has different wavelengths, but certain ranges of wavelengths qualify as certain shades/hues/tints/etc. You can generalize and say a certain range can be called "blue" or "red". Red is usually attributed to light that has a wavelength between 780 and 622 nanometers, whereas blue light is between 492 and 455 nm. To the average person, "red" and "blue" obviously mean more than a given wavelength of light, so a categorical/qualitative description might be of more use in such a context. Another example would be grading scales. Certain ranges of scores will qualify as an A, a B, and so on. Suppose you want to examine the grades of high school students admitted into a prestigious university. Students that fall in the A/B range tend to have a better chance of being admitted, while those at the other end of the spectrum are "significantly" less likely to enroll. ("Significant" here can take on the statistical meaning of the word.

In: Statistics and Probability

1)Consider a particle that is in the second excited state of the Harmonic oscillator. (Note: for...

1)Consider a particle that is in the second excited state of the Harmonic oscillator. (Note: for this question and the following, you should rely heavily on the raising and lowering operators. Do not do integrals.)

(a) What is the expectation value of position for this particle?

(b) What is the expectation value of momentum for this particle?

(c) What is ∆x for this particle?

2) Consider a harmonic oscillator potential.

(a) If the particle is in the state |ψ1> = √ 1/ 2 (|0> + |1>), what is <x>? <x^ 2>?

(b) If the particle is in the state |ψ2> = √ 1 /2 (|0> + |2>), what is <x>? <x ^2 >?

(c) If the particle is in the state |ψ2> = √ 1/ 3 (|0> + |2> + |3>), do you expect <x> to be zero or non-zero? What about <x^ 2 >? Why?

(d) Describe a general rule of thumb to help you quickly determine which (if any) calculations for <x>, <x^2>  will reduce to zero. Does this rule also work for <p> and <p^ 2 >?

In: Physics

Reflect on what kind of leader would be best for your chosen business: Autocratic, democratic or...

Reflect on what kind of leader would be best for your chosen business: Autocratic, democratic or free-rein? Explain why, and think about how the leadership style you picked would fit with the kinds of employees you would have, and the industry in which they work. Finally, explain whether you are that kind of leader, and why you think so, or don't think so.

In: Finance

Using MYSQL in terminal, create the tables for your above designed relational schema and populate your...

Using MYSQL in terminal, create the tables for your above designed relational schema and populate your tables with appropriate data. All except time slot and the relationship it participates in. Use the names for the tables and attributes from the ER schema. Use ON DELETE CASCADE for foreign keys.

Each basic table (corresponding to an entity in the ER schema developed for Part 1) should have 5-10 rows. Campus can have just 2. Building should have at least 6. At least 1 building name (Laurel) should be in both campuses.

The remaining tables should have at least 10 rows. Make sure that your tables are in compliance with the participation constraints.

Show the following:

·create table commands that you used

·any commands that you used to insert or load into the tables (in the order in which they were performed- order matters!)

·content of you table as a result as a select * from (each table)

-----------------------

Here is the schema:

building(pk(building_name), num_floors, num_classrooms)
campus(pk(campus_name), state_name, school_name)
classroom(pk(room_number), capacity)
course(pk(course_id), title, credits)
instructor(pk(iid), salary, inst_name)
department(pk(dept_name), budget)
student(pk(sid), stud_name, tot_cred)
time_slot(pk(time_slot_id), {day, start_time, end_time})
section(pk(section_id), pk(semester), pk(year))

has(pk(dept_name, building_name), fk(dept_name) ref department(dept_name), fk(building_name) ref building(building_name))
course_dept(pk(dept_name, course_id), fk(dept_name) ref department(dept_name), fk(course_id) ref course(course_id))
inst_dept(pk(dept_name, iid), fk(dept_name) ref department(dept_name), fk(iid) ref instructor(iid))
mentors(pk(iid, sid), fk(iid) ref instructor(iid), fk(sid) ref student(sid))
stud_dept(pk(dept_name, sid), fk(dept_name) ref department(dept_name), fk(sid) ref student(sid))
takes(pk(sid, section_id), grade, fk(sid) ref student(sid), fk(section_id) ref section(section_id))
sec_time_slot(pk(time_slot_id), pk(section_id, semester, year), fk(time_slot_id) ref time_slot(time_slot_id), fk(section_id, semester, year) ref section(section_id, semester, year))
sec_class(pk(section_id, room_number), fk(section_id) ref section, fk(room_number) ref classroom(room_number))
teaches(pk(iid), pk(section_id, semester, year), fk(iid) ref instructor(iid), fk(section_id, semester, year) ref (section(section_id, semester, year)))
prereq(pk(course_id), fk(course_id) ref course)

In: Computer Science

Open the terminal and using vi/vim create a new script and name it lab6 Insert at...

  • Open the terminal and using vi/vim create a new script and name it lab6
  • Insert at the top of your file a comment with your name, class and section number (e.g. #John Doe, EMT 2390L - OL123).
  • In this lab you are going to display a multiplication table of a number entered by the user between 2 and 10 using a for loop and without using multiplication. The table will display the values that are less than or equal to 100.
  • Ask the user what multiplication table to display and save that value in a variable named table.
  • Validate the value of the variable table so that it is a number between 2 and 10 inclusive.
  • Using a for loop, display the values of the multiplication table of the number entered by the user in the variable table, going up to 100.
  • Save the script and make it executable (HINT: use the chmod command with mode 755).
  • Execute the script (HINT: use dot slash ./ combination, followed by your script name) and fix any errors.
  • Submit here on Blackboard your script file. DO NOT submit screen shots, ZIP files, or any other kind of file. Submission is on Blackboard ONLY. DO NOT send emails or messages, use the Blackboard link to the lab in order to submit.
  • Deadline: 10/28 at 11:59PM

In: Computer Science