sorry for my layman terminology, but to my understanding as a coder a function has a name, parameters, arguments and operations. if sin is the name, and its parameters are side opposite and hypotenuse, and its arguments are context dependent, what is the operation itself? am i making sense?
def sin (hypotenuse, opposite):
??!?!?!!?
I didn’t get what you were asking until I started to answer. The parameter is the angle. The algorithm is https://en.wikipedia.org/wiki/CORDIC . In (most?) compiled languages, this algorithm is performed on hardware. In (some?) interpreted languages, it’s done in hardware.
whats the difference between an algorhythm and a function
An algorithm is the meat of a function. It’s the “how.”
And if you’re using someone else’s function, you won’t touch the “how” because you’ll be interacting with the “what.” (You use a function for what it does.)
You will be creating your own algorithm by writing code, however. Because an algorithm is just a sequence of steps that, taken together, constitute an attempt at achieving an objective.
Haus is saying all the little steps that go into approximating sine occur directly on the hardware.
Oddly enough, on a computer, I have not seen secant, cosecant, or cotangent.
I have seen sin, cos, tan, arcsin, arccos, and arctan.
Though the arc functions will only have one parameter, so if this is homework, you’ll probably be avoiding the arcs and using secant and friends
Anyways:
sin ( angle )
Term In this example Parameter Angle is the parameter. It’s in radians, so in Java you’ll use a conversion like Math.toRadians(a) on whatever number you’re going to use as an argument Argument If I were to call sin(Math.PI / 4)
then I would be passing the argumentπ / 4
to the function.In other words, if a parameter is a question, then an argument is an answer. If a parameter is a coin slot, than an argument is the coin you choose to insert. Operation An operation is practically synonymous with “function”. It is performed on inputs to arrive at an output. However, usually in code, I hear “operation” used to describe things like /
,*
, and+
. Things that have multiple inputs and a single output, all of the same form.If someone is asking you, "which operation should you use in the body of function
sin ( hyponetuse, opposite )
then I imagine the expected answer would be,/
because/
is an operation, and becauseopposite / hypotenuse
will perform the division that yields the sine of whatever triangle those two sides belong to.
The parameter for the
sin
function is an angle. The angle can be specified in either radians or degrees, depending on the context. The output of the sin function is the ratio between the opposite side and the hypotenuse on a right triangle like this.There are many different algorithms which can be used to calculate
sin(a)
, but all that I know require a decent understanding of Calculus (Taylor Series) or Trigonometry (CORDIC). You can find a Python implementation of the CORDIC algorithm here.In a more general sense, the “operation” of the sin function is the “sin” operation. In maths, one very rarely goes lower than
f(a) = sin(a)
and when one does, it’s often just to find an alternate way to estimate the value of sin. One can think of the sin function as being similar toln(x)
in that it is much closer to an operation than being an actual function.I’m not a math expert by any means so I can’t really answer the first part well. I can say that when I was taught trig, they were used to calculate angles in a triangle, and the function you used was dependent on the info you had. Sine/Cosecant, Cosine/Secant, and Tangent/Cotangent are the functions. Each function is paired with an opposite. To remember the formula, it’s Soh Cah Toa, where the first letter is the the function, the second two are the inputs. So, Sin(x) == opposite/hypotenuse, and then the opposite of that is Sec(x) == hypotenuse/opposite, and so on.
That’s poorly explained and leaves a lot of info on the table, but that’s what I remember.
https://youtu.be/Dsf6ADwJ66E?si=ISKljD_IdxC2_Na_
There ya go
I’m probably way too elementary for this post, but just in case someone doesn’t know about SohCahToa (pro. soh-cah-toh-ah).
Soh
- sin is opposite over hypotenuse
Cah
- cos is adjacent over hypotenuse
Toa
- tan is opposite over adjacent
I made it through my college trigonometry class by just remembering that one simple pneumonic. Everything else that was taught could be derived from it.
also what are the other fives operations, sin was just an example
I belive that this may be what you’re looking for: https://en.wikipedia.org/wiki/Trigonometric_functions#Right-angled_triangle_definitions
One way to think about it -
The argument to the function is an angle
The operation is:
Draw a triangle with hypotenuse length 1, one angle 90, another angle is the one passed to the function
Divide the length of the side opposite the passed angle by the length of the hypotenuse
Return this value
The other trig functions are the same with different sides being divided.
O/H?