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
sveta [45]
3 years ago
5

the volume of two similar solids are 1080cm and 1715cm .if the curved surface area of the smaller cone is 840cm .fond the curved

surface area of the larger cone​
Computers and Technology
1 answer:
gavmur [86]3 years ago
4 0

Answer:

A_{big} = 1143.33cm^2

Explanation:

The given parameters are:

V_{small} = 1080

V_{big} = 1715

C_{small} = 840

Required

Determine the curved surface area of the big cone

The volume of a cone is:

V = \frac{1}{3}\pi r^2h

For the big cone:

V_{big} = \frac{1}{3}\pi R^2H

Where

R = radius of the big cone and H = height of the big cone

For the small cone:

V_{small} = \frac{1}{3}\pi r^2h

Where

r = radius of the small cone and H = height of the small cone

Because both cones are similar, then:

\frac{H}{h} = \frac{R}{r}

and

\frac{V_{big}}{V_{small}} = \frac{\frac{1}{3}\pi R^2H}{\frac{1}{3}\pi r^2h}

\frac{V_{big}}{V_{small}} = \frac{R^2H}{r^2h}

Substitute values for Vbig and  Vsmall

\frac{1715}{1080} = \frac{R^2H}{r^2h}

Recall that:\frac{H}{h} = \frac{R}{r}

So, we have:

\frac{1715}{1080} = \frac{R^2*R}{r^2*r}

\frac{1715}{1080} = \frac{R^3}{r^3}

Take cube roots of both sides

\sqrt[3]{\frac{1715}{1080}} = \frac{R}{r}

Factorize

\sqrt[3]{\frac{343*5}{216*5}} = \frac{R}{r}

\sqrt[3]{\frac{343}{216}} = \frac{R}{r}

\frac{7}{6} = \frac{R}{r}

The curved surface area is calculated as:

Area = \pi rl

Where

l = slant\ height

For the big cone:

A_{big} = \pi RL

For the small cone

A_{small} = \pi rl

Because both cones are similar, then:

\frac{L}{l} = \frac{R}{r}

and

\frac{A_{big}}{A_{small}} = \frac{\pi RL}{\pi rl}

\frac{A_{big}}{A_{small}} = \frac{RL}{rl}

This gives:

\frac{A_{big}}{A_{small}} = \frac{R}{r} * \frac{L}{l}

Recall that:

\frac{L}{l} = \frac{R}{r}

So, we have:

\frac{A_{big}}{A_{small}} = \frac{R}{r} * \frac{R}{r}

\frac{A_{big}}{A_{small}} = (\frac{R}{r})^2

Make A_{big} the subject

A_{big} = (\frac{R}{r})^2 * A_{small}

Substitute values for \frac{R}{r} and A_{small}

A_{big} = (\frac{7}{6})^2 * 840

A_{big} = \frac{49}{36} * 840

A_{big} = \frac{49* 840}{36}

A_{big} = 1143.33cm^2

<em>Hence, the curved surface area of the big cone is 1143.33cm^2</em>

You might be interested in
In a five-choice multiple-choice test, which letter is most often the correct answer?
AfilCa [17]
The most often common answer is C



3 0
3 years ago
Read 2 more answers
Leah wants to add an image to her updated presentation, so she wants to access the Help interface. What should Leah do to access
PSYCHO15rus [73]

Answer: 0

Explanation: 1/2

3 0
2 years ago
Read 2 more answers
Which of the following is no longer necessary when you use HTML5 to develop Webpages? Please Hurry This Is For An Assignment due
zlopas [31]

Answer:

Installing a third-party plug-in to include video

Explanation:

