6a. Let V be a finite dimensional space, and let Land T be two linear maps on V. Show that LT and TL have the same eigenvalues.
6b. Show that the result from part A is not necessarily true if V is infinite dimensional.
In: Advanced Math
Suppose you were designing two experiments to measure the same quantity “Y”. Through analysis of both experimental systems, found; Experiment 1, Y depends on a X2 , and for Experiment 2, Y depends on Z4. Here, “X” and “Z” are names of variables that you can measure in the lab. If you have the same amount of resources to perform and equal number of measurements, which experiment should you perform (there is a correct answer here!). Explain your rationale
In: Physics
There are 7 balls in a bag. They are identical except for color. 3 are red, 2 are white and 2 are blue. You are to draw 1 ball from the bag, note its color, and set it aside. Then you are to draw a second ball from the bag and note its color.
a. Make a tree diagram to show all possible outcomes of the experiment. Label the probability associated with each stage of the experiment on the appropriate branch.
b. Compute the probability for each outcome of the experiment.
In: Statistics and Probability
A professor believes that students who have the opportunity to write their essays on word processors will produce better essays than those who write them by hand. Design an experiment that tests this idea.
1. Do you need to define any terms for your experiment (operationally define)? If so, define them here.
2. What purpose would this line of research serve (and which subgroup do you think this experiment would most closely relate with)?
In: Psychology
Plant asset accounting: During 2016 and 2017, ABC Corporation experienced several transactions involving plant assets. A number of errors were made in recording some of these transactions. For each item listed on the attached file, indicate the effect of the error (if any) using the following codes: O = Overstate; U = Understate; NE = No Effect *
*If no error was made, write NE in each of the four columns.
|
Transaction |
Net Book Value of Plant Assets at 12/31/16 |
2016 Net Income |
Net Book Value of Plant Assets at 12/31/17 |
2017 Net Income |
|
The cost of installing a new computer system in 2016 was not recorded in 2016. It was charged to expense in 2017. |
||||
|
In 2017 clerical workers were trained to use the new computer system at a cost of P15,000, which was erroneously capital-ized. The cost is to be written off over the expected life of the new computer system. |
||||
|
A major overhaul of factory machinery in 2016, which extended its useful life by 5 years, was charged to accumulated depreciation in 2016. |
||||
|
Interest cost qualifying for capitalization in 2016 was charged to interest expense in 2016. |
||||
|
In 2016 land was bought for an employee parking lot. The P2,000 title search fee was charged to expense in 2016. |
||||
|
The cost of moving several manufacturing facilities from metropolitan locations to suburban areas in 2016 was capitalized. The cost was written off over a 10-year period beginning in 2016. |
Interest cost qualifying for capitalization in 2016 was charged to interest expense in 2016.
In: Accounting
For H2O, determine the specified property at the
indicated state.
(a) T = 140°C, v = 0.5 m3/kg. Find
p, in bar.
(b) p = 30 MPa, T = 120°C. Find v, in
m3/kg.
(c) p = 10 MPa, T = 450°C. Find v, in
m3/kg.
(d) T = 80°C, x = 0.8. Find p, in bar,
and v, in m3/kg.
In: Mechanical Engineering
1. The following data were collected in a kinetics experiment for the disproportionation of A2 in a buffered solution: 3 A2 -> products
The "generic" rate law for the reaction is rate = k[A2]p
| [A2]0 | Time for color change | Rate (min-1) |
| 0.10 | 7.50 minutes | |
| 0.20 | 2.00 minutes | |
| 0.30 | 1.30 minutes | |
| 0.40 | 0.90 minutes | |
| 0.50 | 0.50 minutes |
Plot the data according to the method described in this experiment to determine p, the order of the reaction with respect to A2. (Hint: The reaction order is not a whole number. Round the order to 2 significant figures.) ****I think the initial concentration of A2 must be calculated from the data given?? I am not sure how to proceed. This is all the information I have. *****
5. How is the order of the reaction with respect to H2O2 determined in the experiment
a. chemically?
b. graphically?
6. Explain how the rate constant, k', is determined for the rate law in the experiment.
7. Explain how the activation energy, Ea, is determined for the reaction in the experiment.
In: Chemistry
Create a program named DiceGame.Java (in Java lagnuage of course)
The problem/background info: Suppose someone comes to you and says “I have a 6-sided Die and different one that has 4 sides. Both are fair dice. I would like to propose a game. We will roll both dice and I will give you $3.00 if the total is less than 5 and $8.00 if the total is exactly equal to 5. But if the total is greater than 5, you give me $2.00.” Should you do it? Should you do it if the second die had 6 sides?
Your program will simulate this: You
are given a class called Die, which has a default constructor
(makes it 6-sided) and has a parameterized constructor that accepts
a number of sides (minimum 4 sides or else it will throw an
exception). It also has a method called roll() which
rolls itself and returns the (int) result; it also has a method
called getNumSides() which returns the (int) number of sides it
has. You will write a program called DiceGame.java that
simulates running the game over and over by doing the
following:
Notes:
NumberFormat money = NumberFormat.getCurrencyInstance();
( you will have to import java.text.NumberFormat; )
Then use your instance whenever you print your_calculation, like this
System.out.println(money.format(your_calculation));
When formatted, negative money will be in parentheses rather than having a minus sign.
// This class will simulate a Die (half a pair of dice)
public class Die
{
//------- data
private int numSides;
private java.util.Random rGen;
//------- constructors
public Die()
{
this(6); //call parameterized constructor, as if 6 were passed in
}
public Die(int theSides)
{
if (theSides < 4)
throw new IllegalArgumentException("A Die cannot have less than 4
sides");
numSides = theSides;
rGen = new java.util.Random(numSides);
}
//------- methods
//getNumSides - returns the number of sides
public int getNumSides()
{
return numSides;
}
//roll - returns a random number from 1-numSides. The seed for the
random number generator should be the numSides
// (so everyone's results are the same...)
public int roll()
{
return rGen.nextInt(numSides) + 1;
}
}
Example1:
How many sides should the second die have?
4
How many times should we roll the dice?
87654
How often should we print results?
10000
What is your name?
Stephanie
Experiment by: Steph
Rolls: 10000 Average winning per roll: $0.90
Rolls: 20000 Average winning per roll: $0.91
Rolls: 30000 Average winning per roll: $0.92
Rolls: 40000 Average winning per roll: $0.91
Rolls: 50000 Average winning per roll: $0.92
Rolls: 60000 Average winning per roll: $0.91
Rolls: 70000 Average winning per roll: $0.91
Rolls: 80000 Average winning per roll: $0.91
Rolls: 87654 Average winning per roll: $0.91
Example2:
How many sides should the second die have?
6
How many times should we roll the dice?
400
How often should we print results?
100
What is your name?
Joe
Experiment by: Joe
Rolls: 100 Average winning per roll: ($0.45)
Rolls: 200 Average winning per roll: ($0.30)
Rolls: 300 Average winning per roll: ($0.37)
Rolls: 400 Average winning per roll: ($0.33)
Rolls: 400 Average winning per roll: ($0.33)
In: Computer Science
19. a. For the titration of 50.00 mL of 0.0500 M Fe2+ with 0.1000 M Ce4+ in the presence of 1 M H2SO4, please calculate the system potential after 2.25 mL of Ce4+ is added .
Ce4+ + e ÍÎ Ce3+, E0 = + 1.44 V (in 1M H2SO4)
Fe3+ + e ÍÎ Fe2+, E0 = + 0.68 V (in 1M H2SO4).
They got Esystem = 0.62 V.
b) For the same titration as in question (a), what’s the system potential after 32.00 mL of Ce4+ is added?
Answer: Esystem = 1.41 V
c) If we set up an electrochemical cell where the cathode is the system that we have in question (b), whereas the anode is a saturated calomel electrode (0.2444 V relative to standard hydrogen electrode). Please determine the potential of this electrochemical cell.
Answer: Ecell = 1.16 V
d) Please determine the system potential at the equivalence point for the titration described in question (a).
Answer: Esystem = 1.06 V
I listed all the answers. I just want to see how they got that. Thanks.
In: Chemistry
Determine if ~w = (−4, 6, 1) is a linear combination
of ~u = (1, 0, −1) and
~v = (1, −11, 3) . If so, then express ~w as a linear combination
of ~u and ~v .
Let ~u = (1, 1, −1) and ~v = (2, 1, 3). Determine if
~w = (7, 6, 3) is a linear
combination of ~u and ~v. If so, express ~w as a linear combination
of ~u and ~v.
Let
~x1 = (2, −1, 3, 1), ~x2 = (1, 0, −1, 1), ~x3 = (0, 1, 4, 2).
(i) Determine if ~x1, ~x2, and ~x3 are linearly independent.
Justify your answer.
(ii) Determine if ~v = (2, −1, 3, 1) is a linear combination of
~x1, ~x2, and ~x3.
If so, express ~v as a linear combination of ~x1, ~x2, and ~x3. If
not, justify
your answer.
(iii) Determine if ~u = (1, 0, 0, 1) is a linear combination of
~x1, ~x2, and ~x3. If
so, express ~u as a linear combination of ~x1, ~x2, and ~x3. If
not, justify
your answer.
In: Advanced Math