Questions
Find the original published journal article for the Griffith experiment and the Hershey Chase experiment. Put...

Find the original published journal article for the Griffith experiment and the Hershey Chase experiment.

Put the citations here:

In: Biology

It is a simple discussion please dont copy from any website, Ii need to be at...

It is a simple discussion please dont copy from any website, Ii need to be at least 3 paragraph. thanks

Discussion "The Women's Kingdom"

Please watch "The Women's Kingdom" which is a video about a matrilineal group in China and this video will give you an insight into a very different marriage pattern that most students are familiar with. After you have watched the video, research and post on a marriage pattern of a particular culture that is different from your own culture's or the Mosuo culture and describe that marriage pattern. Include the location (where they live and also the name of the peoples), what type of marriage pattern they practice and all other relevant information on the particular culture as it relates to marriage. THANKS

VIDEO LINK ============>>>>>    https://www.youtube.com/watch?v=bbzG0n3shTM

In: Psychology

Generate one step ahead forecast using simple exponential smoothing(SES), using alfa= 0.80. Calculate RMSE, MAE, and...

Generate one step ahead forecast using simple exponential smoothing(SES), using alfa= 0.80.

Calculate RMSE, MAE, and MAPE.

Please explain how to do this in excel.

Notes:

In the case of SES:

a. uses the actual value of day one (18,085.45) as initial of value (starting value) of the forecast for 9/9/16 and calculate forecasts for day 2 to day 20.

b. In process of calculating RMSE, MAE, and MAPE (after you generate forecast for day 2 to day 20) ignore the first row (day 9/9/16).

day DJIA
9/9/2016 18,085.45
9/12/2016 18,325.07
9/13/2016 18,066.75
9/14/2016 18,034.77
9/15/2016 18,212.48
9/16/2016 18,123.80
9/19/2016 18,120.17
9/20/2016 18,129.96
9/21/2016 18,293.70
9/22/2016 18,392.46
9/23/2016 18,261.45
9/26/2016 18,094.83
9/27/2016 18,228.30
9/28/2016 18,339.24
9/29/2016 18,143.45
9/30/2016 18,308.15
10/3/2016 18,253.85
10/4/2016 18,168.45
10/5/2016 18,281.03
10/6/2016 18,268.50

In: Statistics and Probability

Foreign currency analysis of NVIDIA Corp which is an American technology company which is based in...

Foreign currency analysis of NVIDIA Corp which is an American technology company which is based in Santa Clara, California. Nvidia now operates broadly as a visual computing company and serves its customers in two primary segments: GPU (graphics processing units) and Tegra processors Explain the business activities and environment of NVIDIA Corp from the perspective of foreign currency and identify three currencies that NVIDIA Corp is exposed against. This can be due to its business structure (i.g. location of factories, customers and suppliers, and the currency that the products/services are quoted), and arising from the competition against its rivals. State the rationales of your selection and references.

In: Finance

We’ve seen that Hume claims that words are used quite frequently that have no "definite idea"...

We’ve seen that Hume claims that words are used quite frequently that have no "definite idea" attached to them. One way for this to happen is for people to have no clear idea of what they are talking about when they use these words. In your view, to what extent is this true of words like 'God,' 'soul' and 'heaven'? Combined with the apparent fact that there are no sense impressions of these things, does this mean, as Hume suggests, that they have the same metaphysical status as Santa Claus, and the Easter Bunny—fictitious entities that only some gullible kids believe in? And, hence, that we shouldn't bother to have philosophical conversations involving these words? minimum 150 words

In: Psychology

The compressability factor for the Van der Waal equation of state is Z=(PV/RT)=(V)/(V-b)-(a/RTV). As molar volume...

The compressability factor for the Van der Waal equation of state is Z=(PV/RT)=(V)/(V-b)-(a/RTV). As molar volume becomes large compared to b what happens to V/(V-b)? (What is the limiting value for the fraction V/(V-b) as molar volume gets very large?) What is the limiting value of - a/(RTV) as molar volumes get very large? What is the limiting value for the compressibility factor Z as molar volume increases? Molar volumes increase as pressure _________ .

In: Chemistry

ii. Let G = (V, E) be a tree. Prove G has |V | − 1...

ii. Let G = (V, E) be a tree. Prove G has |V | − 1 edges using strong induction. Hint: In the inductive step, choose an edge (u, v) and partition the set vertices into two subtrees, those that are reachable from u without traversing (u, v) and those that are reachable from v without traversing (u, v). You will have to reason why these subtrees are distinct subgraphs of G.

iii. What is the total degree of a tree?

In: Advanced Math

Java Language Add a recursive method to the program shown in the previous section that allows...

Java Language

Add a recursive method to the program shown in the previous section that allows
insert a value at the end of the stack.

Code:

class Stack {

protected Node top;

Stack() {

top = null; }

boolean isEmpty() {

return( top == null); }

void push(int v) {

Node tempPointer;

tempPointer = new Node(v);

tempPointer.nextNode = top;

top = tempPointer; }

int pop() {

int tempValue;

tempValue = top.value;

top = top.nextNode;

return tempValue; }

void printStack() {

Node aPointer = top;

String tempString = "";

while (aPointer != null) {

tempString = tempString + aPointer.value + "\n";

aPointer = aPointer.nextNode; }

System.out.println(tempString); }

boolean hasValue(int v) {

if (top.value == v) {

return true; }

else {

return hasValueSubList(top,v);

}

}

boolean hasValueSubList(Node ptr, int v) {

if (ptr.nextNode == null) {

return false; }

else if (ptr.nextNode.value == v) {

return true; }

else {

return hasValueSubList(ptr.nextNode,v);

}

}

}

class Node {

int value;

Node nextNode;

Node(int v, Node n) {

value = v;

nextNode = n;

}

Node (int v) {

this(v,null);

}

}

public class StackWithLinkedList2{

public static void main(String[] args){

int popValue;

Stack myStack = new Stack();

myStack.push(5);

myStack.push(7);

myStack.push(9);

System.out.println(myStack.hasValue(11));

}

}

System.out.println(myStack.hasValue(11)); } }

In: Computer Science

for u=<2,1,-3> and v=<1,0,2>, a) find the angle between u and v b) use the formula...

for u=<2,1,-3> and v=<1,0,2>,

a) find the angle between u and v

b) use the formula proj_a b=((a•b)/|b|^2)b to find vector projection of v onto u

c) sketch vectors u, v, and the projection found with only using arrows

d) find the area of the parallelogram determined by u and v

In: Math

A group of students, performing the same Uniformly Accelerated Motion experiment that you did in lab,...

A group of students, performing the same Uniformly Accelerated Motion experiment that you did in lab, dropped a picket fence through a photogate and obtained the following data from the computer.

Blocking Times (s)
0.05206
0.08969
0.12076
0.14763
0.17203
0.19438
0.21502

The band spacing is 0.06 m.

(a) Use Excel to do the following. (You will not submit this spreadsheet. However, the results will be needed later in this problem.)

(i) Calculate the accelerations.

(ii) Calculate the average of the accelerations.

(iii) Create a graph of velocity versus time.

(iv) Use the trendline option to determine the slope.

(v) Report your results below.


(b) What is the average acceleration? (Give your answer to four significant digits.)
aavg =

(c) What is the average acceleration aaverage as determined from the slope? (Give your answer to four significant digits.)
aavg =

(d) What is the percent difference between the values of the acceleration you obtained in (b) and (c) above?
%

I am struggling as to why I keep getting the wrong answer.

In: Physics