English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

2007-12-22 10:41:32 · 6 answers · asked by Anonymous in Science & Mathematics Mathematics

6 answers

Hi,

If I understand you correctly, the two dots are above the equals sign [or at least one of them]. Therefore, this is the symbol for "approximately equal to".

I hope that helps you out! Please let me know if you have any other questions!

Sincerely,

Andrew

2007-12-22 10:45:16 · answer #1 · answered by The VC 06 7 · 0 1

In many computer languages, this is the replacement operator. The expression on the right hand side of the operator is evaluated and is stored in the variable on the left, in effect forcing the left side to be equal to the right side. In older computer programs, you often saw expressions like
A := A + 1
which means take whatever value is in the storage location representing variable A, add 1 to it, and store it back into the location for variable A.

2007-12-22 10:49:25 · answer #2 · answered by devilsadvocate1728 6 · 1 0

This is primarily used in computer programming, and it normally means that a variable is set equal to some value. It can also mean that an expression is being defined as having a certain value, which is more commonly shown using what appears to be an equals sign except that it has three bars instead of two.

2007-12-22 10:43:15 · answer #3 · answered by DavidK93 7 · 2 1

There are two answers, both already given above. One use is in some computer languages as the assignment operator, and the other use is in mathematical writing to specify a definition.

------------

The symbol := originated in the computer programming language Algol, created in the late 1950's and standardized in 1960, as Algol60. It was the assignment operator, which assigned a value to a variable, as in
x := 2*y + 3;
This instructed the computer to calculate the value of 2*y + 3, and assign that value to x.

The symbol was created to eliminate the double usage of the equal sign =, which in the slightly earlier language Fortran served both as an assignment operator, and a relational operator in boolean conditions as in
if x = 3 then ....

Other later languages like Pascal, Modula, and Ada also used :=

C, C++, and Java reverted to = for the assignment operator, and used a double equal == for the boolean relational operator, resulting in untold zillions of computer programmer errors.

------------

The second usage of := as already mentioned by somebody else above, was by mathematicians, using it to indicate a definition, as in
Let f(x) := x^2 + 1
This would be given at the first introduction of f(x), and establishes the meaning of it.

2007-12-22 12:09:08 · answer #4 · answered by jim n 4 · 1 0

well ":" means is to (like apple:orange........)
and = means equals

is to equals
=2=
2=2


it means

It is, what it is.

2007-12-22 10:45:01 · answer #5 · answered by me 5 · 0 3

a:=b
a is defined as b. or definition of a is b.

2007-12-22 10:43:55 · answer #6 · answered by Ash_Jx 4 · 2 1

fedest.com, questions and answers