Difference between revisions of "Cone"

(Don't put false things in the wiki! Also, someone should produce some images for this article, etc.)
(here you go)
Line 1: Line 1:
 
A '''cone''' (or ''circular cone'') is a three-dimensional [[solid]].  It consists of a [[circle | circular]] base, a [[point]] (called the ''vertex''), and all the points that lie on [[line segment]]s connecting the vertex to the base.  Thus, the cone is the special case of the [[pyramid]] in which the base is circular.
 
A '''cone''' (or ''circular cone'') is a three-dimensional [[solid]].  It consists of a [[circle | circular]] base, a [[point]] (called the ''vertex''), and all the points that lie on [[line segment]]s connecting the vertex to the base.  Thus, the cone is the special case of the [[pyramid]] in which the base is circular.
  
{{image}}
+
<center><!-- NOTE: two versions below, only difference should be value of vertex triple. --><asy>
 +
import three; currentprojection = perspective(0,-3,1); defaultpen(linewidth(0.7));triple vertex = (0,0,1.5);
 +
 
 +
path3 rightanglemark(triple A, triple B, triple C, real s=8) {
 +
    triple P,Q,R; 
 +
    P=s*markscalefactor*unit(A-B)+B; 
 +
    R=s*markscalefactor*unit(C-B)+B; 
 +
    Q=P+R-B; 
 +
    return P--Q--R;
 +
}
 +
 
 +
path3 unitc=(1,0,0)..(0,1,0)..(-1,0,0)..(0,-1,0)..cycle;
 +
draw(unitc);dot(vertex);draw((1,0,0)--vertex--(-1,0,0));draw(vertex--(vertex.x,vertex.y,0)--(1,0,0));draw(rightanglemark(vertex,(vertex.x,vertex.y,0),(1,0,0),2));label("$r$",(vertex.x,vertex.y,vertex.z/2),W);label("$h$",((1+vertex.x)/2,(vertex.y)/2,0),S);
 +
</asy>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
 +
<asy>
 +
import three; currentprojection = perspective(0,-3,1); defaultpen(linewidth(0.7));triple vertex = (0.4,0,1.5);
 +
 
 +
path3 rightanglemark(triple A, triple B, triple C, real s=8) {
 +
    triple P,Q,R; 
 +
    P=s*markscalefactor*unit(A-B)+B; 
 +
    R=s*markscalefactor*unit(C-B)+B; 
 +
    Q=P+R-B; 
 +
    return P--Q--R;
 +
}  
 +
 
 +
path3 unitc=(1,0,0)..(0,1,0)..(-1,0,0)..(0,-1,0)..cycle;
 +
draw(unitc);dot(vertex);draw((1,0,0)--vertex--(-1,0,0));draw(vertex--(vertex.x,vertex.y,0)--(1,0,0));draw(rightanglemark(vertex,(vertex.x,vertex.y,0),(1,0,0),2));label("$r$",(vertex.x,vertex.y,vertex.z/2),W);label("$h$",((1+vertex.x)/2,(vertex.y)/2,0),S);
 +
</asy></center>
  
 
== Important terminology ==
 
== Important terminology ==
 
 
The distance from the vertex to the [[plane]] containing the base is the ''height'' of the cone, and is frequently denoted <math>h</math>.  The [[radius]] of the base is called the radius of the cone and is frequently denoted <math>r</math>.  If the vertex lies directly above the center of the base, we call the cone a '' '''right''' circular cone'' (or ''right cone'' for short).  In this case, the vertex is the same distance from every point on the boundary of the base; this distance is called the ''slant height'' of the cone, and is sometimes denoted <math>s</math> or <math>\ell</math>.  If a cone is not a right cone (that is, if the vertex is not directly above the center of the base), we call it an ''oblique cone''.
 
The distance from the vertex to the [[plane]] containing the base is the ''height'' of the cone, and is frequently denoted <math>h</math>.  The [[radius]] of the base is called the radius of the cone and is frequently denoted <math>r</math>.  If the vertex lies directly above the center of the base, we call the cone a '' '''right''' circular cone'' (or ''right cone'' for short).  In this case, the vertex is the same distance from every point on the boundary of the base; this distance is called the ''slant height'' of the cone, and is sometimes denoted <math>s</math> or <math>\ell</math>.  If a cone is not a right cone (that is, if the vertex is not directly above the center of the base), we call it an ''oblique cone''.
 
  
 
== Properties ==
 
== Properties ==
 
* A cone with radius <math>r</math> and height <math>h</math> has [[volume]] <math>V = \frac{1}{3} \cdot \pi r^2 \cdot h</math>.  This is a special case of the general formula for the volume of a pyramid, <math>V = \frac{1}{3} \cdot B \cdot h</math>, where <math>V</math> is the volume, <math>B</math> is the area of the base and <math>h</math> is the height.
 
* A cone with radius <math>r</math> and height <math>h</math> has [[volume]] <math>V = \frac{1}{3} \cdot \pi r^2 \cdot h</math>.  This is a special case of the general formula for the volume of a pyramid, <math>V = \frac{1}{3} \cdot B \cdot h</math>, where <math>V</math> is the volume, <math>B</math> is the area of the base and <math>h</math> is the height.
 +
* A right cone of radius <math>r</math> and slant-height <math>s</math> has [[surface area]] <math>\pi r^2 + \pi r s</math> (the [[lateral area]] is <math>\pi rs</math>, and the area of the base is <math>\pi r^2</math>).
  
* A right cone of radius <math>r</math> and slant-height <math>s</math> is <math>\pi r^2 + \pi r h </math>.  To see this, ....
+
{{stub}}
{{image}}
 
  
[[Category:Definition]]
 
 
[[Category:Geometry]]
 
[[Category:Geometry]]
{{stub}}
 

Revision as of 13:26, 2 March 2010

A cone (or circular cone) is a three-dimensional solid. It consists of a circular base, a point (called the vertex), and all the points that lie on line segments connecting the vertex to the base. Thus, the cone is the special case of the pyramid in which the base is circular.

[asy] import three; currentprojection = perspective(0,-3,1); defaultpen(linewidth(0.7));triple vertex = (0,0,1.5);  path3 rightanglemark(triple A, triple B, triple C, real s=8) {        triple P,Q,R;        P=s*markscalefactor*unit(A-B)+B;        R=s*markscalefactor*unit(C-B)+B;        Q=P+R-B;        return P--Q--R;  }   path3 unitc=(1,0,0)..(0,1,0)..(-1,0,0)..(0,-1,0)..cycle; draw(unitc);dot(vertex);draw((1,0,0)--vertex--(-1,0,0));draw(vertex--(vertex.x,vertex.y,0)--(1,0,0));draw(rightanglemark(vertex,(vertex.x,vertex.y,0),(1,0,0),2));label("$r$",(vertex.x,vertex.y,vertex.z/2),W);label("$h$",((1+vertex.x)/2,(vertex.y)/2,0),S); [/asy]      [asy] import three; currentprojection = perspective(0,-3,1); defaultpen(linewidth(0.7));triple vertex = (0.4,0,1.5);  path3 rightanglemark(triple A, triple B, triple C, real s=8) {        triple P,Q,R;        P=s*markscalefactor*unit(A-B)+B;        R=s*markscalefactor*unit(C-B)+B;        Q=P+R-B;        return P--Q--R;  }   path3 unitc=(1,0,0)..(0,1,0)..(-1,0,0)..(0,-1,0)..cycle; draw(unitc);dot(vertex);draw((1,0,0)--vertex--(-1,0,0));draw(vertex--(vertex.x,vertex.y,0)--(1,0,0));draw(rightanglemark(vertex,(vertex.x,vertex.y,0),(1,0,0),2));label("$r$",(vertex.x,vertex.y,vertex.z/2),W);label("$h$",((1+vertex.x)/2,(vertex.y)/2,0),S); [/asy]

Important terminology

The distance from the vertex to the plane containing the base is the height of the cone, and is frequently denoted $h$. The radius of the base is called the radius of the cone and is frequently denoted $r$. If the vertex lies directly above the center of the base, we call the cone a right circular cone (or right cone for short). In this case, the vertex is the same distance from every point on the boundary of the base; this distance is called the slant height of the cone, and is sometimes denoted $s$ or $\ell$. If a cone is not a right cone (that is, if the vertex is not directly above the center of the base), we call it an oblique cone.

Properties

  • A cone with radius $r$ and height $h$ has volume $V = \frac{1}{3} \cdot \pi r^2 \cdot h$. This is a special case of the general formula for the volume of a pyramid, $V = \frac{1}{3} \cdot B \cdot h$, where $V$ is the volume, $B$ is the area of the base and $h$ is the height.
  • A right cone of radius $r$ and slant-height $s$ has surface area $\pi r^2 + \pi r s$ (the lateral area is $\pi rs$, and the area of the base is $\pi r^2$).

This article is a stub. Help us out by expanding it.