5 0
3 years ago
Build three classes that conform to the following interfaces. Use arrays in creating your classes (e.g., do not use the built-in
daser333 [38]

Explanation:

public class ArrayList {

private Object[] array = new Object[1];

/**

 * Places new element at location

 * @param c, element to be inserted

 * @param i, location it is to be placed

 */

public void insert(char c, int i) {

 if(i>this.size()){

  System.out.println("Index "+i +" outside of list size; max: " +this.size());

  System.exit(0);

 }

 int count = 0;

 try {

  Object[] other = new Object[this.array.length+1];

  switch(i){

     case 0:{

      other[0] = c;

      for(int j=1;j<this.array.length;j++)

       other[j] = this.array[j-1];

       

      this.array = other;

      break;

     }

     default: {

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

       other[j] = this.array[j];

      other[i] = c;

      for(int k=i+1;k<this.array.length;k++)

       other[k] = this.array[k-1];

      this.array = other;

      break;

     }

     }

 }

 catch(ArrayIndexOutOfBoundsException exception) {

     largerArray();

     if(++count == 2){

      System.out.println("Something went wrong.");

      System.exit(0);

     }  

 }

}

 

/**

 * Places new element at location

 * @param object, element to be inserted

 * @param index, location it is to be placed

 */

void insert(Object object, int index){

 if(index>this.size()){

  System.out.println("Index "+index +" outside of list size; max: " +this.size());

  System.exit(0);

 }

 int count = 0;

 try {

  Object[] other = new Object[this.array.length+1];

  switch(index){

     case 0:{

      other[0] = object;

      for(int j=1;j<this.array.length;j++)

       other[j] = this.array[j-1];

       

      this.array = other;

      break;

     }

     default: {

      for(int j=0;j<index;j++)

       other[j] = this.array[j];

      other[index] = object;

      for(int k=index+1;k<this.array.length;k++)

       other[k] = this.array[k];

      this.array = other;

      break;

     }

     }

 }

 catch(ArrayIndexOutOfBoundsException exception) {

     largerArray();

     if(++count == 2){

      System.out.println("Something went wrong.");

      System.exit(0);

     }  

 }

}

 

/**

 * Removes element at index

 * @param index, location to remove

 * @return temp, object removed

 */

Object remove(int index){

 if(index>this.size()){

  System.out.println("Index "+index +" outside of list size; max: " +this.size());

  System.exit(0);

 }

 Object temp = this.array[index];

 int count = 0;

 try {

  Object[] other = new Object[this.array.length-1];

  switch(index){

     case 0:{

      other[0] = this.array[1];

      for(int j=1;j<this.size();j++)

       other[j] = this.array[j+1];

       

      this.array = other;

      break;

     }

     default: {

      for(int j=0;j<index;j++)

       other[j] = this.array[j];

      for(int k=index;k<this.size();k++)

       other[k] = this.array[k+1];

      this.array = other;

      break;

     }

     }

 }

 catch(ArrayIndexOutOfBoundsException exception) {

     largerArray();

     if(++count == 2){

      System.out.println("Something went wrong.");

      System.exit(0);

     }  

 }

 return temp;

}

 

/**

 * Copies the array to a new array twice the size.

 */

public void largerArray(){

 Object[] other = new Object[this.array.length*2];

 System.arraycopy(this.array, 0, other, 0, this.array.length);

 this.array = other;

}

 

/**

 * @return true if there are null elements

 */

public boolean isEmpty() {

 boolean bool = true;

 for (Object element : this.array) {

  if(element!=null){

   bool = false;

   break;

  }

  else{

   bool = true;

   break;

 }

 }

 return bool;

}

 

/**

 * Determines the real length of the array

 * @return length of non-null elements

 */

public int size(){

 int count = 0;

 for(int i=0;i<this.array.length;i++){

  if(this.array[i]==null)

   continue;

  else

   count++;

 }

 return count;

}

 

/**

 * Converts array to string.

 * @return the Array as a string

 */

public String toString(){

 String string = "";

 for(int i=0;i<this.size();i++){

  if(i<this.size()-1)

   string += this.array[i]+", ";

  else

   string += this.array[i];

 }

 return string;

}

 

/**

 * Similar to get, imput the character, retrieve index.

 * @param object, what we're looking for

 * @return index

 */

int indexOf(Object object){

 int index = -1;

 for(int i=0;i<this.array.length;i++){

  if(this.array[i]==(object))

   index = i;

  else continue;

 }

 return index;

}

 

/**

 * @param object, Arraylist tyoe

 * @return true, if the elements of the arrays are equivalent.

 */

public boolean equals(ArrayList object){

 boolean bool = false;

 int thisLength = this.array.length;

 int objectLength = object.array.length;

 if(thisLength > objectLength){

  for(int i=0;i<this.array.length;i++)

   if(this.array[i] == object.array[i])

    bool = true;

   else{

    bool = false;

    break;

   }

 }

 else{

  for(int i=0;i<object.array.length;i++)

   if(this.array[i] == object.array[i])

    bool = true;

   else{

    bool = false;

    break;

   }

 }

 return bool;

}

 

/**

 * Getter to check what is at an index

 * @param index, location

 * @return the character at this position

 */

Object get(int index){

 return this.array[index];

}

}

6 0
3 years ago
Suppose that we pick the following three tuples from a legal instance of a relation S (S has 100 tuples in total). Relation S ha
AysviL [449]

Answer:

The correct answer is BC → A, A does not hold over S. we noticed the tuples (1 ,2 ,3 ) and (4 ,2 ,3) which can hold over S)

Explanation:

Solution

No, since in this case the instance of S is provided. so such particular dependencies are unable to breach through such instance, but unable to tell which the dependencies hold towards S.

A functional dependency holds towards only when a relation forms a statement regarding the complete allowed instances of relation.

8 0
3 years ago
Other questions:
  • Which of the following menu commands would you select to make a copy of an open file and rename it?
    15·1 answer
  • You are holding a rock tied to a string, which is an example of a pendulum. identify and explain the proper term for each part o
    10·2 answers
  • In 2007, this wireless security algorithm was rendered useless by capturing packets and discovering the passkey in a matter of s
    6·2 answers
  • For a class project, Jerome builds a simple circuit with a battery and three light bulbs. On his way to school, Jerome drops his
    9·1 answer
  • Which one is correct
    8·1 answer
  • A TCP ________ segment is a request to the other transport process to close a connection. ACK FIN SYN CLS
    15·1 answer
  • What symbol indicates that material has been copyrighted?
    8·2 answers
  • Remember not to use tools that are ________ in any way.
    5·1 answer
  • Given a number n, for each integer i in the range from 1 to n inclusive, print one value per line as follows:
    12·1 answer
  • The underlying color of a slide.
    9·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!