Notes, summaries, assignments, exams, and problems for University

Sort by
Subject
Level

Exercise Physiology: Antioxidants, Fatigue, and Body Composition

Classified in Biology

Written on in English with a size of 8.38 KB

Antioxidants and Exercise

Key antioxidants include Vitamin C, Vitamin E, Carotenoids, Glutathione (GSH), and Coenzyme Q10 (Q10).

Enzymatic Antioxidant Systems

  • Superoxide Dismutase (SOD)
  • Catalase
  • Glutathione Peroxidase

Functions of Antioxidants

  • Neutralize free radicals by donating electrons (e-) and hydrogen ions (H+).
  • Decrease lipid peroxidation both at rest and after exercise.
  • Note: Supplementation may not necessarily decrease overall oxidative stress markers.
  • Note: Vitamin E supplementation does not appear to decrease neutrophil count after exercise.

Benefits and Roles of Oxidative Species

  • Reactive Oxygen Species (ROS) and Reactive Nitrogen Species (RNS) are important for cellular development, function, and as stimuli (cellular messaging) – involved
... Continue reading "Exercise Physiology: Antioxidants, Fatigue, and Body Composition" »

Crafting Effective Apology Letters and Emails

Classified in Medicine & Health

Written on in English with a size of 4.77 KB

In professional and personal contexts, knowing how to write a sincere and effective apology is crucial. This document outlines key elements and provides an example to help you master the art of apology communication.

Key Elements of an Apology Letter or Email

A well-structured apology addresses the issue clearly, expresses genuine regret, explains the situation, outlines corrective actions, and offers appropriate compensation or goodwill gestures.

Introduction: Acknowledging the Issue

  • Thank you for your letter...
  • I was sorry to hear that...
  • Thank you for bringing this matter to our attention.

Apology: Expressing Regret

  • I can only apologize for...
  • Please accept my sincere apologies (for...).
  • We apologize for any inconvenience caused / for the inconvenience.
... Continue reading "Crafting Effective Apology Letters and Emails" »

Mastering English Grammar: Key Concepts and Examples

Classified in English

Written on in English with a size of 4.08 KB

Have/Get Something Done: Subject + have/get (in the appropriate tense) + object + past participle
Should Have Done: (have + past participle) It’s raining; I should have taken an umbrella.
The guest is very angry; the receptionist should have apologized.
The chambermaid shouldn’t have left the door unlocked.
The travel agent shouldn’t have recommended that package tour.
Should have been + past participle
The shuttle bus should have been repaired.
The carpet should have been vacuumed.
Linking Words
But (“pero”): The weather was awful, but the tourists went to the beach.
Although, Though, and Even Though: Although/Though the weather was awful, the tourists went to the beach.
The weather was awful. The tourists went to the beach, though.
Even though
... Continue reading "Mastering English Grammar: Key Concepts and Examples" »

Practical English for Travel & Daily Communication

Classified in English

Written on in English with a size of 3.89 KB

Making Recommendations and Suggestions

To recommend or suggest something, you can use the structure: I (would/may/might/can) + recommend/suggest + noun (or phrasal noun) / -ing form.

Examples of Recommendations:

  • I recommend/suggest going to the Italian restaurant on the corner. They say the food's delicious.
  • Why don't you try taking the sightseeing bus? You'll see the most important sites.
  • How about hiring a bicycle? It's great fun.
  • What about going for a walk around the old part of the town?
  • Have you thought of renting a car? You can see more like that.

Giving Directions

Here are common phrases used when giving or asking for directions:

  • Turn right (at…) / Turn left (at…)
  • Take the first street on your right.
  • Take the second turning on the left.
  • Go straight
... Continue reading "Practical English for Travel & Daily Communication" »

Communicative Competence in English: Acquisition, Learning, and Teaching Methods

Classified in Teaching & Education

Written on in English with a size of 5.21 KB

Communicative Competence in English

Acquisition, Learning, and Teaching Methods

Communicative competence is the main objective in English language learning. It involves developing several subcompetences:

  1. Linguistic: Understanding and using vocabulary, grammar, and syntax.
  2. Strategic: Using techniques to overcome language gaps and modify text for audience and purpose. Acquiring conversational fluency.
  3. Socio-linguistic: Having knowledge of the social rules of language, non-verbal behaviors, and cultural references.
  4. Discourse: Understanding how ideas are connected through patterns of organization, cohesive, and transitional devices.

Block of Contents

  1. Oral texts comprehension (Listening).
  2. Oral texts production, expression, and interaction (Speaking).
  3. Written
... Continue reading "Communicative Competence in English: Acquisition, Learning, and Teaching Methods" »

Syrian Refugee Crisis: Impact on Europe

Classified in Geography

Written on in English with a size of 2.43 KB

Refugee Movements: The Syrian Crisis

The Worst European Humanitarian Crisis Since WWII

