Feature Guide: “Safe to Skip” Logic

Overview

The AttendanceTracker app uses mathematical formulas to help you manage your attendance strategically. It calculates exactly how many classes you can afford to miss while staying above your target percentage, or how many you must attend to get back on track.

Logic & Formulas

The app uses your Current Attendance (Present/Total) and your Target Percentage (set in the app, e.g., 80%) to provide advice.

1. When You Are Above Target (Safe to Skip)

If your current percentage is higher than your target, the app calculates the “buffer” of classes you can miss.

Formula:Safe to Skip = Floor( (Present / Target) - Total Classes ) Floor() is a function that rounds down to the nearest integer.

Example:

2. When You Are Below Target (Need to Attend)

If your percentage is below the target, the app calculates how many consecutive classes you need to attend to recover.

Formula:Need to Attend = Ceil( (Target * Total - Present) / (1 - Target) ) Ceil() is a function that rounds up to the nearest integer.

Example:

Disclaimer

[!NOTE] These calculations are mathematical estimates based on the data you currently have. They do not account for:

Always treat this advice as a guide and verify with your actual detailed schedule.