Formulas for reference
For the convenience of the student we give
the following list of elementary formulas from Algebra, Geometry,
Trigonometry, and Analytic Geometry.
- Binomial Theorem (
being a positive integer):
-
.
- In the quadratic equation
,
when
, the roots are real and distinct;
when
, the roots are real and equal;
when
, the roots are complex.
- When a quadratic equation is reduced to the form
,
= sum of roots with sign changed, and
= product of roots.
- In an arithmetical series,
,
,
, ...,
- In a geometrical series,
,
,
, ...,
-
.
-
.
-
.
-
.
-
.
-
.
-
.
- 1.1Circumference of circle =
.
- Area of circle =
.
- Volume of prism =
.
- Volume of pyramid =
.
- Volume of right circular cylinder =
.
- Lateral surface of right circular cylinder =
.
- Total surface of right circular cylinder =
.
- Volume of right circular cone =
.
- Lateral surface of right circular cone =
.
- Total surface of right circular cone =
.
- Volume of sphere =
.
- Surface of sphere =
.
-
;
;
.
-
;
.
-
;
;
.
-
;
;
.
-
;
;
.
-
.
-
.
-
.
-
.
-
.
-
;
;
.
-
;
;
.
-
;
.
-
;
.
-
;
;
.
-
.
-
.
-
.
-
.
-
;
Law of Sines.
-
; Law of Cosines.
-
;
distance between points
and
.
-
;
distance from line
to
.
-
,
;
coordinates of middle point.
-
,
; transforming to new origin
.
-
,
;
transforming to new axes making the angle theta with old.
-
,
;
transforming from rectangular to polar coordinates.
-
,
;
transforming from polar to rectangular coordinates.
- Different forms of equation of a straight line:
- (a)
-
,
two-point form;
- (b)
-
,
intercept form;
- (c)
-
,
slope-point form;
- (d)
-
,
slope-intercept form;
- (e)
-
,
normal form;
- (f)
-
, general form.
-
,
angle between two lines whose slopes are
and
.
when lines are parallel, and
when lines are perpendicular.
-
, equation of circle
with center
and radius
.
Many of these facts are already known to Sage:
[fontsize=\scriptsize,fontfamily=courier,fontshape=tt,frame=single,label=\sage]
sage: a,b = var("a,b")
sage: log(sqrt(a))
log(a)/2
sage: log(a/b).simplify_log()
log(a) - log(b)
sage: sin(a+b).simplify_trig()
cos(a)*sin(b) + sin(a)*cos(b)
sage: cos(a+b).simplify_trig()
cos(a)*cos(b) - sin(a)*sin(b)
sage: (a+b)^5
(b + a)^5
sage: expand((a+b)^5)
b^5 + 5*a*b^4 + 10*a^2*b^3 + 10*a^3*b^2 + 5*a^4*b + a^5
``Under the hood'' Sage used Maxima to do this simplification.
david joyner
2008-11-22