The associative property of real numbers is shown in the number expression 3 + ((-5) + 6) = (3 + (-5)) + 6
<h3>What is an arithmetic operation?</h3>
It is defined as the operation in which we do the addition of numbers, subtraction, multiplication, and division. It has a basic four operators that is +, -, ×, and ÷.
We have a number expression:
= 3 + ((-5) + 6) = (3 + (-5)) + 6
As we know in the associative property:
a + (b + c) = (a + b) + c
= (3 + (-5)) + 6
Thus, the associative property of real numbers is shown in the number expression 3 + ((-5) + 6) = (3 + (-5)) + 6
Learn more about the arithmetic operation here:
brainly.com/question/20595275
#SPJ1
Answer:
12/20
Step-by-step explanation:
Answer:
H: (2, 14)
O: (4,15)
U: (6,14)
S: (2,10)
E: (6,10)
Step-by-step explanation:
the image on the grid is after doin x- 1 and y-7
to get the preimage do the inverse , x + 1 , y + 7
note- a coordinate is written as (x,y)
so, add 1 to all the x's and 7 to all the y's on the coordinates on the grid!
and sorry for asking but, if this is right could i please get a thanks & brainliest recently a moderator deleted ALL my answers (over 400 answers) causing me to lose over 3k points so id appreciate it alot thanks xoxo
Answer:
public class MovieRental
{
public static void main(String[] args)
{
Scanner in = new Scanner(System.in);
System.out.print("Enter the number of movie rentals: ");
int movieRentals = in.nextInt();
System.out.print("Enter the number of members referred to the video club: ");
int memberReferral = in.nextInt();
in.close();
double discountVal = Math.min(movieRentals + memberReferral, 75);
System.out.println("The discount is equal to: " + discountVal);
}
}