Sine Curve

fiery sine fw3cf
fiery
plots of the equation
ContourPlot[
 Sin[x*Sin[y]] - Cos[y*Cos[x]] == 0, {x, -10, 20}, {y, -10, 20},
 PlotPoints -> 50, ColorFunction -> Hue]

Mathematica Notebook for This Page .

History

All trignometric functions sine, cosine, tangent, secant, cosecant, cotangent can all be simply defined in terms of a single function sine. Sine, as associated with trigonometry, began in early civilization as a very important measuring science. When the function concept and calculus and analytic geometry were introduced in about 1700, sine became a function and has little to do with triangles. The sine function appears unexpectedly throughout analysis, because in essence it captures the idea of a wave, a fundamental concept in physics.

From Robert Yates:

Trigonometry seems to have been developed, with certain traces of Indian influence, first by the Arabs about 800 as a aid to the solution of astronomical problems. From them the knowledge probably passed to the Greeks. Johann Müller (c.1464) wrote the first treatise: De triangulis omnimodis; this was followed closely by others.

Description

Sine curve is the curve of the sine function. It is also known as sinusoid. Sine is sometimes called circular function because the essential feature of the sine function can be thought of as a point moving around a circle in constant speed, and the value of sine being the height of the point.

Step by step description:

  1. Let A be a point on origin.
  2. Let C be a point on the positive x-axes.
  3. Let D be a point on (-1,0).
  4. The sine function at Distance[A,C] is the height of E, where E is a point such that ArcLength[A,D,E] == Distance[A,C].
sine curve
Sine Curve
trig curve sinusoidGen
Tracing sine curve

Formula

In the formula y == a*Sin[x/p+s], a is the amplitude, p the period, and s the phase shift.

Trig Functions In Terms of Sine

All trig functions is defined in terms of sine.

Sin[θ] Csc[θ]:=1/Sin[θ]
Cos[θ]:=Sin[θ+Pi/2] Sec[θ]:=1/Cos[θ]
Tan[θ]:=Sin[θ]/Cos[θ] Cot[θ]:=1/Tan[θ]

If a right triangle is placed in a standard position (That is: in the Cartesian coordinate system such that it lies in the first quadrant, and the right angle vertex lies on the x-axes, and the hypotenuse touches the origin), and if r denote (the length of) the hypotenuse, x the bottom side, y the vertical side, θ the angle of x and r, then we have the following formulas:

Sin[θ] == y/r
Cos[θ] == x/r
Tan[θ] == y/x

Properties

Basic Trig Functions

trig curves
Blue is sine curve. Pink is cosine. Red is tangent.
trig curve
The blue is sine curve. The pink is cosecant, the red is cotangent. One can clearly see that sin and csc are multiplicative inverses: the smaller the value of sine, the larger is cosecant, and vice versa.

Helix Projection

helicoid projection
Sine curve is the orthogonal projection of the space curve helix. (See: helicoid) A helicoid is a surface formed as the trace of a rotating a line along a axis.

Development Of Cut Cylinder

Sine curve is the development of a obliquely cut right circular cylinder. (the edge of the cylinder rolled out is a sinusoid). graphics code. .

trace of a cut cylinder sinusoidCylinderCut
Sine curve by rolling cylinder

Wavy Surface

wave surface wave surface photo
A packaging form is modeled after the surface Sin[x]*Sin[y]. graphics code.
math borg cube 2021-07-27
max = 5; ContourPlot3D[ Sin[x*y] + Sin[y*z] + Sin[z*x] == 0, {x, -max, max}, {y, -max, max}, {z, -max, max}, Boxed -> False, Axes -> False, Mesh -> None, ContourStyle -> Directive[RandomColor[], Opacity[0.5], Specularity[ 1, 20]]]

Related Web Sites

Robert Yates: Curves and Their Properties .