1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Zanzabum
3 years ago
7

Help me! Phone Phoebe on 07375410044.

Engineering
2 answers:
natulia [17]3 years ago
4 0

Answer:

yes maam

Explanation:

Step2247 [10]3 years ago
4 0
Answer is yes

Explanation
You might be interested in
You can help build a safe work environment by using your knowledge of violence prevention strategies to spot what?
Ostrovityanka [42]

Answer:

warning signs

Explanation:

give directions on your surroundings

4 0
2 years ago
Using a forked rod, a 0.5-kg smooth peg P is forced to move along the vertical slotted path r = (0.5 θ) m, whereθ is in radians.
-BARSIC- [3]

Answer:

N_c = 3.03 N

F = 1.81 N

Explanation:

Given:

- The attachment missing from the question is given:

- The given expressions for the radial and θ direction of motion:

                                       r = 0.5*θ

                                       θ = 0.5*t^2              ...... (correction for the question)

- Mass of peg m = 0.5 kg

Find:

a) Determine the magnitude of the force of the rod on the peg at the instant t = 2 s.

b) Determine the magnitude of the normal force of the slot on the peg.

Solution:

- Determine the expressions for radial kinematics:

                                        dr/dt = 0.5*dθ/dt

                                        d^2r/dt^2 = 0.5*d^2θ/dt^2

- Similarly the expressions for θ direction kinematics:

                                        dθ/dt = t

                                        d^2θ/dt^2 = 1

- Evaluate each at time t = 2 s.

                                        θ = 0.5*t^2 = 0.5*2^2 = 2 rad -----> 114.59°

                                        r = 1 m , dr / dt = 1 m/s , d^2 r / dt^2 = 0.5 m/s^2

- Evaluate the angle ψ between radial and horizontal direction:

                                        tan Ψ = r / (dr/dθ) = 1 / 0.5

                                        Ψ = 63.43°

- Develop a free body diagram (attached) and the compute the radial and θ acceleration:

                                        a_r = d^2r / dt^2 - r * dθ/dt

                                        a_r = 0.5 - 1*(2)^2 = -3.5 m/s^2

                                        a_θ =  r * (d^2θ/dt^2) + 2 * (dr/dt) * (dθ/dt)

                                        a_θ = 1(1) + 2*(1)*(2) = 5 m/s^2

- Using Newton's Second Law of motion to construct equations in both radial and θ directions as follows:

Radial direction:              N_c * cos(26.57) - W*cos(24.59) = m*a_r

θ direction:                      F  - N_c * sin(26.57) + W*sin(24.59) = m*a_θ

Where, F is the force on the peg by rod and N_c is the normal force on peg by the slot. W is the weight of the peg. Using radial equation:

                                       N_c * cos(26.57) - 4.905*cos(24.59) = 0.5*-3.5

                                       N_c = 3.03 N

                                       F  - 3.03 * sin(26.57) + 4.905*sin(24.59) = 0.5*5

                                       F = 1.81 N

4 0
3 years ago
Describe the greatest power in design according to Aravena?
Ann [662]

Answer: Describe the greatest power in design according to Aravena? The subject of Aravena’s recent Futuna Lecture Series in New Zealand was ‘the power of design,’ which he described as ultimately being “the power of synthesis” because, increasingly, architects are dealing with complex issues and problems.

What are the three problems with global urbanization? 1. Degraded Environmental Quality ...

2. Overcrowding ...

3. Housing Problems ...

4. Unemployment ...

5. Development of Slums...

How could you use synthesis in your life to solve problems? Hence, synthesis is often not a one-time process of solution design but is used in combination with problem understanding and solution analysis to progress towards a more complete understanding of problems and solutions over time (see Applying the Systems Approach topic for a more complete discussion of the dynamics of this aspect of the approach).

I got all three answers

4 0
1 year ago
For this problem, you may not look at any other code or pseudo-code (even if it is on the internet), other than what is on our w
sergiy2304 [10]

Answer:

(a)

(i) pseudo code :-

current = i

// assuming parent of root is -1

while A[parent] < A[current] && parent != -1 do,

if A[parent] < A[current] // if current element is bigger than parent then shift it up

swap(A[current],A[parent])

current = parent

(ii) In heap we create a complete binary tree which has height of log(n). In shift up we will take maximum steps equal to the height of tree so number of comparison will be in term of O(log(n))

(b)

(i) There are two cases while comparing with grandparent. If grandparent is less than current node then surely parent node also will be less than current node so swap current node with parent and then swap parent node with grandparent.

If above condition is not true then we will check for parent node and if it is less than current node then swap these.

pseudo code :-

current = i

// assuming parent of root is -1

parent is parent node of current node

