Notes, summaries, assignments, exams, and problems

Sort by
Subject
Level

English-Spanish Vocabulary for Sports, Success, and Relationships

Classified in Spanish

Written on in English with a size of 6.13 KB

Sports and Success

English - Spanish

A - E

Astounding - asombroso

Award - prem

Balance - equilibrio

Championship - campeonato

Defeat - derrotar a

Drill - rutina de ejercicios

Eager - ansioso

F - J

Feat - hazaña

In good shape - en buena forma

Jump the gun - adelantarse a los acontecimientos

Keep fit - mantenerse en forma

L - P

Leap - saltar

Learn the ropes - aprender a hacer el trabajo

Move the goalpost - cambiar las reglas

On the ball - al tanto

Opponent - contrincante

R - U

Rank - clasificar

Reluctant - reacio

Role model - modelo a seguir

Runner up - subcampeon

Setback - revés

S - Z

Strike - pegar

Surpass - superar a

Take off - empezar a tener éxito

Teammate - compañero de equipo

Work one's way up - subir puestos

Work out - entrenar

Idioms and Expressions

A - E

Allowance... Continue reading "English-Spanish Vocabulary for Sports, Success, and Relationships" »

Mastering Public Speaking: Rhetoric and Speech Techniques

Classified in Spanish

Written on in English with a size of 4.5 KB

**Objectives of Oratory**

  • Docere (to teach/logos)
  • Delectare (to win over/ethos)
  • Movere (to move/pathos)

**Invention**

Think about the context of the speech, research, and find examples.

**Disposition** (to order)

  • Exordium (introduction): Captatio benevolentiae (ethos): capture interest
  • Narratio (exposition of facts): basic information
  • Partitio (exposition of points of agreement and disagreement): outline of the speech
  • Confirmatio (exposition of arguments): body of the speech (logos)
  • Reprehensio (refutation of other arguments)
  • Conclusio: powerful ending

**Elocution**

Clear, simple, elegant. Three types of register:

  • Simple (class)
  • Medium (judgment)
  • Elevated (meeting)

**Memory**

Memorize, use quotes, do not read.

**Action**

Voice, hand, body, clothing.

**Figures of

... Continue reading "Mastering Public Speaking: Rhetoric and Speech Techniques" »

C Code Examples: Data Structures and Algorithms

Classified in Computers

Written on in English with a size of 5.54 KB

Recursive Binary Tree Traversals

Inorder Traversal:

void inorder(struct node *root)
{
  if(root != NULL)
  {
    inorder(root->left);
    printf("%d\t", root->data);
    inorder(root->right);
  }
}

Preorder Traversal:

void preorder(struct node *root)
{
  if(root != NULL)
  {
    printf("%d\t", root->data);
    preorder(root->left);
    preorder(root->right);
  }
}

Postorder Traversal:

void postorder(struct node *root)
{
  if(root != NULL)
  {
    postorder(root->left);
    postorder(root->right);
    printf("%d\t", root->data);
  }
}

Linked List Operations

Search

