Math/Excel Flashcards

1
Q

Integers

A

Positive natural numbers
0
Negative natural numbers

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Rational numbers (not integers)

A
  • terminating decimal numbers like 0.3

- non-termunating decimal numbers like 0.333…

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Irrational numbers

A

-numbers like pi and square root of 2 whose decimals do not follow a pattern and repeat forever.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Imaginary numbers

A

Complex numbers without a real component, like 0 + bi, where b is a nonzero real number

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Sintax to find how much monthly payments you would need to pay for an amount on a loan. Interest rate, # of payments, loan amount.

A

You need to know the 1) annual interest rate; 2: No of payments; and 3) loan amount to be borrowed: =PMT(B2/12,B3,B4). B2= interest rate, B3= #of Pmts, B4= amount to borrow.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Sintax to find the interest rate to negotiate for an amount to borrow.

A

You need to know the 1) # of payments; 2) Mo paymts, 3) loan amount to be borrowed’=RATE(D3,D6,D4)*12. D3= #of pmts, D6= Mo Pmt, D4 = Amount of loan all multiplied by 12.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Sintax to find the # of payments you would need to make for an amount to borrow.

A

You need to know the 1) annual interest rate; 2: Mo payments and 3) loan amount to be borrowed: ‘=NPER(F2/12,F6,F4). F2=rate by 12, F6= Mo pmts, F4= loan amount.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Sintax to find the initial amount to borrow for a certain amount to borrow.

A

Need to know the rate, # of Pmts, and Mo payment desired. ‘=PV(H2/12,H3,H6). H2 = rate by 12, H3= # of pmts, H6= Mo pmt.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Sintax to depreciate an item. Initial cost/value, Salvage value, life span.

A

=DB(B2,B3,B4,B8) where B2= inital value, B3= salvage value, B4= life span, B8= year 1 cell

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Sintax to calculate the amount to save to reach a certain amount of investment (goal). Annual interest rate the account you will earn, # of pmts, target amount.

A

=PMT(B2/12,B3,0, B4, 1). where B2 =interest rate to be earn, B3 = # of pmts, 0= no initial amount upfront, B4= target amount , 1=payment @ end of the month

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Sintax for generating random numbers:

A

1) return a random # betw 0 & 1= =RAND()
2) return a random # betw 0 & 10= =RAND()10
3) return a random WHOLE# betw 0 & 10= =INT(RAND()
10)
4) return a random# betw a specified rane= =RANDBETWEEN(#,#)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Sintax to pick a list item at random (i.e. customer ID)

A

=INDEX(B:B, RANDBETWEEN(2,count(B:B)),1). Where B:B is the range column of (i.e. customer IDs), 2= random from # 2, count(B:B) = count the random # from the column range.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

use VLOOK UP to get a random ID that has been found on file and find the name & last name.

A

=VLOOK UP(A2,B:F,3,False)= A2=cell criteria (i.e.customer ID), B:F= array of data to look at, 3= name column.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Rounding up to nearest dollar, nearest quarter & nearest five cents.

A

=ROUND(cell with # (i.e. 1.65), 0), =ROUND(cell/.25,0).25, =ROUND(cell/0.05,0).05

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

To find integers and modulus in a division

A
=INT(A2/A3)= find the whole integer of the divison of A2 and A3. 
=MOD(A2,A3)= find the reminder of the divison of A2 and A3. note is a comma separating.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Find if a number is even or odd by dividing the number by 2

A

=IF(MOD(G2,2)=0,”even”,”odd”)= if we take 36 and divided by 2 and gives us zero, then is an even number otherwise is odd#

17
Q

To bring data from a single column, a range of data, two data arrays by using INDEX

A

‘=INDEX(A1:A5,4)= from range A1 to A5 bring me the value located in row 4
‘=INDEX(data1,3,5)= from the range data bring me the value located in the row 3 and column 5 intersectaion
‘=INDEX((data1,data2),2,7)= From the name range data1 AND data2 bring me the value located at the intersection of row 2 and column 7. ONLY from data array 1.
‘=INDEX((data1,data2),2,7,2) =From the name range data1 AND data2 bring me the value located at the intersection of row 2 and column 7, from the second data array in table 2
‘=IF(ISERR(INDEX,data1,C22,C23)),”Out of data range”,INDEX(data1,C22,C23))= there is NO ROW 8 in our table data1 array

18
Q

Sintax for Look up from a table array (i.e. tax) and bring the data.

A

‘=VLOOKUP(D2,K1:L4,2,FALSE). D2= criteria is cagetory column (food, clothing),look into the tax table, bring the column 2 (rax rate),

19
Q

To avoid N/A for lookup function when data is not represented/missing you want to enter a 0 zero rather that N/A

A

‘=IF(ISNA(Vlookup(b2,$j$3:$m$7,2,False)),0,Vlookup(B2,$J$3:$M$7,2, False)). This formula IF IS NA nested is very effective to check the vlookup and maintain data integrity. it will return a 0 if the data does not exist

20
Q

VLookup Sintax simple

A

VLookUP: (Criteria, look up table, column to return, True/False)

21
Q

HLookup Sintax

A

HLookUP (Criteria,lookup table, column to return, T/F) This is used for horizontal formated data values as tables

22
Q

nested VLook/Hlook up

A

‘=VLOOKUP(B13,empLU,HLOOKUP(A13,dateLU,2,FALSE),FALSE). Secction #3 - Lecture# 21