Calculator

Études offers comprehensive consulting, management, design, and research solutions. Every architectural endeavor is an opportunity to shape the future.

Leaving an indelible mark on the landscape of tomorrow.

A ramp along a curved wall in the Kiasma Museu, Helsinki, Finland

The revitalized art gallery is set to redefine cultural landscape.

With meticulous attention to detail and a commitment to excellence, we create spaces that inspire, elevate, and enrich the lives of those who inhabit them.

The revitalized Art Gallery is set to redefine the cultural landscape of Toronto, serving as a nexus of artistic expression, community engagement, and architectural marvel. The expansion and renovation project pay homage to the Art Gallery’s rich history while embracing the future, ensuring that the gallery remains a beacon of inspiration.

The revitalized Art Gallery is set to redefine the cultural landscape of Toronto, serving as a nexus of artistic expression, community engagement, and architectural marvel. The expansion and renovation project pay homage to the Art Gallery’s rich history while embracing the future, ensuring that the gallery remains a beacon of inspiration.

White abstract geometric artwork from Dresden, Germany

Guiding your business through the project

Experience the fusion of imagination and expertise with Études—the catalyst for architectural transformations that enrich the world around us.

Meet our team

Our comprehensive suite of professionals caters to a diverse team, ranging from seasoned architects to renowned engineers.

Francesca Piovani

Founder, CEO & Architect

Rhye Moore

Engineering Manager

Helga Steiner

Architect

Ivan Lawrence

Project Manager

We’ve worked with some of the best companies.

FAQs


What is your process working in smaller projects?

Études offers comprehensive consulting, management, design, and research solutions. Our vision is to be at the forefront of architectural innovation, fostering a global community of architects and enthusiasts united by a passion for creating spaces. Every architectural endeavor is an opportunity to shape the future.


Who is behind Études?

Études offers comprehensive consulting, management, design, and research solutions. Our vision is to be at the forefront of architectural innovation, fostering a global community of architects and enthusiasts united by a passion for creating spaces. Every architectural endeavor is an opportunity to shape the future.


I’d like to get to meet fellow architects, how can I do that?

Études offers comprehensive consulting, management, design, and research solutions. Our vision is to be at the forefront of architectural innovation, fostering a global community of architects and enthusiasts united by a passion for creating spaces. Every architectural endeavor is an opportunity to shape the future.


Can I apply to be a part of the team or work as a contractor?

Études offers comprehensive consulting, management, design, and research solutions. Our vision is to be at the forefront of architectural innovation, fostering a global community of architects and enthusiasts united by a passion for creating spaces. Every architectural endeavor is an opportunity to shape the future.

Enhance your architectural journey with the Études Architect app.

  • Collaborate with fellow architects.
  • Showcase your projects.
  • Experience the world of architecture.
White abstract geometric artwork from Dresden, Germany
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>EMI Calculator</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 20px;
        }
        .container {
            max-width: 400px;
            margin: auto;
            padding: 20px;
            border: 1px solid #ddd;
            border-radius: 8px;
        }
        h2 {
            text-align: center;
        }
        .form-group {
            margin-bottom: 15px;
        }
        .form-group label {
            display: block;
            margin-bottom: 5px;
        }
        .form-group input {
            width: 100%;
            padding: 8px;
            box-sizing: border-box;
        }
        .form-group button {
            width: 100%;
            padding: 10px;
            background-color: #28a745;
            color: #fff;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
        }
        .form-group button:hover {
            background-color: #218838;
        }
        .result {
            text-align: center;
            margin-top: 20px;
            font-size: 18px;
        }
    </style>
</head>
<body>

<div class="container">
    <h2>EMI Calculator</h2>
    <div class="form-group">
        <label for="principal">Loan Amount (₹):</label>
        <input type="number" id="principal" placeholder="Enter loan amount" required>
    </div>
    <div class="form-group">
        <label for="interest">Annual Interest Rate (%):</label>
        <input type="number" id="interest" step="0.01" placeholder="Enter annual interest rate" required>
    </div>
    <div class="form-group">
        <label for="tenure">Tenure (Years):</label>
        <input type="number" id="tenure" placeholder="Enter tenure in years" required>
    </div>
    <div class="form-group">
        <button onclick="calculateEMI()">Calculate EMI</button>
    </div>
    <div class="result" id="result"></div>
</div>

<script>
    function calculateEMI() {
        var principal = parseFloat(document.getElementById('principal').value);
        var annualInterestRate = parseFloat(document.getElementById('interest').value);
        var tenureYears = parseFloat(document.getElementById('tenure').value);

        if (isNaN(principal) || isNaN(annualInterestRate) || isNaN(tenureYears) || principal <= 0 || annualInterestRate <= 0 || tenureYears <= 0) {
            document.getElementById('result').innerText = "Please enter valid positive numbers.";
            return;
        }

        var monthlyInterestRate = annualInterestRate / (12 * 100);
        var tenureMonths = tenureYears * 12;

        var emi = (principal * monthlyInterestRate * Math.pow(1 + monthlyInterestRate, tenureMonths)) / 
                  (Math.pow(1 + monthlyInterestRate, tenureMonths) - 1);

        document.getElementById('result').innerText = `The EMI amount is: ₹${emi.toFixed(2)}`;
    }
</script>

</body>
</html>