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
dexar [7]
3 years ago
12

It has been estimated that 139.2x10^6 m^2 of rainforest is destroyed each day. assume that the initial area of tropical rainfore

st is 20x10^12 m^2.
a) What is the exponential rate of rainforest destruction in units of 1/days?

b) If there were 24.5x10^12 m^2 of tropical rainforest on Earth in 1975, how miuch tropical rainforect would be left on Earth in 2015 if the exponential rate of destruction determined in part (a) stayed constant over this time interval?

c) If tropical rainforests remove 0.83 kg (C)/m^2-year from the atmosphere, how much less carbon [kg(C)] would be removed in 2025 compared to removed in 1975?
Engineering
1 answer:
Dmitry [639]3 years ago
6 0

Answer:

A. 6.96 x 10^-6 /day

B. 22.466 x 10^12 m^2

C. 9.1125 x 10^14 kg of CO2

Explanation:

A. Rate of rainforest destruction = 139.2 x 10^6 m^2/day

Initial area of the rainforest = 20 x 10^12 m^2

Therefore to calculate exponential rate in 1/day,

Rate of rainforest destruction/ initial area of rainforest

= 139.2 x 10^6/20 x 10^12

= 6.96 x 10^-6 /day

B. Rainforest left in 2015 using the rate in A.

2015 - 1975 = 40 years

(40 * 365 )days + 10 days (leap years)

= 14610 days

Area of rainforest in 1975 = 24.5 x 10^12m^2

Rate of rainforest destruction = 139.2 x 10^6 m^2/day

Area of rainforest in 2015 = 14610 * 139.2 x 10^6

= 2.034 x 10^12 m^2

Area left = area of rainforest in 1975 - area of rainforest destroyed in 40years

= 24.5 x 10^12 - 2.034 x 10^12

= 22.466 x 10^12 m^2

C. How much CO2 will be removed in 2025

Recall: Photosynthesis is the process of plants taking in CO2 and water to give glucose and O2.

So CO2 removed is the same as rainforest removed so we use the rate of rainforest removed in a day

Area of rainforest in 1975 = 24.5 x 10^12 m^2

Area of rainforest removed in 2025 = 18262 days * 139.2 x 10^6

= 2.54 x 10^12 m^2

Area of rainforest removed between 1975 - 2025 = 24.5 x 10^12 - 2.54 x 10^12

= 21.958 x 10^12 mC2 of rainforest removed

CO2 = 0.83kg/m^2.year

CO2 removed between 1975 - 2025 = 0.83 * 21.958 x 10^12 * 50 years

= 9.1125 x 10^14 kg of CO2 was removed between 1975 - 2025

You might be interested in
La base de los tema relacionados a las ciencia de las ingeniería es?
Yanka [14]

Answer:

La ciencia y la ingeniería conciben el mundo como comprensible, con reglas que gobiernan su funcionamiento y que a través de un estudio cuidadoso y sistemático se puede evidenciar mediante patrones consistentes que permitan la oportunidad de examinar las características fundamentales que mejor describen los fenómenos.

Explanation:

5 0
3 years ago
Initialize the tuple team_names with the strings 'Rockets', 'Raptors', 'Warriors', and 'Celtics' (The top-4 2018 NBA teams at th
Drupady [299]

Answer:

#Initialise a tuple

team_names = ('Rockets','Raptors','Warriors','Celtics')

print(team_names[0])

print(team_names[1])

print(team_names[2])

print(team_names[3])

Explanation:

The Python code illustrates or printed out the tuple team names at the end of a season.

The code displayed is a function that will display these teams as an output from the program.

4 0
3 years ago
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
3 years ago
When preparing a foundation for a heavy duty machine tool, discuss any four (4) statics machine characteristics to be considered
kozerog [31]

Answer:

1 ) Accuracy of the Machine Tool

2) Load bearing capacity

3) Linearity in the product line

4) Torque of the machine

Explanation:

we know that machine tool is the permanent essential in manufacturing industries

it is a machine use for different form like cutting , grinding and boring etc

so 1st is

1 ) Accuracy of the Machine Tool

we know it is very important Characteristic of the machine tool because when we use it in manufacturing unit Accuracy of the Machine Tool should be higher concern

2) Load bearing capacity

we should very careful about Load bearing capacity because how much amount of load tool will bear check by some parameter like creep , shear stress and strength etc

3) Linearity in the product line

Linearity in the product line mean that it should be group of related product produced by the any one of the manufacturer otherwise it will take time or it may be intermixing

4) Torque of the machine

we know that Torque is a rotational force or a turning force so amount of force multiplied by the distance of the operation

and we know torque per second give the power rating of machine tool

5 0
4 years ago
Which of the following is an example of a hardwood? A maple B spruce C pine D fir
bearhunter [10]

Answer:

A. Maple

Explanation:

Maple is a hardwood.

Hope that helps!

7 0
2 years ago
Other questions:
  • c++ If your company needs 200 pencils per year, you cannot simply use this year’s price as the cost of pencils 2 years from now.
    9·1 answer
  • The yield of a chemical process is being studied.The two most important variables are thought to be the pressure and the tempera
    9·1 answer
  • ¿Cómo nos podría ayudar una hoja de cálculo en nuestro estudio?
    11·1 answer
  • A rotor in a compressor stage has a mean blade radius of 0.285 m and an angular rotor velocity of 8500 RPMs. The static temperat
    9·1 answer
  • Cite another example of information technology companies pushing the boundaries of privacy issues; apologizing, and then pushing
    9·1 answer
  • Make a sketch of a simple mechanically expanded brake and indicate the forces ​ ​ acting on the leading shoe when the brake is a
    10·1 answer
  • A life cycle assessment (LCA) determines the environmental impact at all stages of a product's life cycle, including production,
    12·1 answer
  • A lightbulb has a fixed negative and positive connector. You cannot swap positive and negative sides of a lightbulb in a circuit
    9·2 answers
  • Find the capacitance reactance of a 0.1 micro frequency capacitor 50Hz and at 200Hz​
    9·1 answer
  • Ferroconcrete is reinforced concrete that combines concrete and ________. A. Lead c. Copper b. Iron d. Aluminum.
    6·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!