answersLogoWhite

0


Best Answer

Because they obey the same laws (specifically, de Morgan's Laws): -max(a,b) = min(-a,-b) and -min(a,b) = max(-a,-b). In theory, you could use max for intersection and min for union, too.

User Avatar

Wiki User

โˆ™ 15y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Why use max for union and min for intersection?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Natural Sciences

How do I get max to min serial or What function can I use to get max to min or min to max serial?

it will orbit the sun it self and the sun will keep it in the right spot for its temperature


What copper used in rewinding transformers?

It is recommended to use enamelled copper wire min. 99,9 %.


Did Sir Isaac Newton use max planck constant first?

no


What are uses of 6s maximum minimum thermometer?

Six's maximum and minimum thermometer is a popularthermometer . Its purpose is to recordthe maximum and minimum temperatures reached since the thermometer was last read. Generally speaking a minimum temperatureoccurs during the night and amaximumduring the day.. It is interesting to note that Six's maximum and minimum thermometers were still being used in 2000 of exactly the samedesign and construction as ones produced over 100 years ago. Gardeners use max-min thermometers in the greenhouse and the garden to check minimum temperatures during the cold months when frost can be a problem and to check the maximum temperature during the daytime.Gardeners use max-min thermometers in the greenhouse and the garden to check minimum temperatures during the cold months when frost can be a problem and to check the maximum temperature during the daytime.


What is the oxidation state of Li in a reactant?

Minimum oxidation number: -1 Maximum oxidation number: 1 Min. common oxidation no.: 0 Max. common oxidation no.: 1 I got this of a really cool website that has alot of infromation and useful facts about each element and trust me you'll use it a lot in chemistry. www.chemicool.com

Related questions

How do I get max to min serial or What function can I use to get max to min or min to max serial?

it will orbit the sun it self and the sun will keep it in the right spot for its temperature


simple calculations?

in simple calculations we use + - ร— รท in computer like sum average min and max


How do you use venn diagram to represent the union and intersection sets?

For two sets, the Venn diagram will consist of two overlapping ovals. The area of the overlap is the intersection. The entire area of both ovals is the union.


What are Demorgans Law Also explain the use of Demorgans law with example?

The Demorgans Law includes the union, intersection, and complement in mathematics. Examples are A intersection B and B union A. Those are the basic examples.


What do the Max and Min functions do?

The MAX function gets the highest value in a range and the MIN function gets the lowest. If there were values in all the cells from A2 to A20, you could use the two functions to get the highest and lowest values in the range:=MAX(A2:A20)=MIN(A2:A20)


How can you use advanced Excel tools such as MAX and MIN?

You can use MAX to evaluate a list of thousands of sales transactions to determine quickly which day had the largest single transaction.You can use the MIN function to compare hundreds of wholesale costs to determine the lowest cost for a particular item.


How do you get the middle value of 3 integers in Dev C plus plus?

Use the median-of-three algorithm: int min (int a, int b) { return a<b?a:b; } int max (int a, int b) { return a<b?b:a; } int median_of_three (int a, int b, int c) { return max (min (a, b), min (max (a, b), c)); } Note that the algorithm does not cater for equal values which creates a problem when any two values are equal, because there are only two values to play with, neither of which can be regarded as being the middle value. If the equal value is the lower of the two values, the largest value is returned if and only if it is the last of the three values, otherwise the lowest value is returned. But when the equal value is the larger of the two values, the largest value is always returned. Lowest value is equal: Input: 0, 0, 1 = max (min (0, 0), min (max (0, 0), 1)) = max (0, min (0, 1)) = max (0, 1) = 1 Input: 0, 1, 0 = max (min (0, 1), min (max (0, 1), 0)) = max (0, min (1, 0)) = max (0, 0) = 0 Input: 1, 0, 0 = max (min (1, 0), min (max (1, 0), 0)) = max (0, min (1, 0)) = max (0, 0) = 0 Highest value is equal: Input: 0, 1, 1 = max (min (0, 1), min (max (0, 1), 1)) = max (0, min (1, 1)) = max (0, 1) = 1 Input: 1, 0, 1 = max (min (1, 0), min (max (1, 0), 1)) = max (0, min (1, 1)) = max (0, 1) = 1 Input: 1, 1, 0 = max (min (1, 1), min (max (1, 1), 0)) = max (1, min (1, 0)) = max (1, 0) = 1 The only way to resolve this problem and produce a consistent result is to sum all three inputs then subtract the minimum and maximum values: int median_of_three (int a, int b, int c) { return a + b + c - min (min (a, b), c) - max (max (a, b), c)); } Lowest value is equal: Input: 0, 0, 1 = 0 + 0 + 1 - min (min (0, 0), 1) - max (max (0, 0), 1) = 1 - 0 - 1 = 0 Input: 0, 1, 0 = 0 + 1 + 0 - min (min (0, 1), 0) - max (max (0, 1), 0) = 1 - 0 - 1 = 0 Input: 1, 0, 0 = 1 + 0 + 0 - min (min (1, 0), 0) - max (max (1, 0), 0) = 1 - 0 - 1 = 0 Highest value is equal: Input: 0, 1, 1 = 0 + 1 + 1 - min (min (0, 1), 1) - max (max (0, 1), 1) = 2 - 0 - 1 = 1 Input: 1, 0, 1 = 1 + 0 + 1 - min (min (1, 0), 1) - max (max (1, 0), 1) = 2 - 0 - 1 = 1 Input: 1, 1, 0 = 1 + 1 + 0 - min (min (1, 1), 0) - max (max (1, 1), 0) = 2 - 0 - 1 = 1 This makes sense because when we sort 0, 0, 1 in ascending order, 0 is in the middle, while 0, 1, 1 puts 1 in the middle.


What is the purpose of these functions Max Min Count?

MAX gives you the highest value in a specified range. MIN gives you the lowest value in a specified range. COUNT will count how many values there are in a specified range, ignoring cells that do not have numbers in them. You could use them like this: =MAX(A2:A20) =MIN(A2:A20) =COUNT(A2:A20)


How do you generate two random numbers in C plus plus?

#include <stdio.h> #include <stdlib.h> #include <time.h> int GetRand( int min, int max) { // Swap min and max if wrong way around. if(max<min)min^=max^=min^=max; return(rand()%(max-min+1)+min); } int main() { // Seed the random number generator with current time to ensure // random numbers are different on each run. // Note: use srand(1) to generate the same sequence on every run. srand((unsigned)time(NULL)); printf("Number from 0 to 10 : %d\n", GetRand(0,10)); printf("Number from 1 to 100: %d\n", GetRand(1,100)); return(0); }


Why would one use max-min tolerance calculation?

If you are specifying a component to a manufacturer, which has to fit into some assembly made up of components from various places, it is essential to give max-min tolerances to ensure it all fits together.


How do you print 1 to 10 number using for loop?

using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace printnumber { class Program { static void Main(string[] args) { int i; for (i = 0; i < 20; i++) { Console.Write(i); Console.Read(); } } } }


The MIN function is used to determine the highest number in a range.?

MIN is used to find the lowest number in a range. You would use MAX or LARGE to find the highest number in a range.