answersLogoWhite

0


Best Answer

Tuple is a term used in mathematics and computing science to show and ordered list of elements. Tuples are often used as product types in programming languages, and to describe other mathematical subjects in maths.

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What does a tuple stand for in mathematics?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is tuple variables in dbms?

TUPLE : Is the "ROW" in a table


What is an MM degree?

In mathematics an MM degree stand for a Masters of Mathematics. Lowercase mm stand for millimeters.


What is meant by a database row What is a tuple?

In database there are no. of records stored in it. These records are stored in table . Row in this table is known as a tuple. So tuple is basically a row.


What does the abbreviation cl stand for in mathematics?

Centileter


What are The rows in the access tables called?

The formal name for a row is a tuple.


What is 1E stand for in mathematics?

elaphant


What does TCM stand for in Math?

Teaching children mathematics


What is the difference between tuple and attribute?

TUPLE : Is the "ROW" in a table and ATTRIBUTE : Is the "COLUMN" and it can also be called as "ATTRIBUTE". Annapurna table is collection of attributes ..... attribute is nothing but property tuple is the collection of information abt the attributes of table for single instance


What the h in math stand for?

Math is an abbreviation of mathematics: it is not an acronym. So the h does not stand for anything!


What is another name for a tuple?

cell


What does the symbol EE mean in mathematics?

what does EE stand for calculator


How do we tuple initialize a class or structure?

Consider the following structure: struct X { int a; double b; // ... }; Here we could initialise with a std::tuple<int, double>. To achieve this we simply define a constructor that accepts the required tuple: #include<tuple> struct X { int a; double b; X::X (std::tuple<int, double>& t): a {std::get<0>(t)}, b {std::get<1>(t)} {} // ... }; Note that any constructor that has one argument is known as a conversion constructor, in this case converting from tuple to X. It is usually a good idea to declare such constructors explicit, particularly if you also provide the complementary conversion operator (from X to tuple). #include<tuple> struct X { int a; double b; explicit X::X (const std::tuple<int, double>& t): a {std::get<0>(t)}, b {std::get<1>(t)} {} operator std::tuple<int, double> (void) const {return std::make_tuple (a, b);} // ... };