while A[parent] < A[current] && parent != -1 do,

if A[grandparent] < A[current] // if current element is bigger than parent then shift it up

swap(A[current],A[parent])

swap(A[grandparent],A[parent])

current = grandparent

else if A[parent] < A[current]

swap(A[parent],A[current])

current = parent

(ii) Here we are skipping the one level so max we can make our comparison half from last approach, that would be (height/2)

so order would be log(n)/2

(iii) C++ code :-

#include<bits/stdc++.h>

using namespace std;

// function to return index of parent node

int parent(int i)

{

if(i == 0)

return -1;

return (i-1)/2;

}

// function to return index of grandparent node

int grandparent(int i)

{

int p = parent(i);

if(p == -1)

return -1;

else

return parent(p);

}

void shift_up(int A[], int n, int ind)

{

int curr = ind-1; // because array is 0-indexed

while(parent(curr) != -1 && A[parent(curr)] < A[curr])

{

int g = grandparent(curr);

int p = parent(curr);

if(g != -1 && A[g] < A[curr])

{

swap(A[curr],A[p]);

swap(A[p],A[g]);

curr = g;

}

else if(A[p] < A[curr])

{

swap(A[p],A[curr]);

curr = p;

}

}

}

int main()

{

int n;

cout<<"enter the number of elements :-\n";

cin>>n;

int A[n];

cout<<"enter the elements of array :-\n";

for(int i=0;i<n;i++)

cin>>A[i];

int ind;

cout<<"enter the index value :- \n";

cin>>ind;

shift_up(A,n,ind);

cout<<"array after shift up :-\n";

for(int i=0;i<n;i++)

cout<<A[i]<<" ";

cout<<endl;

}

Explanation:

8 0
3 years ago
I don’t get this it’s hella hard
qwelly [4]

Answer:

V₂ = 20 V

Vt = 20 V

V₁ = 20 V

V₃ = 20 V

I₁ = 10 mA

I₃ = 3.33 mA

It = 18.33 mA

Rt = 1090.91 Ω

Pt = 0.367 W

P₁ = 0.2 W

P₂ = 0.1 W

P₃ = 0.067 W

Explanation:

Part of the picture is cut off.  I assume there is a voltage source Vt there?

First, use Ohm's law to find V₂.

V = IR

V₂ = (0.005 A) (4000 Ω)

V₂ = 20 V

R₁ and R₃ are in parallel with R₂ and the voltage source Vt.  That means V₁ = V₂ = V₃ = Vt.

V₁ = 20 V

V₃ = 20 V

Vt = 20 V

Now we can use Ohm's law again to find I₁ and I₃.

V = IR

I = V/R

I₁ = (20 V) / (2000 Ω)

I₁ = 0.01 A = 10 mA

I₃ = (20 V) / (6000 Ω)

I₃ = 0.00333 A = 3.33 mA

The current It passing through Vt is the sum of the currents in each branch.

It = I₁ + I₂ + I₃

It = 10 mA + 5 mA + 3.33 mA

It = 18.33 mA

The total resistance is the resistance of the parallel resistors:

1/Rt = 1/R₁ + 1/R₂ + 1/R₃

1/Rt = 1/2000 + 1/4000 + 1/6000

Rt = 1090.91 Ω

Finally, the power is simply each voltage times the corresponding current.

P = IV

Pt = (0.01833 A) (20 V)

Pt = 0.367 W

P₁ = (0.010 A) (20 V)

P₁ = 0.2 W

P₂ = (0.005 A) (20 V)

P₂ = 0.1 W

P₃ = (0.00333 A) (20 V)

P₃ = 0.067 W

7 0
2 years ago
Other questions:
  • . A roadway is being designed capable of allowing 70 mph vehicle speed. The superelevation around one curve is 0.05 inches per i
    15·1 answer
  • Because of ____________ people must make choices, and when they choose, they incur a(n)______________.
    10·1 answer
  • Should the ship breaking business continue why or why not?
    11·1 answer
  • Which of the following is not true about manufacturing employment in the U.S?
    15·1 answer
  • Which Finance jobs can someone pursue with only a high school diploma? Check all that apply.
    10·2 answers
  • Once you get the answer correct first i will mark you brainliest!!
    15·2 answers
  • How to study thermodynamics?​
    14·2 answers
  • Ethylene glycol, the ingredient in antifreeze, does not cause health problems because it is a clear liquid.
    6·1 answer
  • A plant has ten machines and currently operates two 8-hr shift per day, 5 days per week, 50 weeks per year. the ten machines pro
    6·1 answer
  • Which type of artificial intelligence (ai) can repeatedly perform tasks of limited scope?
    8·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!