answersLogoWhite

0

6 Numbers on a Die

User Avatar

Wiki User

14y ago

Still curious? Ask our experts.

Chat with our AI personalities

CoachCoach
Success isn't just about winning—it's about vision, patience, and playing the long game.
Chat with Coach
BeauBeau
You're doing better than you think!
Chat with Beau
FranFran
I've made my fair share of mistakes, and if I can help you avoid a few, I'd sure like to try.
Chat with Fran

Add your answer:

Earn +20 pts
Q: What is 6 n on a d short for?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Math & Arithmetic

What is the nth term of the arithmetic sequence of 6 12 18 24..?

The nth term of an AP with initial term a (= u{1}) and common difference d is given by: u{n} = a + (n - 1)d In this case: a = 6 d = (12 - 6) = 6 → u{n} = 6 + (n - 1)6 But this can be simplified: u{n} = 6 + (n - 1)6 = 6 + 6n - 6 = 6n


Denominator of a rational no is greater than its numerator by 7 if the denominator is decreased by 6 and the numerator is increased by 17 the new no becomes 2 what is the original no.?

d = n + 7 and (n + 17)/(d - 6) = 2 so (n + 17)/ n + 7 - 6 = 2 (n + 17)/(n + 1) = 2 2n + 2 = n + 17 n = 15 and d = 22 Check n + 17 = 32, d - 6 = 16, 32/16 = 2 Original number is 15/22


How many ways can you make change for a dollar using nickels dimes andor quarters?

There are 22 ways to make change from a dollar using nickels, dimes, and quarters. 1. 4 q 2. 10 d 3. 20 n 4. 2 q , 5 d 5. 3 q , 2 d , 1 n 6. 1 q , 7 d, 1 n 7. 9 d, 2 n 8. 8 d, 4 n 9. 7 d, 6 n 10. 6 d , 8 n 11. 5 d , 10 n 12. 4 d , 12 n 13. 2 d , 16 n 14. 1 d , 18 n 15. 5 n , 3 q 16. 3 n , 1 q , 6 d 17. 7 n , 1 q , 4 d 18. 9 n , 1 q , 3 d 19. 11 n , 1 q , 2 d 20. 13 n , 1 q , 1 d 21. 14n , 3 d 22. 15n , 1 q


A faction in witch the numbers is greater than or equal to the denominator?

Suppose the number is n/d. Then n/d >= d => n <= d2 if d < 0 or n >= d2 if d > 0.


How can you write a c program to find maximum element in row and minimum element in column of a matrix?

#include <stdio.h> main() { int m, n, c, d, A[10][10],temp=0; printf("\nEnter the number of rows and columns for matrix A:\n"); scanf("%d%d", &m, &n); printf("\nEnter the elements of matrix A:\n"); for ( c = 0 ; c < m ; c++ ) for ( d = 0 ; d < n ; d++ ) scanf("%d", &A[c][d]); printf("\nMatrix entered is:\n"); for ( c = 0 ; c < m ; c++ ) { for ( d = 0 ; d < n ; d++ ) printf("%d\t", A[c][d]); printf("\n"); } printf("\n\nMaximum element of each row is:\n"); for(c=0;c<m;c++) { for(d=0;d<n;d++) { if(A[c][d]>temp) temp=A[c][d]; } printf("\n\t\tRow %d: %d",c+1,temp); temp=0; } temp=A[0][0]; printf("\n\nMinimum element of each coloumn is:\n"); for(c=0;c<n;c++) { for(d=0;d<m;d++) { if(A[d][c]<temp) temp=A[d][c]; } printf("\n\t\tColoumn %d: %d",c+1,temp); temp=A[d][c] ; } return 0; }