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
meriva
3 years ago
5

A manufacturer makes integrated circuits that each have a resistance layer with a target thickness of 200 units. A circuit won't

work well if this thickness varies too much from the target value. These thickness measurements are approximately normally distributed with a mean of _______.
Engineering
1 answer:
aleksklad [387]3 years ago
7 0

Answer:

probability P = 0.32

Explanation:

this is incomplete question

i found complete A manufactures makes integrated circuits that each have a resistance layer with a target thickness of 200 units. A circuit won't work well if this thickness varies too much from the target value. These thickness measurements are approximately normally distributed with a mean of 200 units and a standard deviation of 12 units. A random sample of 17 measurements is selected for a quality inspection. We can assume that the measurements in the sample are independent. What is the probability that the mean thickness in these 16 measurements x is farther than 3 units away from the target value?

solution

we know that Standard error is expess as

Standard error = \frac{sd}{\sqrt{n}}

Standard error  = \frac{12}{\sqrt{16}}

Standard error  = 3  

so here we get Z value for 3 units away are from mean are

mean =  -1 and + 1

so here

probability P will be

probability P = P( z < -1 or z > 1)

probability P = 0.1587 + 0.1587

probability P =  0.3174

probability P = 0.32

You might be interested in
A master stud pattern is laid out somewhat<br> like a?
Svetradugi [14.3K]

Answer:

••• like a story pole but has information for only one portion of the wall. system. methods and materials of construction.

3 0
2 years ago
An iron-carbon alloy initially containing 0.286 wt% C is exposed to an oxygen-rich and virtually carbon-free atmosphere at 1200°
Fantom [35]

Answer:

Explanation:

Given data:

initial construction co = 0.286 wt %

concentration at surface position cs = 0 wt %

carbon concentration cx = 0.215 wt%

time = 7 hr

D =  7.5 \times 10^{-11} m^2/s

for 0.225% carbon concentration following formula is used

\frac{cx -co}{cs -co} = 1 - erf(\frac{x}{2\sqrt{DT}})

where, erf stand for error function

\frac{cx -co}{cs -co} = \frac{0.215 -0.286}{0 -0.286} =0.248

0.248 = 1 - erf(\frac{x}{2\sqrt{DT}})

erf(\frac{x}{2\sqrt{DT}}) = 1 - 0.248

erf(\frac{x}{2\sqrt{DT}}) = 0.751

from the table erf(Z) value = 0.751 lie between (z) = 0.80 and z = 0.85 so by inteerpolation we have z = 0.815

from given table

\frac{x}{2\sqrt{DT}} = 0.815