void search(struct node *head,int key)
{
  struct node *temp = head;
  while(temp != NULL)
  {
    if(temp->data == key)
      printf("key found");
    temp =
... Continue reading "C Code Examples: Data Structures and Algorithms" »

Structure of the Atom, Chemical Reactions, and Acids and Bases

Classified in Chemistry

Written on in English with a size of 6.54 KB

Structure of the Atom

Protons, Electrons, and Neutrons

Protons: Equal to the atomic number

Electrons: Equal to the atomic number

Neutrons: Equal to the atomic mass minus the atomic number

Bohr-Rutherford Diagram

Electron shells: 2, 8, 8, 18, 18, 32

Counting Atoms

Example 1: Na2CO3

  • Sodium (Na): 2
  • Carbon (C): 1
  • Oxygen (O): 3

Example 2: 4Al2(CO3)3

  • Aluminum (Al): 4 x 2 = 8
  • Carbon (C): 3 x 4 = 12
  • Oxygen (O): 9 x 4 = 36
  • Total: 56

Ions and Ionic Compounds

Ions are atoms that have either lost or gained electrons. While atoms are neutral, ions are charged particles.

ewfrdTqcdxAquqFBkomrXMx9bFnEuaUxChHhj7q-MJTBd5Xs--2C7wkxp6qSa6EtbS0IhSpG6LqWdrNTeiCxeYbVa-Q1VQCvGbB9f6su3HmGH-ttX74IZ1pY4XhNqS5XTpRYk5EO3cP9R4Uk4nDTj90

LQQZ-6Sp_dRlryuqGpFcY8LvG0bWbg05f1ks-w282Z3uZ1yz1zecnXF6L2XMweeDCRxiH9UVzCj1bd5Qvi0xgskH1OCOndSC8StycLi4gQQY4BLgAm4wiGxk6MQ7khX-8MllYGt5C24gWhOdzYIHj78

Ionic Compounds are a combination of a cation (positive ion) and an anion (negative ion), typically formed between a metal and a nonmetal.

Example: Calcium Chloride (CaCl2)

Calcium (Ca+2) has a charge of +2,... Continue reading "Structure of the Atom, Chemical Reactions, and Acids and Bases" »

Thyristors, MOSFETs, and IGBTs: Construction and Advantages

Classified in Electronics

Written on in English with a size of 244.18 KB

SCR Construction

A thyristor, or SCR, consists of four P-N-P-N layers and has three PN junctions (J1, J2, J3) in series. It has three terminals: Anode, Cathode, and Gate. The Gate terminal is attached to the P-type layer near the Cathode terminal. The two-transistor model shows that an SCR is a combination of one PNP transistor and one NPN transistor.

2Q==

The emitter of the PNP transistor is taken as the Anode terminal, the emitter of the NPN transistor is taken as the Cathode, and the base of the PNP is taken as the Gate terminal. The base of the PNP is connected to the collector of the NPN, and the collector of the PNP is connected to the base of the NPN transistor.

Advantages of SCRs:

  • Easy to turn ON
  • Can handle large voltage, current, and power
  • Possible
... Continue reading "Thyristors, MOSFETs, and IGBTs: Construction and Advantages" »

English Grammar Exercises

Classified in Medicine & Health

Written on in English with a size of 4.47 KB

Modal Verbs Exercises

Exercise 1: Rewrite the sentences using modal verbs.

  1. It's forbidden to drive without fastening your seatbelt. You mustn't drive without fastening your seatbelt.
  2. Perhaps they told John about the party. They might have told John about the party.
  3. It isn't necessary for us to book a table. We needn't book a table.
  4. It isn't necessary for her to phone me back. She needn't phone me back.
  5. It was a mistake to sell the house. I wish I hadn't. I shouldn't have sold the house.
  6. I'm sure he didn't lock the door. He couldn't have locked the door.
  7. Perhaps John knew about the trip. He could have known about the trip.
  8. You cannot smoke in the underground. You mustn't smoke in the underground.
  9. I'm sure Ann didn't send that letter. Ann couldn't have
... Continue reading "English Grammar Exercises" »

Understanding Robot Kinematics: Parameters, Joints, and Links

Classified in Design and Engineering

Written on in English with a size of 259.71 KB

Robot Kinematics

A+EfUlJFo1TKwAAAABJRU5ErkJggg==

Euler’s Rotation Theorem

Any rigid body motion that leaves one point fixed can be represented by a single rotation about an axis through the fixed point.

Chasles’ Theorem

Any rigid body motion is the translation of a designated point & a rotation of the whole body about that point.

Kinematic Parameters

These parameters are associated with the kinematic configuration of each link and joint of the robot arm. There are four main kinematic parameters:

Joint Parameters

The relative position and orientation of two successive links can be specified by two joint parameters:

  • Joint Angle (θk): The amount of rotation about zk-1 so that Xk-1 is parallel to Xk.
  • Joint Distance (dk): The amount of translation along the Zk-1 needed to make
... Continue reading "Understanding Robot Kinematics: Parameters, Joints, and Links" »

Hedging and Speculation with Futures and Options

Classified in Economy

Written on in English with a size of 5.06 KB

Hedging with S&P 500 Index Futures

SIF hedging: NF = VF(antiguo) = Fo x Z. NF (Number of contracts) = Vp (portfolio value) / (VF x Bp) (Beta). With this hedge, risk is removed. If the index goes up, the profit in the portfolio will be offset by losses in SIFs contracts and vice versa.

Example: S&P 500 falls 5%:

  • In the portfolio: Rp = Bp x (-5%) = -10% of a portfolio of $10M, resulting in $9M (Final Value).
  • In the SIFS contracts: Si = 980 (S&P 500 value given) x 0.95 (100% - 5%) = 931. Fi = 931 x (1 + 0.04 x 5/12 (next month timeframe)) = 946.52. VF = NF x (Fi - Fo) x Z (250).
  • Gain on futures: VF(New) / Equity portfolio value.
  • Outcome stock portfolio: 2 x (-5%) = -10%.
  • Final Value portfolio: $10M - $1M + VF(New).

Margin Payments

Margin payments... Continue reading "Hedging and Speculation with Futures and Options" »

Japan's Post-War Economic Growth: Key Factors

Classified in Economy

Written on in English with a size of 2.98 KB

Theme II: The Development of the Global Economy

5. Japan's Post-War Economic Growth

I. Role of Government

  • Growth-driven policies and focused leadership
    • The Liberal Democratic Party (LDP) mostly ruled after 1955.
    • A cohesive unity of bureaucrats and politicians made up competent policymakers focused on achieving economic development and self-reliance.
    • Tight policy coordination was known as the "Iron Triangle."
    • The Yoshida Doctrine was implemented in the early 1950s.
    • Ikeda's Income Doubling Plan was introduced in the early 1960s.
    • Sato's Three Non-Nuclear Principles were established in the early 1970s.
  • Heavy government involvement in the free market
    • The Ministry of International Trade and Industry (MITI) decided, charted, and planned Japan's industrial and
... Continue reading "Japan's Post-War Economic Growth: Key Factors" »

Spreadsheet Basics and Text Editing Tips

Classified in Computers

Written on in English with a size of 2.15 KB

Unit 14: Moving Text

Cutting and Pasting

Anna: Ben, do you know how I can move this paragraph? I want to put it at the end of this page.

Ben: I think so. First, select the text with your mouse. Then, choose "Cut" from the Edit menu.

Anna: Like this?

Ben: Yes. The text disappears and is copied to the Clipboard. Click where you want the text to go.

Anna: Okay. Is that right?

Ben: Yes, if that's the correct spot. Next, choose "Paste" from the Edit menu, or press CTRL+V.

Anna: Okay, done. Is that all?

Ben: Yes. If you make a mistake, choose "Undo" from the Edit menu to reverse your last action.

Anna: Brilliant! Thanks!

Ben: You're welcome.

Unit 15: Spreadsheet Fundamentals

Introduction

Let's start with the basics. Spreadsheets are used in business for financial... Continue reading "Spreadsheet Basics and Text Editing Tips" »