Week 1 of Sophmore Year

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/55

flashcard set

Earn XP

Description and Tags

These flashcards are sourced from the notes taken on week 1 of my Sophomore year at college

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

56 Terms

1
New cards

Vector

An arrow that shows the direction & magnitude of a force

2
New cards

Zero vector

a vector with a magnitude of 0 and no direction

3
New cards

Position vector

A vector whose tail is at (0,0) and whose head is the vector components

4
New cards

Magnitude for a Vector

sqrt(U1²+U2²+U3²)

5
New cards

Direction of the Vector

Vector components / the magnitude of the vector

6
New cards

Vector Scalar Multiplication

C*U = <C*U1 , C*U2>

7
New cards

Vector Addition

U+V = <U1+V1 , U2+V2>

8
New cards

Charge

A fundamental electrical quantity

9
New cards

Coulomb

The unit for charge

10
New cards

Current

Amount of charge that flows through a cross sectional area per unit of time

11
New cards

Ampere

The unit for current

12
New cards

Direct Current

Current that flows in one direction

13
New cards

Alternating Current

Current that changes the direction of flow with respect to time

14
New cards

Voltage

the difference in electrical potential between two points

15
New cards

Volts

the unit for voltage

16
New cards

Current flows ______ a circuit element

through

17
New cards

Voltage goes _______ a circuit element

across

18
New cards

Power

Work per unit of time

19
New cards

Watt

Unit for power

20
New cards

if P(t) > 0?

Then power is drawn by an element

21
New cards

if P(t) < 0?

Then power is supplied by an element

22
New cards

Power is equal to…

Voltage times Current

23
New cards

Passive Sign Convention

if the current is said to flow in the same direction as the voltage potential then use a positive sign whenever voltage and current are related to one another

24
New cards

Unit Vector

A unit vector is a vector with the same direction as the original vector but with a magnitude of 1

25
New cards

Vector Notation of <a,b,c>

a*I + b*J + c*k

26
New cards

Subtracting vectors of a - b

<a1-b1,a2-b2,a3-b3>

27
New cards

Dot Product of a*b is equal to…

a1*b1 + a2*b2

28
New cards

U*V = V*U

Communtative property of the dot product

29
New cards

U*0 =

zero (0)

30
New cards

U * (V+W)

U*V+U*W

31
New cards

U*U =

U1²+U2² = ||U||²

32
New cards

Geometric interpretation of the Dot Product

U*V = ||U||*||V||*Cos(theta)

33
New cards

Wave

A oscillation that propagates through a medium

34
New cards

Transverse Waves

A wave that propagates perpendicular to the source of the oscillations

35
New cards

Longitudinal Waves

A wave that propagates parallel to the source of the oscillations

36
New cards

What is Wavelength?

The distance between two consecutive peaks in a wave

37
New cards

In general, the velocity of waves is equal to…

the wavelength divided by the period

38
New cards

The velocity of waves traveling through a cord is equal to…

the square root of the quotient of the tension force and the mass per unit length

39
New cards

The velocity of waves traveling through a inflexible solid rod is equal to…

the square root of the quotient of youngs modulus and the density of the rod

40
New cards

The velocity of waves traveling through a gas or liquid is equal to…

the square root of the quotient of the bulk modulus and the density of the liquid or gas

41
New cards

Wave number (K) is equal to…

two pi divided by the wavelength

42
New cards

Phase is the…

displacement at time = 0 and distance = 0

43
New cards

What is the mathematical representation of a wave?

D(x,t) = A*sin(k*x-Omega*t+Phi)

44
New cards

Algorithm

A set of steps for performing a task

45
New cards

Machine language

Binary code a CPU can process

46
New cards

Portability

The degree to which a programming language allows for code to be made and run on seperate computers

47
New cards

Programming language

a set of key words and programs that convers written words into machine language

48
New cards

Source Code

Code written by a programmer

49
New cards

Source file

file that contains source code

50
New cards

Preprocessor

A program that searches for keywords and characters that call for the source code to be modified

51
New cards

Complier

A program that translates the modified source code into machine language

52
New cards

Object Code

Code that is translated into machine language

53
New cards

Linker

A program that links object code to a library of programs that run basic functions and operations

54
New cards

executable code

Code that is able to be run on a computer

55
New cards

Variables

A storage location in a computers memory that holds a piece of data

56
New cards

Variable Definition

A statement that defines a variables type