x = 2\times 0.815 \times \sqrt{7.5 \times 10^{-11}\times (7\times 3600)

x = 2.39\times 10^{-3} m

x = 0.002395 mm

8 0
3 years ago
Scanning the road can be thought of as
maw [93]

Answer:

Observational Skills

Explanation:

Observing the area also known as scanning the scene

5 0
2 years ago
Read 2 more answers
computer language C++ (Connect 4 game)( this is all the info that was givin no input or solution) I used the most recent version
Mariana [72]

Answer:

C++ code explained below

Explanation:

#include "hw6.h"

//---------------------------------------------------

// Constructor function

//---------------------------------------------------

Connect4::Connect4()

{

ClearBoard();

}

//---------------------------------------------------

// Destructor function

//---------------------------------------------------

Connect4::~Connect4()

{

// Intentionally empty

}

//---------------------------------------------------

// Clear the Connect4 board

//---------------------------------------------------

void Connect4::ClearBoard()

{

// Initialize Connect4 board

for (int c = 0; c < COLS; c++)

for (int r = 0; r < ROWS; r++)

board[r][c] = ' ';

// Initialize column counters

for (int c = 0; c < COLS; c++)

count[c] = 0;

}

//---------------------------------------------------

// Add player's piece to specified column in board

//---------------------------------------------------

bool Connect4::MakeMove(int col, char player)

{

// Error checking

if ((col < 0) || (col >= COLS) || (count[col] >= ROWS))

return false;

// Make move

int row = count[col];

board[row][col] = player;

count[col]++;

return true;

}

//---------------------------------------------------

// Check to see if player has won the game

//---------------------------------------------------

bool Connect4::CheckWin(char player)

{

// Loop over all starting positions

for (int c = 0; c < COLS; c++)

for (int r = 0; r < ROWS; r++)

if (board[r][c] == player)

{

// Check row

int count = 0;

for (int d = 0; d < WIN; d++)

if ((r+d < ROWS) &&

(board[r+d][c] == player)) count++;

if (count == WIN) return true;

 

// Check column

count = 0;

for (int d = 0; d < WIN; d++)

if ((c+d < COLS) &&

(board[r][c+d] == player)) count++;

if (count == WIN) return true;

 

// Check first diagonal

count = 0;

for (int d = 0; d < WIN; d++)

if ((r+d < ROWS) && (c+d < COLS) &&

(board[r+d][c+d] == player)) count++;

if (count == WIN) return true;

 

// Check second diagonal

count = 0;

for (int d = 0; d < WIN; d++)

if ((r-d >= 0) && (c+d < COLS) &&

(board[r-d][c+d] == player)) count++;

if (count == WIN) return true;

}

return false;

}

//---------------------------------------------------

// Print the Connect4 board

//---------------------------------------------------

void Connect4::PrintBoard()

{

// Print the Connect4 board

for (int r = ROWS-1; r >= 0; r--)

{

// Draw dashed line

cout << "+";

for (int c = 0; c < COLS; c++)

cout << "---+";

cout << "\n";

// Draw board contents

cout << "| ";

for (int c = 0; c < COLS; c++)

cout << board[r][c] << " | ";

cout << "\n";

}

// Draw dashed line

cout << "+";

for (int c = 0; c < COLS; c++)

cout << "---+";

cout << "\n";

// Draw column numbers

cout << " ";

for (int c = 0; c < COLS; c++)

cout << c << " ";

cout << "\n\n";

}

//---------------------------------------------------

// Main program to play Connect4 game

//---------------------------------------------------

int main()

{

  int choice;

  int counter = 0;

  srand (time(NULL));

  Connect4 board;

  cout << "Welcome to Connect 4!" << endl << "Your Pieces will be labeled 'H' for human. While the computer's will be labeled 'C'" << endl;

  board.PrintBoard();

  cout << "Where would you like to make your first move? (0-6)";

  cin >> choice;

  while (board.MakeMove(choice,'H') == false){

  cin >> choice;

  }

  counter++;

  while (board.CheckWin('C') == false && board.CheckWin('H') == false && counter != 21){

  while (board.MakeMove(rand() % 7, 'C') == false){}

  board.PrintBoard();

  cout << "Where would you like to make your next move?" << endl;

  cin >> choice;

  board.MakeMove(choice,'H');

  while (board.MakeMove(choice,'H') == false){

  cin >> choice;

  }

  counter++;

  }

 

  if (board.CheckWin('C')){

  cout << "Computer Wins!" << endl;}

  else if (counter == 21){cout << "Tie Game!" << endl;}

  else {cout << "Human Wins!" << endl;}

  board.PrintBoard();

}

4 0
2 years ago
Natural Gas Corporation obtains a federal license to operate a gas pipeline through a certain area of Oregon. The Oregon state l
pentagon [3]

Answer:

b. the supremacy clause

Explanation:

This is clearly a violation of the supremacy clause of the constitution. The supremacy clause makes the constitution and federal laws made under the constitutional authority the supreme law of the united state. And in a case where there is a conflicting state law, as we have here with Oregon, the federal law is supposed to take priority.

So in this case where the federal law and the state law do not agree, the feral law has the power to override the law of the state. So oregon has violated the supremacy clause

6 0
2 years ago
Other questions:
  • At a certain elevation, the pilot of a balloon has a mass of 120 lb and a weight of 119 lbf. What is the local acceleration of g
    6·1 answer
  • A Carnot engine has a piston displacement volume of 7.5 liters. The volume at the beginning of heat addition is 1.0 liters, the
    14·1 answer
  • You are a technical writer for Landson Toy Company. Landson has just designed a new, more durable swing set for 6- to 10-year-ol
    9·1 answer
  • For Laminar flow conditions, what size pipe will deliver 90 gpm of medium oil at 40°F (υ = 6.55 * 10^‐5)?
    12·1 answer
  • Effective presentations are: Have a central message Colorful and exciting Have many messages Are influence by a setting Created
    15·2 answers
  • A series RC circuit has a voltage of 24VAC and an impedance of 252ohms. What is the circuit current?
    6·1 answer
  • Multilane roads use what to divide lanes of traffic moving in the same direction.
    14·2 answers
  • Help me asap I rely need help u will be my fav​
    8·2 answers
  • Need help with these 3 ez questions pls help me will mark brainiest.
    15·1 answer
  • Discuss importance of good communication system​
    8·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!