2025-12-26

Introduction

This application is a simple Shiny app that allows users to enter a number and instantly see its square and cube.

The goal is to demonstrate basic reactivity in Shiny.

Problem Statement

Many beginners struggle to understand how user input is processed and updated dynamically in Shiny applications.

This app solves that problem using a very simple numeric example.

Application Overview

Features: - Numeric input box - Server-side calculations - Reactive output display - Beginner-friendly user guide

The app is easy to use and requires no prior technical knowledge.

Example Calculation (R Code)

x <- 4
square <- x^2
cube <- x^3

square
## [1] 16
cube
## [1] 64