SAP Home Learn Build Integrate Model Operate Extend with AI ConnectTutorial navigator Knowledge Graph API Devtoberfest Developer Advocates App Space

Manage my Account SAP Devs YouTube ↗ Learnings ↗ Community ↗ Provide Feedback ↗
Logout
โคข Open full site

๐ŸŸก Devtoberfest 2026 - Week 2 - Equation Puzzle

This is the equation puzzle for Week 2 of Devtoberfest.

๐ŸŽ“beginner โฑ10 min Cloud Beginner 0/1

Overview

🎓 beginner 10 min. CloudBeginner

You will learn

  • โœ”A lot about technology โ€“ and yourself โ€“ during Devtoberfest
  • โœ”How to have fun
Daniel Wroblewski D Daniel Wroblewski July 30, 2026
Created by July 30, 2026
Contributors

Prerequisites

Steps

Intro

Here is an equation that you have to solve.

Equation
Equation

Here is the same equation written as a Python function.

Python
import math

def calculate_expression(a, b, c, d, e, f, g, h, i, j):
    """
    Evaluates the nested expression:
    [ (((sqrt(a - b) / (c - d)) + e) / f) + g ] * (h / i)**2 - j
    """
    inner_fraction = math.sqrt(a - b) / (c - d)
    middle_term = (inner_fraction + e) / f
    outer_term = (middle_term + g) * (h / i) ** 2
    
    return outer_term - j   

Answer the following questions to get values for the 10 variables, plug them in, and enter the answer below.

  • a = the year SAP was founded
  • b = decimal ASCII code for the currency symbol for US dollar
  • c = the number of founders of SAP
  • d = Second name of SAP’s ERP product for small and medium-sized enterprises, developed by a company founded by the father of former SAP CTO Shai Agassi
  • e = transaction code (numeric part only) of ABAP Editor
  • f = official technical version number for SAP NetWeaver 2004s
  • g = number of digits in all client codes
  • h = number of hex digits in a standard GUID
  • i = number of bits associated with the Intel 8086 chip
  • j = the sum of the digits in the year when SAP announced the autonomous enterprise

The final answer has something to do with Devtoberfest and SAP TechEd.

Rule
Rule

This tutorial is part of our yearly and wonderful Devtoberfest, a month-long event filled with learning, fun, challenges, and prizes – for developers by developers.

Devtoberfest
Devtoberfest

For more info on Devtoberfest, see our Devtoberfest page.

Step 1 Answer for equation puzzle
โ€”

Resources

Discussion

Share feedback on this tutorial or join the conversation in SAP Community.

Submit detailed feedback Discuss in Community
Steps
Step 1 of 1
1. Answer for equation puzzle

Learn more →