The current situation of Syrian refugees is the worst European humanitarian crisis since World War II. Thousands of people are fleeing the war in the Middle East, crossing the Mediterranean Sea, and seeking refuge in Europe. Many have died trying to reach European shores, and those who have arrived now face a lack of aid from the EU.

The Origins of the Conflict

The conflict's origin can be traced back to the Arab Spring of 2010, when numerous conflicts erupted between populations and dictators in several countries. While Tunisia and Egypt saw changes in their governments, the dictators of Libya and Syria refused to relinquish power.

The Wars in Libya and Syria

This... Continue reading "Syrian Refugee Crisis: Impact on Europe" »

Cell Biology: Actin, Myosin, and Microtubules

Classified in Biology

Written on in English with a size of 2.52 KB

Polymerization –plus and minus ends of actin, Kd, critical concentration, phases of growth of polymers (lag, growth, and steady-state), nucleating factors, why growth occurs preferentially at plus end.

a.High Kd and Cc= ADP + Factin lower affinity actin so dissociate

b.Lower kd and Cc= Gactin/Factin + ATP higher affinity actin so dissociate

c.Profilin and thymosin: Profilin binds to (-) end = plus end grow fast

d.Thymosin buffer + actin monomer = prevent polymerization or ATP hydrolysis.

e.Actin monomer (is above Kd) & regulates actin filament assembly.

Arp2/3 comples to make a seed (nucleate) acting growth. Can create tree-like web

Myosin II structure: motor protein makes force in skeletal contraction muscles.

a.Heavy chain with NT head (ATPase... Continue reading "Cell Biology: Actin, Myosin, and Microtubules" »

Java Generic Linked Queue Implementation (FIFO)

Classified in Spanish

Written on in English with a size of 8.2 KB

Java LinkedQueue Implementation (Generic)

This document presents the source code for a generic LinkedQueue class in Java. This implementation uses a singly linked list structure, adheres to the FIFO (First-In, First-Out) principle, and implements the Iterable interface.


package org.mp.repaso;

import java.util.Iterator; import java.util.NoSuchElementException;

public class LinkedQueue<T> implements Iterable<T> {

<span style="color:#ba2da2">private int</span> N; <span style="color:rgb(0,132,0)">// Tamaño de la cola</span>
<span style="color:rgb(186,45,162)">private</span> Node&lt;T&gt; primero; <span style="color:rgb(0,132,0)">// Primer elemento de la cola (Head)</span>
<span
... Continue reading "Java Generic Linked Queue Implementation (FIFO)" »

Derivatives and Limits: Rules, Properties, and Common Identities

Classified in Greek

Written on in English with a size of 2.07 KB

Derivadas

derivative rules

der(xa) = a . xa-1

der(a) = 0

(f+-g)' = f' + g'

(a.f)' = a .f'

(f/g)' = ((f'.g-g'.f)/g2)

der( ln(x) ) = 1/x

der( ln|x| ) = 1/x

der( ex) = ex

der( log(x) ) = 1/(x.ln(10))

der( loga(x) ) = 1/(x.ln(a))

common limits

limx->cf(x) = ∞

limx->cg(x) = L

limx->c[f(x) +- g(x)] = ∞

limx->c[f(x) . g(x)] = ∞, L>0

limx->c[f(x) . g(x)] = - ∞, L<0

limx->∞(1 + k/x)x = ek

limx->∞[axn] = ∞, 0

limx->0(1 +x)1/x = e

Trigonometria

basic identities

tan(x) = sin(x)/cos(x)

cot(x) = cos(x)/sin(x)

sec(x) = 1/cos(x)

csc(x) = 1/sin(x)

pythagorean identities

sin(2x) = 2 sin(x)cos(x)

cos(2x) = 1 - 2.sin2(x)

tan(2x) = 2tan(x) / 1-tan2(x)

sin(x) | -1<= y <= 1 | arcsin(x) | - (π/2) <= y <= π/2

cos(x) | -1<= y <= 1 | arccos(

... Continue reading "Derivatives and Limits: Rules, Properties, and Common Identities" »

Common English Phrasal Verbs and Their Meanings

Classified in English

Written on in English with a size of 4.67 KB

Blow away
Impress somebody a lot.
Break down
Stop working because something has broken.
Build up
Create or develop something.
Call off
Cancel something.
Carry on
Continue doing something.
Catch up
Meet up or find out the latest news.
Catch up with
Reach somebody who is ahead.
Check in
Go to a desk at an airport or hotel to say you have arrived.
Check out
Visit somewhere or find out more information about it.
Chill out
Spend time relaxing.
Come across
Find something by chance.
Come up with
Think of or suggest an idea or a plan.
Count on
Be confident you can depend on someone or something.
Cut down on
Reduce the size, amount, or number of something.
Deal with
Solve a problem or do something necessary.
Dress up
Put on special clothes.
End up
Be in a situation or place you did
... Continue reading "Common English Phrasal Verbs and Their Meanings" »