Answer:
T = 530N + 250
Step-by-step explanation:
For the first plan, Heather will deposit $250 and then save $135 per month.
So, that is 250 + (135 x N) where N is the number of months she saves the $135.
So if it is for 3months,
We will have:
t¹ = 135N + 250
= 250 + (135 x 3)
= 250 + 405
= $655
For the second plan, there is no initial deposit, but she will save $395 per month.
That is 395 x N
t² = 395N
For 3months, we have 395 x 3 = $1185
Therefore the total for both plans in 3months = 655 + 1185 = $1840
Equation relating T to N
T = t¹ + t²
T = (135N + 250) + 395N
T = 135N + 250 + 395N
T = 530N + 250
Answer:
Area of the rhombus will be a repeating decimal.
Step-by-step explanation:
In a terminating decimals, numbers get terminated after decimal like
1/4 = 0.25
while in repeating decimals, numbers get repeated after decimal like
1/3 = 0.33333
When we multiply two decimals which are repeating and terminating decimals the result will be a repeating decimal.
Therefore area of the rhombus will be a repeating decimal.
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);
}
}
Answer:
71°
Step-by-step explanation:
The triangle shown is an isosceles triangle. Isosceles triangles have two equal sides and two equal angles. When all 3 angles are added, it should have a sum of 180°. The tip of the triangle is the part of the triangle with the smallest degree/angle. So the two remaining angles are the same amount.
180°=38°+x+?
180°=38°+71°+71°
Both missing angles are the same degree, and when both are added to 38, it has a sum of 180. x is equal to 71°.
Answer:
0
Step-by-step explanation:
When we have 2 points, we can find the slope from
m = (y2-y1)/(x2-x1)
= (9-9)/(9--1)
= 0/(9+1)
= 0/10
0