Answer:
The correct answer is
Z⁶Y³/Z⁶Y⁴ = 1/Y
Step-by-step explanation:
<u>Points to remember</u>
1). xᵃ * xᵇ = xᵃ⁺ᵇ
2). xᵃ/xᵇ = xᵃ⁻ᵇ
3). x° = 1
4). x⁻ᵃ = 1/xᵃ
The given expression is Z⁶Y³/Z⁶Y⁴
<u>To find the simplification of expression</u>
Z⁶Y³/Z⁶Y⁴ = Z⁶⁻⁶ * Y³⁻⁴
= Z° * Y⁻¹ = 1 * 1/Y = 1/Y
Therefore the value of given expression Z⁶Y³/Z⁶Y⁴ is 1/Y
Answer:
The average mass of a group of children is 50 kilograms. Todd, who has a mass of 62 kilograms, then joins the group. This raises the average mass of the group to 52 kilograms. How many children were in the original group
Step-by-step explanation:
NB- Solution is emboldened
import java.util.Scanner;
import java.util.Random;
public class RandomGenerateNumbers {
public static void main (String [] args) {
Random randGen = new Random();
int seedVal = 0;
seedVal = 4;
randGen.setSeed(seedVal);
System.out.println(randGen.nextInt(50) + 100);
System.out.println(randGen.nextInt(50) + 100);
return;
}
}