Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Вивчайте Exponentiation | Section
Mastering R Programming Fundamentals
Секція 1. Розділ 6
single

single

bookExponentiation

Свайпніть щоб показати меню

Note
Definition

Exponentiation is the operation of raising a number (the base) to a given power (the exponent).

In R, this operation is available in the base language and is widely used in areas such as finance, probability, and combinatorics.

Syntax

To calculate a raised to the power of n, use one of the following forms:

  • a ^ n;
  • a ** n.

Example

The number of possible outcomes when rolling three dice is calculated as 6 ^ 3, since each die has 6 outcomes.

12
# Number of possible outcomes 6 ^ 3
copy

The result is 216 possible outcomes.

Завдання

Swipe to start coding

You invested $1,000 at an annual interest rate of 13%. Calculate the total amount after 4 years using compound interest by multiplying 1000 by 1.13 raised to the power of 4.

Рішення

Switch to desktopПерейдіть на комп'ютер для реальної практикиПродовжуйте з того місця, де ви зупинились, використовуючи один з наведених нижче варіантів
Все було зрозуміло?

Як ми можемо покращити це?

Дякуємо за ваш відгук!

Секція 1. Розділ 6
single

single

Запитати АІ

expand

Запитати АІ

ChatGPT

Запитайте про що завгодно або спробуйте одне із запропонованих запитань, щоб почати наш чат

some-alt