Ace - AI Tutor
Ask Our Educators
Textbooks
My Library
Flashcards
Scribe - AI Notes
Notes & Exams
Download App
johnny farmer

johnny f.

Divider

Questions asked

BEST MATCH

What did Lewin mean by "action research"? a) Conducting experiments in real-world settings b) Studying the effects of media on behavior c) Analyzing case studies of individual behavior d) Observing naturalistic behavior in social settings

View Answer
divider
BEST MATCH

How much principal would you need to invest to earn $1,000 in simple interest. The bank has a special savings account that pays 12% simple interest for a 48-month term.

View Answer
divider
BEST MATCH

QUESTION THREE (a) Use the big-M simplex method to Maximize $Z = x_1 + 2x_2 + 3x_3$ Subject to $x_1 + x_2 + x_3 \le 4$ $x_1 + x_2 + 2x_3 \le 8$ $x_1 - x_2 \ge 2$ $x_1, x_2, x_3 \ge 0$ (b) The research department of Unilever Ltd has recommended to the marketing department to launch a shampoo of three different types. The marketing manager has to decide one of the types of shampoo to be launched under the following estimated pay offs for various levels of sales: \begin{tabular}{|l|c|c|c|} \hline & \multicolumn{3}{|c|}{Estimated levels of sales} \\ & 15,000 & 10,000 & 5,000 \\ \hline 1. Egg shampoo & 3000 & 3000 & 1000 \\ 2. Clinic shampoo & 1000 & 3000 & 1000 \\ 3. Deluxe shampoo & -1000 & 250 & 1000 \\ \hline \end{tabular} What will be the marketing manager's decision if i. Maximum criterion is applied? ii. Minimax criterion is applied? iii. Maximax criterion is applied? iv. Laplace criterion is used? v. Hurwicz criterion is used? Use $\alpha = 0.75$

View Answer
divider
BEST MATCH

6. The evaporation of water in the oceans leads to an increase in salt content near the surface. The result is that the water near the surface is a better electrical conductor (positive sodium ions and negative chlorine ions). The presence of the earth's magnetic field and the motion of the water due to ocean current can lead to the flow of sodium and chlorine ions, that is electrical currents. Assume that in a certain region of the ocean an electric current flows horizontally with the nonuniform salt content leading to a current density, $J$, that depends of depth as $J = J_0 e^{-y/h} \hat{z}$ where $y$ is the depth of the water measured from the surface, $J_0 = 5.0 \text{ mA/}m^2$, and $h = 180 \text{ m}$. The geometry is shown below. Calculate the total current that flows through a square 1 km on a side that is oriented parallel to the x-y plane with its top edge at the surface of the ocean.

View Answer
divider
BEST MATCH

6) Show, using formulas to justify your drawings, how the energy difference between subsequent energy levels varies for each of the following cases: a) 1D particle in a box; b) particle on a ring (rotation in 2D); c) Harmonic oscillator, d) Hydrogenic atom

View Answer
divider
BEST MATCH

Although instruments were sometimes used in the Baroque, instrumental music never became popular during this time period. In fact, purely instrumental music (with no lyrics) was almost never performed at all due to the focus on unaccompanied chant. True False

View Answer
divider
BEST MATCH

Let {E1, E2, E3} be a frame field on R3 with dual forms {θ1, θ2, θ3} and connection forms ωij. Prove that two curves α, β: I → R3 are congruent if θi(α') = θi(β') and ωij(α') = ωij(β') for 1 ≤ i, j ≤ 3.

View Answer
divider
BEST MATCH

What is the area? 25 mi 21 mi square miles

View Answer
divider
BEST MATCH

General Hospital has noted that it admits an average of 8 patients per hour. a. What is the probability that during the next hour at least 3 patients will be admitted?

View Answer
divider
BEST MATCH

In C++, the struct Node is defined as follows: struct Node { int data; // information that is saved in the node Node *left_child; // holds the address of a node's left child or 0 if there is no left child Node *right_child; // holds the address of a node's right child or 0 if there is no right child Node(int = 0, Node * = 0, Node * = 0); }; The class BinaryTree is also defined, with a private member variable root_ptr that holds the address of the root node in the binary tree or 0 if the binary tree is empty. Assuming that the following method is being added to the BinaryTree class to display a preorder traversal of a binary tree: void BinaryTree::displayPreOrder(Node *ptr) const { // code for preorder traversal } To recursively display a preorder traversal of a binary tree, the code that should be placed between the { } in the displayPreOrder method is missing. For the displayPreOrder method to execute properly, a public version of the method is needed to start the recursive process. The public version of the displayPreOrder method is defined as follows: void BinaryTree::displayPreOrder() const { // code to call the private displayPreOrder method with the root_ptr as the starting point } The code that should be placed between the { } in the public version of the displayPreOrder method is missing.

View Answer
divider