The car would travel 135 miles bc you multiply 81×5 and get 405 ,then divide that answer by 3
Answer:

General Formulas and Concepts:
<u>Pre-Algebra</u>
Order of Operations: BPEMDAS
- Brackets
- Parenthesis
- Exponents
- Multiplication
- Division
- Addition
- Subtraction
<u>Algebra I</u>
- Coordinates (x, y)
- Functions
- Function Notation
- Terms/Coefficients
- Exponential Rule [Rewrite]:

<u>Calculus</u>
Derivatives
Derivative Notation
Basic Power Rule:
- f(x) = cxⁿ
- f’(x) = c·nxⁿ⁻¹
Step-by-step explanation:
<u>Step 1: Define</u>
<u />
<u />

<u>Step 2: Differentiate</u>
- [Function] Rewrite [Exponential Rule - Rewrite]:

- Basic Power Rule:

- Simplify:

- Rewrite [Exponential Rule - Rewrite]:

<u>Step 3: Solve</u>
- Substitute in coordinate [Derivative]:

- Evaluate exponents:

- Divide:

Topic: AP Calculus AB/BC (Calculus I/II)
Unit: Derivatives
Book: College Calculus 10e
Answer:
1 is 27.8%
2 is 41.7%
Step-by-step explanation:
To calculate 1 there is a 10/36 chance (2, 3, 4, 5 out of possible roles of 2 - 12)
To calculate 2 there is a 15/36 chance (2, 3, 5, 7, 11 are prime)
#include <stdio.h> #include <stdlib.h>
// Function to perform division (x / y) of two numbers x and y. // without using division operator in the code. int divide(int x, int y)
{ // handle divisibility by 0. if (y == 0)
{ printf("Error!! Divisible by 0"); exit(1);
} // store sign of the result.
int sign = 1; if (x * y < 0)