• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/25

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

25 Cards in this Set

  • Front
  • Back

Draw the first angle projection symbol in orthographic projection

Where is the front view when it comes to orthographic projection?

The front view lies in the second quadrant of projection


State the parallelogram law of vector addition

For any two vectors drawn from a common point that act as adjacent lines of a parallelogram, their resultant force is the diagonal of the parallelogram.


What would you be asked to find after finding the resultant vector?

You'd be asked to find the angle the resultant vector makes with the positive x-axis.

List the properties of a parallelogram

A parallelogram has it's sides to be equal and parallel.


The opposite angles of a parallelogram are equal.


What is a punctuation mark

A punctuation mark is an important part of English sentences that enhance their meaning or break it up.

How does punctuation marks enhance the meaning of a sentence

Punctuation marks make the context of the sentences clearer while the reader reads them.

Examples of punctuation marks

FACCS



full stop, apostrophe


Commas, colon and semi colon

Another name for fullstop

Period

Uses of fullstop

Used to end sentences and abbreviations


Used to say that there is nothing else to say about an issue.


Used after an initial or title.


Used to mark the end of an instruction.


What "Dr. Bawa" shows as an example of a use of full stop

Full stop is used to end an initial or a title

What "Kofi is a boy." shows as a use of full stop

Full stop used to show or indicate the end of a sentence.

What is the formula for finding the eigenvalues of a 3 X 3 Matrix named A

In the eigen value formula det x (A - λI) = 0, what does the A and the I represent?

A stands for the given vector and I stands for it's identity matrix

Simplify this


Find the determinants of the 3 x 3 matrix involving the λ above.

Then simplify

How do the operation signs work when finding the determants of your matrices

The first scalar multiplier has to be positive and the next becomes negative, so it just alternates.

What do you do when you meet a polynomial when finding Eigen values after finding the determinant of the eigen matrices?

Punch it into your calculator and three roots or values are the eigen values of the given matrice in the question.

What do you do after finding eigen values?

You find Eigen vectors that correspond to each of the eigen values.

What formula is used to find the eigen vectors of each eigen value?... Assuming it is vector A.

(A-λI)vectorX = Vector 0


Take information from vector A like this and use it in the formula

What do you do to the λ here when finding for the eigen value

You replace it with the λ value at the top that we are using

What do we do from here?

We convert that matrix down there to an augmented matrix like this

What is a motor

A motor is a device that converts electrical energy to mechanical energy.

How to start a node.js server?

const http = require("http");


const port = 4000;


const hostname = 127.0.0.1



const server = http.createServer((req, res) =>{


res.status = 200;


res.setHeader("Content-Type": "text/plain");


res.send("Hello World");


});



server.listen(hostname, port, () => {


console.log(`The server is running at http://${hostname}:${port}`)


});