Answer:
(0,2)(1,-4)((-1,8)
Step-by-step explanation:
Answer:
With Two points is enough to describe this graph
![\left[\begin{array}{ccc}\frac{4}{6} &0\\0&-4\\\end{array}\right]](https://tex.z-dn.net/?f=%5Cleft%5B%5Cbegin%7Barray%7D%7Bccc%7D%5Cfrac%7B4%7D%7B6%7D%20%260%5C%5C0%26-4%5C%5C%5Cend%7Barray%7D%5Cright%5D)
Step-by-step explanation:
Interception with Y axis (y=0), thus we have the following equation:


The point for this is (4/6 , 0)
Interception with x axis (x=0), thus we have the following equation:


The point for this is (0, -4)
Answer: 0
Explanation:
-1/2n -(-1/2n)
= -1/2n + 1/2n
= 0
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);
}
}