1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Charra [1.4K]
3 years ago
5

Given the following sets, for each set operation provide the elements of the resulting set in set notation or using a well-known

set, i.e. N, the set of natural numbers
Z, the set of all integers
Z+, the set of all positive integers
Z-, the set of all negative integers
A, the set of all integers evenly divisible by 3
B={4, 5, 9, 10 }
C={12,4,11,14)
D={3,6,9}
E= {4,6, 16}

a. B U C
b. A ⋂ D
c. A⋂C
d. (B+D)+E
e. AUE
f. E-D
g. D-E
h. (Z- Z+)- Z
Computers and Technology
1 answer:
Sveta_85 [38]3 years ago
5 0

Answer:

Check the explanation

Explanation:

Z -> the set of all integers

Z+ -> the set of all positive integers

Z- -> the set of all negative integers

A -> the set of all integers evenly divisible by 3

B -> {4,5,9,10}

C -> {2,4,11,14}

D -> {3,6,9}

E -> {4,6,16}

Questions:

a. B U C

   Answer: {2,4,5,9,10,11,14}

b. A ∩ D

   Answer: {3,6,9}

c. A ∩ C

   Answer: {} or null set or ∅

d. (B⊕D) ⊕ E

   Answer:

   A ⊕ B denotes the Symmetric difference between A and B.

   The result of the operation is the elements that in either of the sets but not in their intersection.

   For the question

   B -> {4,5,9,10}

   D -> {3,6,9}

   Elements that are not in the intersection of the two sets that are.

   {3,4,5,6,10} here 9 is omitted because it is present in both the sets.

   {3,4,5,6,10} ⊕ E

   E -> {4,6,16}

   The result will be {3,5,19,16} here 4,6 are the intersection of both sets.

   So the answer is {3,5,19,16}

e. A U D

   Answer: the set of all integers divisible evenly by 3.

f. E – D

   Answer: {4,16}

g. D – E

   Answer: {3,9}

h. (Z – Z+) – Z-

   Answer: (Z – Z+) means remove all the integers from Z that are present in     Z+ which results all the negative integers and 0.

   ({0,Z-} – Z- ) results in {0}.

   So the final answer is {0}

You might be interested in
1. A cell is identified by its ........
earnstyle [38]
Answers:
1- cell address ( i think)
5 0
3 years ago
You are an interior decorator, confronted with a dark living room. To lighten the room up, you have n candles and want to build
user100 [1]

Answer:

a)

Algorithm to find a solution of min. cost

Function:cost(Graph G,Graph G1);

GC --> empty graph

for i in edges E:

if E(i,j) in G:

c(i,j)=c(i,j)

else if E(i,j) in G1:

c(i,j)=-c(i,j)

Function:Mincost(Graph G):

GC=Cost(G,G1)

while(negativecycle(GC)):

Update residal graph(G1)

GC=Cost(G,G1)

mincost=sum of Cij*F(i,j)

return mincost;

Explanation:

a)

1) Start the program

2) Read the no. of edges and vertices and also read the cost of the two nodes.

3) Find the min cost by travelling to the destination i.e.. finding all possible min. cost values.

4) Compare the all possible min.cost values

5) And display the least min. cost

6) Stop the program

b)

<u>Correctness of algorithm</u>

1)Here in these algorithm we are calculating all the possible cases.

2)These algorithm also supports the negative cost.

3)These algorithm occupies more space.

4)Takes less time

5)so,these algorithm provides the cost efficient solution very effectively.

c)

<u>Run Time Analysis</u>

1) While reading the values during the run time the program execution will stop until user provides the values.

2) Based on the User input Output vary.

3) Time consumption and space consumption is depends on the no. of inputs the user is given.

6 0
4 years ago
Electronic résumés have an attractive, highly formatted appearance. please select the best answer from the choices provided t f
Len [333]

An electronic resume can carry so much data about the person, and it includes images also. Then the statement is true.

<h3>What is an electronic resume?</h3>

An electronic resume is termed as a resume that is read by a computer program that summarizes the information of each person.

The electronic resume has the data such as their parent name, education, skills, job experience, hobbies, languages, and so on.

Thus, the photo of the document about the project or internship that has been done in the past can be given on the electronic resume by uploading the certificate on the computer system along with the resume.

For example, in companies like Linkedin, and so on there are many companies that ask about the person before creating an account.

More about the electronic resume link is given below.

brainly.com/question/2798964

4 0
2 years ago
Read 2 more answers
Write a recursive method named binarySearch that accepts a sorted array of integers and an integer target value and uses a recur
djyliett [7]

Answer:

10

-1

Process finished with exit code 0

Explanation: see code bellow

public class BinarySearchRecursive {

   public static int binarySearch(int[] a, int key) {

       return binarySearchRecursiveHelper(a, key, 0, a.length - 1);

   }

   public static int binarySearchRecursiveHelper(int[] arr, int target, int start, int end) {

       if (start > end) {

           return -1;

       }

       int mid = (start + end) / 2;

       if (arr[mid] == target) {

           return mid;

       } else if (target < arr[mid]) {

           return binarySearchRecursiveHelper(arr, target, start, mid - 1);

       } else {

           return binarySearchRecursiveHelper(arr, target, mid + 1, end);

       }

   }

   public static void main(String[] args) {

       int[] a = {-4, 2, 7, 10, 15, 20, 22, 25, 30, 36, 42, 50, 56, 68, 85, 92, 103};

       int index = binarySearch(a, 42);   // 10

       System.out.println(index);

       index = binarySearch(a, 66);   // -1

       System.out.println(index);

   }

}

6 0
3 years ago
True and False(Total points: 10)
Gwar [14]

Answer:

1.T 2.f 3.t 4.f 5.f 6.f 7.t 8.t 9.f

8 0
3 years ago
Read 2 more answers
Other questions:
  • Assume that scotus is a two-dimensional character array that stores the family names (last names ) of the nine justices on the S
    6·1 answer
  • Write a program to calculate how much to tip a waiter person based on the quality of service. The script file should ask for the
    12·1 answer
  • The code segment below uses the procedure IsPartOf (list, item), which returns true if item appears in list and returns false ot
    13·1 answer
  • How to make changes to a file on the USB drive
    6·2 answers
  • Who is the founder of javascript? ​
    14·2 answers
  • __________ use a challenge response mechanism in which a server challenges a user with a number, which a user must then enter in
    5·1 answer
  • What is human data,
    8·1 answer
  • Resize vector countDown to have newSize elements. Populate the vector with integers {newSize, newSize - 1, ..., 1}. Ex: If newSi
    6·1 answer
  • Help pweeze this is due today :(<br><br> I will give u brainliest just pweeze, I need this answer :(
    8·1 answer
  • Simple Java programming
    15·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!